From 5f5745dc65748a1095b6d1e9385fa00e9caae27c Mon Sep 17 00:00:00 2001 From: Julien Pivotto <291750+roidelapluie@users.noreply.github.com> Date: Thu, 28 May 2026 11:38:35 +0200 Subject: [PATCH] ci: use github.token instead of PROMBOT_GITHUB_TOKEN Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com> --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8a37ed..0453647 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,8 @@ jobs: publish_release: name: Publish release artefacts runs-on: ubuntu-latest + permissions: + contents: write needs: [test_go, build] if: | (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')) @@ -63,4 +65,4 @@ jobs: with: docker_hub_password: ${{ secrets.docker_hub_password }} quay_io_password: ${{ secrets.quay_io_password }} - github_token: ${{ secrets.PROMBOT_GITHUB_TOKEN }} + github_token: ${{ github.token }}