Skip to content

Commit

Permalink
Setup Git identity as GitHub actions in sync workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kierandrewett committed Dec 27, 2023
1 parent 6d3acfd commit 6e545c5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/sync-dot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
fetch-depth: 0
fetch-depth: 1000

- name: Checkout desktop repo
uses: actions/checkout@v4
Expand All @@ -22,6 +22,9 @@ jobs:
- name: Initialise mach
working-directory: ./dot
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
./scripts/install_mach_commands.py
- name: Bump the revision file
Expand Down

0 comments on commit 6e545c5

Please sign in to comment.