Skip to content

Commit

Permalink
Configure git user and commit
Browse files Browse the repository at this point in the history
  • Loading branch information
eliotsykes committed Feb 24, 2024
1 parent baf5152 commit 2ea028e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/update_submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,16 @@ jobs:
- name: Run submodule updates
run: git submodule update --remote --checkout

- name: Commit results
run: git commit -m "Update submodules $TODAY" .
- name: Configure git user
run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com
- name: Commit
run: git commit --all -m "Update submodules $TODAY"

- name: Push branch
run: echo 'TODO'
run: git push

- name: Open pull request
run: echo 'TODO'
Expand Down

0 comments on commit 2ea028e

Please sign in to comment.