Skip to content

Commit

Permalink
Update upgrade-dependencies.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume authored Jun 5, 2024
1 parent 7525fe0 commit a6799b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/upgrade-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
run: |
git config user.name github-actions
git config user.email [email protected]
git add ${{ matrix.package }}/requirements
git commit -m "update dependencies for ${{ matrix.package }} (${{ matrix.os }}/py${{ matrix.python-version }})" && push="yes" || push="no"
[[ "$push" == "yes" ]] && git push -f origin ${{ github.ref_name }}:auto-dependency-upgrades-${{ matrix.package }}-${{ matrix.os }}-py${{ matrix.python-version }}
git add ${{ matrix.package }}/requirements && commit="yes" || commit="no"
echo COMMIT $commit
[[ "$commit" == "yes" ]] && git commit -m "update dependencies for ${{ matrix.package }} (${{ matrix.os }}/py${{ matrix.python-version }})" && git push -f origin ${{ github.ref_name }}:auto-dependency-upgrades-${{ matrix.package }}-${{ matrix.os }}-py${{ matrix.python-version }}
pull_request:
name: Merge all branches and open PR
Expand Down

0 comments on commit a6799b5

Please sign in to comment.