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): GitHub Actions rejects uses: $/.github/workflows/tox.yml because $/.github/workflows/tox.yml is not a valid local reusable-workflow path or repository-qualified workflow reference, so both workflows fail to load.

Suggested fix: Use the valid local reference uses: ./.github/workflows/tox.yml, or provide a repository-qualified reference such as owner/repository/.github/workflows/tox.yml@ref.

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