Skip to content

Commit

Permalink
fix: Include script requirements in upgrade.
Browse files Browse the repository at this point in the history
The `upgrade-one-python-dependency` workflow would fail if there were
changes in the scripts directory because they wouldn't get added to the
PR.  Update the list of `add-paths` for the workflow so that it doesn't
fail like this in the future.
  • Loading branch information
feanil committed May 6, 2024
1 parent e6610f5 commit 1d23fc1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/upgrade-one-python-dependency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ jobs:
with:
branch: "${{ github.triggering_actor }}/upgrade-${{ inputs.package }}"
branch-suffix: short-commit-hash
add-paths: requirements
add-paths: |
requirements
scripts/**/requirements
commit-message: |
feat: Upgrade Python dependency ${{ inputs.package }}
Expand Down

0 comments on commit 1d23fc1

Please sign in to comment.