fix(cli): deploy and destroy with --all option fails on apps with no top-level stacks
#1453
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". | |
| name: auto-queue | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - reopened | |
| - ready_for_review | |
| - edited | |
| branches: | |
| - main | |
| jobs: | |
| enableAutoQueue: | |
| name: "Set AutoQueue on PR #${{ github.event.number }}" | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| if: (github.event.action == 'opened' || (github.event.action == 'edited' && github.event.changes.base)) | |
| steps: | |
| - uses: peter-evans/enable-pull-request-automerge@v3 | |
| with: | |
| token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
| pull-request-number: ${{ github.event.number }} | |
| merge-method: squash |