From 87215a05b708ac827e731440754f892d8171b226 Mon Sep 17 00:00:00 2001 From: tomstark99 Date: Tue, 16 Jan 2024 14:36:42 +0000 Subject: [PATCH] Added github token --- .github/workflows/merge_forward.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/merge_forward.yml b/.github/workflows/merge_forward.yml index 6844860..534863c 100644 --- a/.github/workflows/merge_forward.yml +++ b/.github/workflows/merge_forward.yml @@ -18,10 +18,12 @@ jobs: - name: Setup Git run: | - git config --global user.name 'merge-forward[bot]' - git config --global user.email 'merge-forward[bot]@users.noreply.github.com' + git config --global user.name github-actions[bot] + git config --global user.email github-actions[bot]@users.noreply.github.com - name: Create PR + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} run: | git checkout -b merge-forward-postgres origin/release/1.6 git push origin merge-forward-postgres @@ -39,10 +41,12 @@ jobs: - name: Setup Git run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' + git config --global user.name github-actions[bot] + git config --global user.email github-actions[bot]@users.noreply.github.com - name: Create PR + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} run: | git checkout -b merge-forward-firewall origin/release/1.6 git push origin merge-forward-firewall