File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,19 +17,13 @@ jobs:
1717 - name : Update flake.lock
1818 run : nix flake update
1919
20- - name : Commit changes
21- run : |
22-
23- - name : Configure Git
24- run : |
25- git config user.name "github-actions[bot]"
26- git config user.email "github-actions[bot]@users.noreply.github.com"
27-
28- - name : Push changes
20+ - name : Commit and push changes
2921 env :
3022 GH_TOKEN : ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
3123 run : |
32- git diff --quiet flake.lock && exit 0`
24+ git diff --quiet flake.lock && exit 0
25+ git config user.name "github-actions[bot]"
26+ git config user.email "github-actions[bot]@users.noreply.github.com"
3327 git add .
3428 git commit -m "chore: update flake.lock (#228)"
3529 git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/${{ github.repository }}.git
You can’t perform that action at this time.
0 commit comments