Skip to content

Commit

Permalink
Set a Git identity
Browse files Browse the repository at this point in the history
  • Loading branch information
akirak committed Sep 24, 2023
1 parent 6885587 commit a5ab48a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/merge-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ jobs:
diagnostic-endpoint: ''

- name: Merge upstream recipes
run: nix run .#update-recipes --no-write-lock-file -- upstream/master
run: |
# Set some identity. Actually it will be overridden later, so it's
# unused
git config --add user.name 'github-actions[bot]'
git config --add user.email '6270544+github-actions[bot]@users.noreply.github.com'
nix run .#update-recipes --no-write-lock-file -- upstream/master
- name: Create a pull request
uses: peter-evans/create-pull-request@v5
Expand Down

0 comments on commit a5ab48a

Please sign in to comment.