This repository was archived by the owner on Apr 22, 2025. It is now read-only.
[Bug]: Organ inactivity problem #1335
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 Assign to Project(s) | |
| on: | |
| issues: | |
| types: [opened] | |
| env: | |
| MY_GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
| jobs: | |
| assign_one_project: | |
| runs-on: ubuntu-latest | |
| name: Assign to One Project | |
| steps: | |
| - name: Assign NEW issues and NEW pull requests to project 2 | |
| uses: srggrs/assign-one-project-github-action@1.2.1 | |
| if: github.event.action == 'opened' | |
| with: | |
| project: 'https://github.com/orgs/CMGStudios/projects/2' | |
| column_name: 'Needs triage' | |
| assign_central_project: | |
| runs-on: ubuntu-latest | |
| name: Assign to Central Project | |
| steps: | |
| - name: Assign NEW issues and NEW pull requests to project 10 | |
| uses: srggrs/assign-one-project-github-action@1.2.1 | |
| if: github.event.action == 'opened' | |
| with: | |
| project: 'https://github.com/orgs/CMGStudios/projects/12' | |
| column_name: 'Bug Reports' |