Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:

tox:
if: ${{ github.event_name == 'pull_request' }}
uses: ./.github/workflows/tox.yml
uses: $/.github/workflows/tox.yml

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (bug_risk): The reusable workflow reference uses: $/.github/workflows/tox.yml is not a valid GitHub Actions repository or local-workflow reference, so the workflows fail validation and the tox jobs never run. In publish.yml, this also prevents the dependent PyPI upload job from running.

Suggested fix: Use the local reusable-workflow syntax uses: ./.github/workflows/tox.yml in both files, or use a fully qualified {owner}/{repo}/.github/workflows/tox.yml@{ref} reference.

with:
checkout-ref: ${{ github.ref }}
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
tox:
uses: ./.github/workflows/tox.yml
uses: $/.github/workflows/tox.yml
with:
checkout-ref: ${{ github.event.release.tag_name }}

Expand Down