Running PR verification on tahminator's branch #2694
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
| name: Verify PR | |
| run-name: Running PR verification on ${{ github.actor }}'s branch | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| concurrency: | |
| group: pr-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verifyPr: | |
| name: Run verification checks on the PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| # Removing these checks for now, as we restructure workflows with the change of people. | |
| # - name: Verify PR description is filled out | |
| # uses: ./.github/composite/pr-description-check | |
| # with: | |
| # PR_ID: ${{ github.event.number }} | |
| # - name: Run composite workflow | |
| # uses: ./.github/composite/notion-checks | |
| # id: notion_check | |
| # with: | |
| # PR_ID: ${{ github.event.number }} | |
| # GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
| # GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} |