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