From 67fdd2e56f37033c40265741b0b0919642ebf208 Mon Sep 17 00:00:00 2001 From: Guido X Jansen Date: Mon, 9 Mar 2026 16:44:13 +0100 Subject: [PATCH] ci: auto-add new issues to project board --- .github/workflows/auto-add-to-project.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/auto-add-to-project.yml diff --git a/.github/workflows/auto-add-to-project.yml b/.github/workflows/auto-add-to-project.yml new file mode 100644 index 0000000..76ff233 --- /dev/null +++ b/.github/workflows/auto-add-to-project.yml @@ -0,0 +1,14 @@ +name: Auto-add to project board + +on: + issues: + types: [opened, transferred] + +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/singi-labs/projects/2 + github-token: ${{ secrets.PROJECT_TOKEN }} -- 2.51.2