Skip to content

Commit

Permalink
Create integration-issues.yml (#125)
Browse files Browse the repository at this point in the history
Create an integration-issues workflow so that issues labeled with the
`integration` label show up in the [ASKEM Integration
project](https://github.com/orgs/DARPA-ASKEM/projects/5)
  • Loading branch information
Adarsh Pyarelal authored Feb 16, 2023
1 parent a88e5fa commit 2c78648
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/integration-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
# Automatically adds issues to the Integration Github project
# if the issue is tagged with `integration`

name: Add integration tasks to Integration project

on:
issues:
types:
- reopened
- opened

jobs:
add-to-project:
name: Add integration issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@960fbad431afda394cfcf8743445e741acd19e85
with:
project-url: https://github.com/orgs/DARPA-ASKEM/projects/5
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
labeled: integration
label-operator: OR

0 comments on commit 2c78648

Please sign in to comment.