From 2f38f8e6999aa77103a61cc27bcc21bdc2fb8102 Mon Sep 17 00:00:00 2001 From: Nikita Wootten Date: Thu, 28 Sep 2023 15:31:45 -0400 Subject: [PATCH] Create issue-triage.yaml Following usnistgov/OSCAL#1936, add workflow to add new issues to the board automatically. --- .github/workflows/issue-triage.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/issue-triage.yaml diff --git a/.github/workflows/issue-triage.yaml b/.github/workflows/issue-triage.yaml new file mode 100644 index 00000000..0dc03fe8 --- /dev/null +++ b/.github/workflows/issue-triage.yaml @@ -0,0 +1,18 @@ +name: Triage Board Management + +on: + issues: + types: + - opened + - reopened + - transferred + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-20.04 + steps: + - uses: actions/add-to-project@31b3f3ccdc584546fc445612dec3f38ff5edb41c + with: + project-url: https://github.com/orgs/usnistgov/projects/25 + github-token: ${{ secrets.COMMIT_TOKEN }}