From 05608e75f41fa2ba6f4f17ab3bf4a0da874f1d2f Mon Sep 17 00:00:00 2001 From: maldwg Date: Mon, 13 Apr 2026 18:30:22 +0200 Subject: [PATCH] refactor pipeline again to use the PAT again, otherwise branch protection cant be circumvented --- .github/workflows/publish_dev.yml | 3 +++ .github/workflows/publish_main.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/publish_dev.yml b/.github/workflows/publish_dev.yml index be9490e8..86cb76b6 100644 --- a/.github/workflows/publish_dev.yml +++ b/.github/workflows/publish_dev.yml @@ -20,6 +20,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + token: ${{ secrets.PIPELINE_PAT }} + fetch-depth: 0 - name: Detect source branch and bump version id: bump diff --git a/.github/workflows/publish_main.yml b/.github/workflows/publish_main.yml index e356bdf9..b6be3712 100644 --- a/.github/workflows/publish_main.yml +++ b/.github/workflows/publish_main.yml @@ -20,6 +20,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + token: ${{ secrets.PIPELINE_PAT }} + fetch-depth: 0 - name: Detect source branch and bump version id: bump