Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/DoctorUpgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Doctor Update

on:
workflow_dispatch: {}

jobs:
upgrade:
name: Doctor Upgrade
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 14

- name: Tools Install
run: |-
npm -g install npm-check-updates
- name: Upgrade Dependencies
run: |-
ncu --upgrade --workspaces --doctor --doctorTest="yarn build" --verbose
env:
CDK_INTEG_ACCOUNT: 123456789012
CDK_INTEG_REGION: us-west-2
2 changes: 1 addition & 1 deletion .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
permissions:
pull-requests: write
steps:
- uses: hmarr/auto-approve-action@v3.1.0
- uses: hmarr/auto-approve-action@v3.2.1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"