From bd77ac4c19756c281210c72ad5186e8cc8943807 Mon Sep 17 00:00:00 2001 From: Nikita Wootten Date: Thu, 28 Sep 2023 16:12:49 -0400 Subject: [PATCH] Create issue-triage.yaml (#197) 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 0000000..0dc03fe --- /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 }}