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 0af0ac0 commit 8d8e337Copy full SHA for 8d8e337
.github/workflows/consistent-desc.yaml
@@ -41,8 +41,10 @@ jobs:
41
env:
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43
run: |
44
- git config --global user.name 'github-actions[bot]'
45
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
46
- git add package.json
47
- git commit -m 'End-User Meta updated'
48
- git push
+ if [ -f "package.json" ]; then
+ git config --global user.name 'github-actions[bot]'
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
+ git add package.json
+ git commit -m 'End-User Meta updated'
49
+ git push
50
+ fi
0 commit comments