From 8f0a419e3dea57d6249c8926189c4404f36ca5e0 Mon Sep 17 00:00:00 2001 From: Matthew Mentlak <93769720+mentlak0@users.noreply.github.com> Date: Wed, 12 Jul 2023 10:46:51 +0100 Subject: [PATCH] Actions/add access token (#57) --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c94d199..429d22f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,6 +11,8 @@ jobs: steps: - name: check source code uses: actions/checkout@v3 + with: + token: ${{ secrets.ACCESS_TOKEN }} - name: next release version id: nextversion @@ -23,7 +25,7 @@ jobs: uses: mikefarah/yq@v4.34.1 with: cmd: yq eval '.version = "${{ steps.nextversion.outputs.version }}"' -i charts/tekton-pipeline/Chart.yaml - + - name: Commit Changes uses: stefanzweifel/git-auto-commit-action@v4 with: