We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f0d01f commit 1485824Copy full SHA for 1485824
.github/workflows/pr_closed.yaml
@@ -23,9 +23,10 @@ jobs:
23
run: echo "merged=${{ github.event.pull_request.merged }}" >> $GITHUB_OUTPUT
24
25
deploy-main:
26
- needs: check-merge
27
- if: github.event_name == 'workflow_dispatch' || needs.check-merge.outputs.merged == 'true'
+ deploy-main:
+ runs-on: ubuntu-latest
28
name: Deploy changes to main in dev AWS account blah
29
+ if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == 'true'
30
31
permissions:
32
id-token: write
0 commit comments