Skip to content

Commit

Permalink
Updated scheduled builds to use the CI workflow version from their ow…
Browse files Browse the repository at this point in the history
…n respective branches
  • Loading branch information
rashidnhm committed Aug 14, 2023
1 parent 414b9b6 commit 4025072
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-branch-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ concurrency:

jobs:
build_dev:
uses: ./.github/workflows/build-branch.yml
# Referencing the actions using the remote-call URL as we do not want to use the local copy of the called
# workflow, but instead want to use the version of the workflow on the @dev branch
uses: PennyLaneAI/qml/.github/workflows/build-branch.yml@dev
with:
branch: dev
num_workers: '10'
4 changes: 3 additions & 1 deletion .github/workflows/build-branch-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ concurrency:

jobs:
build_master:
uses: ./.github/workflows/build-branch.yml
# Referencing the actions using the remote-call URL as we do not want to use the local copy of the called
# workflow, but instead want to use the version of the workflow on the @master branch
uses: PennyLaneAI/qml/.github/workflows/build-branch.yml@master
with:
branch: master
num_workers: '10'

0 comments on commit 4025072

Please sign in to comment.