-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address PR comments from @robertbrignull
- Loading branch information
1 parent
e145aa4
commit 934fb86
Showing
5 changed files
with
11 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
name: Update dependencies | ||
on: | ||
pull_request: | ||
pull_request_target: | ||
types: [opened, synchronize, reopened, labeled] | ||
|
||
jobs: | ||
update: | ||
|
@@ -32,6 +33,9 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "github-actions[bot]" | ||
git add node_modules | ||
git commit -am "Update checked-in dependencies" | ||
git push | ||
if ! git commit -am "Update checked-in dependencies" ; then | ||
echo "No changes detected, skipping pushing..." | ||
exit 0 | ||
fi | ||
git push origin "$BRANCH" | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.