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 1646331 commit a608262Copy full SHA for a608262
.github/workflows/upgrade-dependencies.yml
@@ -3,9 +3,6 @@ name: upgrade dependencies
3
4
on:
5
workflow_dispatch: # Allow running on-demand
6
- schedule:
7
- # Runs every Monday at 8:00 UTC (4:00 Eastern)
8
- - cron: "0 8 * * 1"
9
10
jobs:
11
upgrade:
@@ -71,6 +68,8 @@ jobs:
71
68
git checkout -b auto-dependency-upgrades
72
69
git branch -r | grep auto-dependency-upgrades- | xargs -I {} git merge {}
73
70
git rebase ${GITHUB_REF##*/}
+ git reset $(git merge-base ${GITHUB_REF##*/} HEAD)
+ git commit -a -m "auto dependency upgrades"
74
git push -f origin auto-dependency-upgrades
75
git branch -r | grep auto-dependency-upgrades- | cut -d/ -f2 | xargs -I {} git push origin :{}
76
- name: Open pull request if needed
0 commit comments