Skip to content

Commit

Permalink
Set up Git user.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrystinne committed Oct 4, 2024
1 parent 7c9ce13 commit cb74be5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build-metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,26 @@ jobs:
cd pr-repo
git checkout -b metadata-update-branch
# Step 8: Commit changes
# Step 8: Set up Git user
- name: Set up Git user
run: |
git config --global user.email "[email protected]"
git config --global user.name "chrystinne"
# Step 9: Commit changes
- name: Commit changes
run: |
cd pr-repo
git add datasets
git commit -m "Add datasets from metadata generator"
# Step 9: Push the new branch
# Step 10: Push the new branch
- name: Push changes
run: |
cd pr-repo
git push origin metadata-update-branch
# Step 10: Create a pull request
# Step 11: Create a pull request
- name: Create pull request
uses: peter-evans/create-pull-request@v5
with:
Expand Down

0 comments on commit cb74be5

Please sign in to comment.