Skip to content

Commit

Permalink
Add github user registration to auto commit in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
thogarty committed Nov 27, 2024
1 parent 71c7c46 commit e175862
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/sync_data_schema_updates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.13'

- name: Set git user and generate files
run: |
git config --global user.name 'equinix-labs@auto-commit-workflow'
git config --global user.email '[email protected]'
git config advice.addIgnoredFile false
git fetch
echo -e "\nThis is executing for branch: ${GITHUB_REF##*/}."
git checkout ${GITHUB_REF##*/}
- name: Update Data Loaders
run: python3 ./scripts/update_data_loader.py
Expand Down

0 comments on commit e175862

Please sign in to comment.