From 568117b4d121ffcac15d6b7817c4796d85bf928c Mon Sep 17 00:00:00 2001 From: Arcticae Date: Tue, 9 Jun 2026 20:27:00 +0200 Subject: [PATCH] Add workflow to add issue to project --- .github/workflows/triage-issue.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/triage-issue.yml diff --git a/.github/workflows/triage-issue.yml b/.github/workflows/triage-issue.yml new file mode 100644 index 0000000..abbe08b --- /dev/null +++ b/.github/workflows/triage-issue.yml @@ -0,0 +1,16 @@ +name: Triage issue + +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/software-mansion/projects/33 + github-token: ${{ secrets.CAIRO_COVERAGE_TRIAGE_GITHUB_TOKEN }}