Skip to content

Commit

Permalink
fix: update dependencies pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
progsource committed Nov 16, 2024
1 parent ee4b0cc commit 8761f9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
git config --local user.name "github-actions"
git config --local user.email "github-actions@github.com"
git add .
git diff --cached --exit-code || echo "changed" >> $GITHUB_ENV
git diff --cached --exit-code || echo "changed=true" >> $GITHUB_OUTPUT
- name: Create Pull Request
if: env.changed == 'changed'
if: steps.check_changes.outputs.changed == 'true'
run: |
git commit -m "Update dependency versions"
git push origin HEAD:update-dependency-versions
Expand Down

0 comments on commit 8761f9e

Please sign in to comment.