From 4e742f809611b42ae4a9abb16211d375d69a0ea2 Mon Sep 17 00:00:00 2001 From: Jur de Vries Date: Thu, 13 Jun 2024 13:10:49 +0200 Subject: [PATCH] Update token used in .pot file update step The commit changes the token utilized in the .pot file update step in the GitHub workflows. Previously, the GIT_PUSH_TOKEN was used, but now it has been updated to use the GITHUB_TOKEN instead. This change is applied to the run command available within the 'Update .pot files' step. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0addb6b..5d1283c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,5 +74,5 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} - name: Update .pot files - run: oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }} + run: oca_export_and_push_pot https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'Gedeelde-Weelde' }}