From 2c78648977bd50edb3193f8dcfac1e077410741d Mon Sep 17 00:00:00 2001 From: Adarsh Pyarelal Date: Thu, 16 Feb 2023 14:25:11 -0700 Subject: [PATCH] Create integration-issues.yml (#125) 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) --- .github/workflows/integration-issues.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/integration-issues.yml diff --git a/.github/workflows/integration-issues.yml b/.github/workflows/integration-issues.yml new file mode 100644 index 00000000000..4f365276957 --- /dev/null +++ b/.github/workflows/integration-issues.yml @@ -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