We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631b0cb commit 7ed0dd3Copy full SHA for 7ed0dd3
.github/workflows/end-to-end.yml
@@ -58,6 +58,10 @@ jobs:
58
# hacky, maybe can use pre-commit try-repo?
59
# https://stackoverflow.com/questions/30871868/sed-replace-first-occurence-in-place-with-big-files
60
sed -i '' -e "1,/rev:.*/{s/rev:.*/rev: $GITHUB_SHA/;}" .pre-commit-config.yaml
61
+ git config --local user.email "github-actions[bot]@users.noreply.github.com"
62
+ git config --local user.name "github-actions[bot]"
63
+ git add .
64
+ git commit -m 'current hash must be head'
65
66
- name: Run pre-commit
67
run: |
0 commit comments