From 7552f7a5de7eb5f2654925aae47116dc882c5665 Mon Sep 17 00:00:00 2001 From: Josh Rowley Date: Mon, 18 Sep 2023 14:26:35 -0400 Subject: [PATCH] Add new issues and pull requests to the Projects FR board --- .../add-new-issue-to-triage-project.yml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/add-new-issue-to-triage-project.yml diff --git a/.github/workflows/add-new-issue-to-triage-project.yml b/.github/workflows/add-new-issue-to-triage-project.yml new file mode 100644 index 0000000..dbb94f1 --- /dev/null +++ b/.github/workflows/add-new-issue-to-triage-project.yml @@ -0,0 +1,21 @@ +name: Add new Issues with `bug` label to `Projects Shared FR Triage` +on: + issues: + types: + - opened + pull_request: + types: + - opened + +permissions: + contents: read + +jobs: + add-to-triage-project: + name: Add issue or pull request to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@d8e41a41861baa4c7af88a39f7692681e89f6668 + with: + project-url: https://github.com/orgs/github/projects/4017 + github-token: ${{ secrets.PROJECTS_FR_PROJECT_UPDATE_TOKEN }} \ No newline at end of file