From 185256606d433ff67f115f36e9738de23038b0dc Mon Sep 17 00:00:00 2001 From: Justin Hutchings Date: Mon, 7 Jul 2025 11:26:32 -0700 Subject: [PATCH] Add triage workflow --- .github/workflows/triage.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/triage.yml diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml new file mode 100644 index 0000000000..50a9e00ade --- /dev/null +++ b/.github/workflows/triage.yml @@ -0,0 +1,16 @@ +name: Add bugs to triage board + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/cloudflare/projects/47 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}