-
Notifications
You must be signed in to change notification settings - Fork 550
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,11 @@ jobs: | |
# If there are no changes, git diff will exit with 0 | ||
if git diff --exit-code gazelle_python.yaml >/dev/null; then exit 0; fi | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GH action" | ||
git config --local user.name "github-actions[bot]" | ||
git add gazelle_python.yaml | ||
git commit -m "chore: update gazelle_python.yaml" | ||
git push -u origin ${{ github.ref_name }} | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} |