feat: explicit nullifier type #1550
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: "Validate PR" | |
| on: | |
| # for forks, it'll take the config of the target branch (i.e. `main`) | |
| # reference: <https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request_target> | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| main: | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} # granting access only to read pull requests |