From 51074af5c78e0175bbda648f5f33d5a573939b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Domeradzki?= Date: Mon, 16 Sep 2024 16:16:38 +0200 Subject: [PATCH] Remove github-push-action --- .github/workflows/release.yml | 8 ++------ .github/workflows/translations.yml | 10 +++------- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f7abdcc8..131831cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,10 +57,6 @@ jobs: if ! git diff --cached --quiet; then git commit -m "Automatic ASF-WebConfigGenerator deployment" - fi - - name: Push changes - uses: ad-m/github-push-action@v0.8.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} + git push + fi diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index 218effdb..8f8366ed 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -39,7 +39,7 @@ jobs: git_user_signingkey: true git_commit_gpgsign: true - - name: Commit the changes + - name: Commit and push the changes shell: sh run: | set -eu @@ -48,10 +48,6 @@ jobs: if ! git diff --cached --quiet; then git commit -m "Automatic translations update" - fi - - name: Push changes - uses: ad-m/github-push-action@v0.8.0 - with: - github_token: ${{ secrets.ARCHIBOT_GITHUB_TOKEN }} - branch: ${{ github.ref }} + git push + fi