Skip to content

Commit

Permalink
Fix dependencies workflow to run PR creation unconditionally.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTail committed Feb 8, 2025
1 parent e6faaf8 commit 6b9bc9d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,15 @@ jobs:
- name: Branch name
id: create-branch
if: steps.git-state.outputs.changes == 'true'
run: |
BRANCH_NAME="deps-$(date +%Y-%m-%d)"
echo "branch-name=$BRANCH_NAME" >> $GITHUB_OUTPUT
- name: Create a pull request
if: steps.git-state.outputs.changes == 'true'
uses: peter-evans/create-pull-request@v5
with:
base: master
branch: ${{ steps.create-branch.outputs.branch-name }}
commit-message: "Upgrading all dependencies"
title: "Upgrading all dependencies"
body: "This PR contains automated updates generated by the monthly workflow."
delete-branch: false

0 comments on commit 6b9bc9d

Please sign in to comment.