Add use-pr-linker workflow to auto-link PRs to issues #16
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: Auto link PR to Issues | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, closed, reopened] | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: read | |
| jobs: | |
| call-linker: | |
| uses: mosip/kattu/.github/workflows/link-pr-to-issue.yml@develop | |
| secrets: | |
| ACTION_PAT: ${{ secrets.ACTION_PAT }} |