From 1e091cd6b2381d14fb53eb01ef446535f68a29b7 Mon Sep 17 00:00:00 2001 From: Marek Kaput Date: Wed, 27 Nov 2024 14:46:43 +0100 Subject: [PATCH] Add issue triaging action (#5) --- .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..0087fb7 --- /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@v0.5.0 + with: + project-url: https://github.com/orgs/software-mansion/projects/33 + github-token: ${{ secrets.CAIROLS_TRIAGE_GITHUB_TOKEN }}