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 11727c8 commit b37651fCopy full SHA for b37651f
.github/workflows/packagist.yml
@@ -60,13 +60,17 @@ jobs:
60
merge-multiple: true
61
62
- run: |
63
- git config user.name "${GITHUB_ACTOR}"
64
- git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
+ if ! git diff --quiet -- lib/; then
+ git config user.name "${GITHUB_ACTOR}"
65
+ git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
66
- git add lib/
67
- git commit -m "ci: update shared libraries [skip ci]"
68
- git show
69
- git push
+ git add lib/
+ git commit -m "ci: update shared libraries [skip ci]"
+ git show
70
+ git push
71
+ else
72
+ echo "No changes in lib/"
73
+ fi
74
75
- name: Update Packagist
76
run: |
0 commit comments