From 6c433e58e1dafefa7100051b372e4643bdf3a1e0 Mon Sep 17 00:00:00 2001 From: Patryk Ciechanski Date: Thu, 12 Jun 2025 12:58:49 +0200 Subject: [PATCH] fix: Add PAT authentication to Docker workflow for README updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Enables Docker workflow to push README updates after image publish - Uses PAT token instead of GITHUB_TOKEN for repository write permissions - Completes automation flow: PR merge → version bump → Docker build → README update 🤖 Generated with Claude Code --- .github/workflows/build_and_publish_docker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_and_publish_docker.yml b/.github/workflows/build_and_publish_docker.yml index e37dcc7..81d0d16 100644 --- a/.github/workflows/build_and_publish_docker.yml +++ b/.github/workflows/build_and_publish_docker.yml @@ -22,6 +22,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + token: ${{ secrets.PAT }} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3