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 82f8676 commit 760191eCopy full SHA for 760191e
.github/workflows/lint.yml
@@ -33,10 +33,10 @@ jobs:
33
if: steps.lint.outcome == 'failure'
34
run: |
35
yarn nx format:write --all
36
- git config --global user.name "GitHub Actions"
37
- git config --global user.email "actions@github.com"
+ git config --global user.name "${{ github.actor }}"
+ git config --global user.email "${{ github.actor }}@users.noreply.github.com"
38
git add .
39
- git commit -m "Auto-format code" || echo "No changes to commit"
+ git commit -m "auto fmt" || echo "No changes to commit"
40
41
# Get the current branch name
42
BRANCH_NAME=$(git symbolic-ref --short HEAD || git rev-parse --abbrev-ref HEAD)
0 commit comments