-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to bash shell for auto-commits
- Loading branch information
Showing
1 changed file
with
2 additions
and
0 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 |
---|---|---|
|
@@ -181,11 +181,13 @@ jobs: | |
- name: Display environment variable "github.event_name" | ||
run: echo "github.event_name=${{ github.event_name }}" | ||
- name: (GIT) Commit benchmark reports | ||
shell: bash | ||
working-directory: ${{ env.CHART_DIR }} | ||
# Only run when a pull request gets merged or a commit is pushed to the main branch | ||
# git add parameters need to directly or indirectly match paths-ignore parameters above | ||
if: github.event_name == 'push' | ||
run: | | ||
set -x # Show the commands being executed | ||
git config --global user.name '${{ env.CI_COMMIT_AUTHOR }}' | ||
git config --global user.email "[email protected]" | ||
git fetch origin | ||
|