From 8204cf4a1ac75aeba6a0e97812a46814eceb7a94 Mon Sep 17 00:00:00 2001 From: lukasWuttke <54042461+LukasWodka@users.noreply.github.com> Date: Wed, 22 Apr 2026 09:27:19 +0200 Subject: [PATCH 1/2] Add auto-add to engineer kanban workflow --- .github/workflows/add-to-kanban.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/add-to-kanban.yml diff --git a/.github/workflows/add-to-kanban.yml b/.github/workflows/add-to-kanban.yml new file mode 100644 index 0000000..4fc21fb --- /dev/null +++ b/.github/workflows/add-to-kanban.yml @@ -0,0 +1,16 @@ +name: Add to engineer kanban + +on: + issues: + types: [opened, reopened, transferred] + pull_request: + types: [opened, reopened, ready_for_review] + +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1 + with: + project-url: https://github.com/orgs/tracebloc/projects/2 + github-token: ${{ secrets.PROJECTS_KANBAN_TOKEN }} From d14dade574409f1cd94890fed0be9c689dfd6204 Mon Sep 17 00:00:00 2001 From: lukasWuttke <54042461+LukasWodka@users.noreply.github.com> Date: Fri, 24 Apr 2026 17:36:04 +0200 Subject: [PATCH 2/2] fix(ci): pin actions/add-to-project to v1.0.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @v1 is not a valid tag — action publishes full semver only. Pin to v1.0.2. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/add-to-kanban.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-to-kanban.yml b/.github/workflows/add-to-kanban.yml index 4fc21fb..45aa70a 100644 --- a/.github/workflows/add-to-kanban.yml +++ b/.github/workflows/add-to-kanban.yml @@ -10,7 +10,7 @@ jobs: add-to-project: runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@v1 + - uses: actions/add-to-project@v1.0.2 with: project-url: https://github.com/orgs/tracebloc/projects/2 github-token: ${{ secrets.PROJECTS_KANBAN_TOKEN }}