-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee4b0cc
commit 798863e
Showing
1 changed file
with
7 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
name: Update dependency versions | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
on: | ||
schedule: | ||
# This cron expression runs the job at 00:00 UTC on the first day of every month | ||
|
@@ -38,13 +42,13 @@ jobs: | |
git config --local user.name "github-actions" | ||
git config --local user.email "[email protected]" | ||
git add . | ||
git diff --cached --exit-code || echo "changed" >> $GITHUB_ENV | ||
git diff --cached --exit-code || echo "changed=true" >> $GITHUB_OUTPUT | ||
- name: Create Pull Request | ||
if: env.changed == 'changed' | ||
if: steps.check_changes.outputs.changed == 'true' | ||
run: | | ||
git commit -m "Update dependency versions" | ||
git push origin HEAD:update-dependency-versions | ||
gh pr create --base main --head update-dependency-versions --title "Update dependency versions" --body "This pull request updates the dependency versions in files." | ||
gh pr create --base master --head update-dependency-versions --title "Update dependency versions" --body "This pull request updates the dependency versions in files." | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |