Unit Testing #196233
This file contains 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
# note: this GHA applies only to Github Projects V2 (Beta) | |
# docs: https://github.com/actions/add-to-project | |
# Update 4/6/2023: Project Workflows now support "auto-add to project" through web interface. | |
# See example here: https://github.com/orgs/department-of-veterans-affairs/projects/623/workflows/8064572 | |
name: Add Issues to Github Projects (V2) | |
on: | |
issues: | |
types: | |
- opened | |
- labeled | |
jobs: | |
cop: | |
name: Add CoP Issues to Project Board | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/add-to-project@main | |
with: | |
project-url: https://github.com/orgs/department-of-veterans-affairs/projects/815 | |
github-token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
labeled: platform-cop-backend, platform-cop-frontend, platform-cop-devops | |
label-operator: OR | |
platform-support: | |
name: Add Platform Support Issues to Project Board | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/add-to-project@main | |
with: | |
project-url: https://github.com/orgs/department-of-veterans-affairs/projects/813 | |
github-token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
labeled: platform-tech-team-support |