Reset project-tracking PAT by 01/31/2026 #2
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: Add Issue to Project Board | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| # Uncomment the following lines to trigger on more issue events | |
| # - reopened | |
| # - transferred | |
| # - labeled | |
| jobs: | |
| add-issue: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add issue to project board | |
| uses: actions/[email protected] | |
| with: | |
| project-url: https://github.com/orgs/mc2-center/projects/4 | |
| github-token: ${{ secrets.GH_TOKEN }} | |
| # Uncomment the following to only add specific issues | |
| # labeled: bug, good-first-issue | |
| # label-operator: OR # other options: AND, NOT |