Skip to content

Commit

Permalink
Use local reference to workflow path (#919)
Browse files Browse the repository at this point in the history
This is safer, and doesn't need a version either.
  • Loading branch information
mhucka authored Jan 31, 2025
1 parent 558d4f2 commit ca0fb50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ concurrency:
jobs:
cirq-stable:
name: Using stable Cirq release
uses: ${{github.repository}}/.github/workflows/nightly-pytest.yml@master
uses: ./.github/workflows/nightly-pytest.yml
with:
args: ""

cirq-pre:
name: Using Cirq pre-release
uses: ${{github.repository}}/.github/workflows/nightly-pytest.yml@master
uses: ./.github/workflows/nightly-pytest.yml
with:
args: "--pre"

0 comments on commit ca0fb50

Please sign in to comment.