Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency workflow #256

Merged
merged 1 commit into from
Mar 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,23 @@ jobs:
uses: saadmk11/github-actions-version-updater@v0.8.1
with:
token: ${{ secrets.ACCESS_TOKEN }}
committer_username: 'p-galligan'
pull_request_branch: 'dependency-updates'
pull_request_title: 'Dependency Updates'
skip_pull_request: "true"

- name: Create patch
if: always()
run: |
git diff > changes.patch
git apply --allow-empty "changes.patch"

- name: Delete patch file
if: always()
run: rm -f changes.patch

- name: Create Pull Request
if: always()
uses: peter-evans/create-pull-request@v7.0.7
with:
token: ${{ secrets.ACCESS_TOKEN }}
branch: dependency-updates
title: "Dependency Updates"
commit-message: "Scheduled dependency updates"
Loading