We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f99066 + c8ee436 commit b26fbfcCopy full SHA for b26fbfc
.github/workflows/dependencies.yml
@@ -38,6 +38,23 @@ jobs:
38
uses: saadmk11/github-actions-version-updater@v0.8.1
39
with:
40
token: ${{ secrets.ACCESS_TOKEN }}
41
- committer_username: 'p-galligan'
42
- pull_request_branch: 'dependency-updates'
43
- pull_request_title: 'Dependency Updates'
+ skip_pull_request: "true"
+
+ - name: Create patch
44
+ if: always()
45
+ run: |
46
+ git diff > changes.patch
47
+ git apply --allow-empty "changes.patch"
48
49
+ - name: Delete patch file
50
51
+ run: rm -f changes.patch
52
53
+ - name: Create Pull Request
54
55
+ uses: peter-evans/create-pull-request@v7.0.7
56
+ with:
57
+ token: ${{ secrets.ACCESS_TOKEN }}
58
+ branch: dependency-updates
59
+ title: "Dependency Updates"
60
+ commit-message: "Scheduled dependency updates"
0 commit comments