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

Fix issues with cargo-update workflow #1244

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions .github/workflows/cargo-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
continue-on-error: true
run: |
git config user.name 'Phylum Bot'
kylewillmon marked this conversation as resolved.
Show resolved Hide resolved
git config user.email '[email protected]'
git commit -a -m "build: Bump `Cargo.lock` dependencies"
git config user.email '69485888+[email protected]'
git commit -a -m "Bump dependencies"
maxrake marked this conversation as resolved.
Show resolved Hide resolved
git push --force origin HEAD:auto-cargo-update

- name: Create Pull Request
Expand All @@ -37,6 +37,6 @@ jobs:
repo: context.repo.repo,
head: "auto-cargo-update",
base: context.ref,
title: "build: Bump `Cargo.lock` dependencies",
body: "Bump dependencies in `Cargo.lock` for all SemVer-compatible updates.",
title: "Bump dependencies",
body: "Bump dependencies for all SemVer-compatible updates.",
});