chore: bump node (and npm) version in publish jobs to allow for trusted publishing #1240
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 |