This action checks for issue references in a PR title and body.
prefixes
Required A comma separated list of issue key prefixes.
Example value: ISSUE-
or PLAT-,ENG-,IT-
n/a
```yaml name: PR
on: pullrequest: types: [opened, reopened, edited, readyfor_review]
concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true
jobs: check: name: Check runs-on: ubuntu-latest steps: - uses: ngerakines/pr-has-issues-action with: prefixes: PLAT-,ENG-,IT- ```