We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 398f068 + 3857a44 commit 7b8e8a0Copy full SHA for 7b8e8a0
workflows/sync-branches.md
@@ -23,8 +23,12 @@ steps:
23
- name: Merge default branch into all autoloop program branches
24
env:
25
GITHUB_REPOSITORY: ${{ github.repository }}
26
+ GITHUB_TOKEN: ${{ github.token }}
27
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
28
run: |
29
+ git config user.name "github-actions[bot]"
30
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
31
+ git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
32
node - << 'JSEOF'
33
const { execSync, spawnSync } = require('child_process');
34
0 commit comments