From 7d25264aeeb95e67bc415d775e78a2d4e33cf1e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20S=C4=85gol?= Date: Tue, 9 Jan 2024 11:18:26 +0100 Subject: [PATCH] [TASK] Update push action configuration --- .github/workflows/push-to-remote.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-to-remote.yml b/.github/workflows/push-to-remote.yml index 7e9e950..943ab02 100644 --- a/.github/workflows/push-to-remote.yml +++ b/.github/workflows/push-to-remote.yml @@ -11,10 +11,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 with: - token: ${{ secrets.MACOPEDIA_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 - name: Push to remote repository run: | + git config user.name "github-actions" + git config user.email "actions@users.noreply.github.com" git remote add macopedia ${{ secrets.MACOPEDIA_REMOTE_REPO_URL }} git push --set-upstream macopedia master