From b17dae2b650f5076339f8f5e120bbb76c6178012 Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Mon, 20 Apr 2026 14:11:20 +0200 Subject: [PATCH 1/2] ci: replace t-tooling label with t-dx and add issues to DX project Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/issue_labeling.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue_labeling.yaml b/.github/workflows/issue_labeling.yaml index 0054fd80d..895145f5b 100644 --- a/.github/workflows/issue_labeling.yaml +++ b/.github/workflows/issue_labeling.yaml @@ -13,7 +13,7 @@ jobs: issues: write steps: - # Add the "t-tooling" label to all new issues + # Add the "t-dx" label to all new issues - uses: actions/github-script@v8 with: script: | @@ -21,5 +21,14 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ["t-tooling"] + labels: ["t-dx"] }) + + add_to_project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1 + with: + project-url: https://github.com/orgs/apify/projects/72 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} From 721e85a564baf1de446c11f718f4282dc985ea51 Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Mon, 20 Apr 2026 14:15:09 +0200 Subject: [PATCH 2/2] ci: drop add-to-project job, handle via project auto-add workflow Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/issue_labeling.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/issue_labeling.yaml b/.github/workflows/issue_labeling.yaml index 895145f5b..54e44b001 100644 --- a/.github/workflows/issue_labeling.yaml +++ b/.github/workflows/issue_labeling.yaml @@ -23,12 +23,3 @@ jobs: repo: context.repo.repo, labels: ["t-dx"] }) - - add_to_project: - name: Add issue to project - runs-on: ubuntu-latest - steps: - - uses: actions/add-to-project@v1 - with: - project-url: https://github.com/orgs/apify/projects/72 - github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}