Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sc-66351 auto onboard large runenrs #774

Merged
merged 21 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
437d81b
Update determine runner workflow to use large runners if the branch n…
rashidnhm Jun 18, 2024
bdd1a37
Auto update version from '0.37.0-dev42' to '0.37.0-dev43'
ringo-but-quantum Jun 18, 2024
e94e0b2
Change parameter to use head_ref
rashidnhm Jun 18, 2024
97e6268
Merge branch 'sc-66351-auto-onboard-large-runenrs' of github.com:Penn…
rashidnhm Jun 18, 2024
cf2b19e
Use head.ref from pr context
rashidnhm Jun 18, 2024
8027b63
Don't use branch name for large runner if forked PR
rashidnhm Jun 18, 2024
d817eed
Fix regex
rashidnhm Jun 19, 2024
ccabde6
Auto update version from '0.37.0-dev43' to '0.37.0-dev44'
ringo-but-quantum Jun 19, 2024
544a07f
Trigger CI
rashidnhm Jun 19, 2024
4525577
Merge branch 'sc-66351-auto-onboard-large-runenrs' of github.com:Penn…
rashidnhm Jun 19, 2024
48e2df1
Trigger CI
rashidnhm Jun 19, 2024
81d5c26
Merge branch 'master' into sc-66351-auto-onboard-large-runenrs
rashidnhm Jun 19, 2024
1672f4c
Update changelog
rashidnhm Jun 19, 2024
e348467
Merge branch 'master' of github.com:PennyLaneAI/pennylane-lightning i…
rashidnhm Jun 21, 2024
2d967a8
Fix issue with regex check and added additional echo statements to sh…
rashidnhm Jun 21, 2024
b97e69f
Auto update version from '0.37.0-dev45' to '0.37.0-dev46'
ringo-but-quantum Jun 21, 2024
51638cb
Fix bug in large runner determination workflow
vincentmr Jun 20, 2024
04155bd
Merge branch 'sc-66351-auto-onboard-large-runenrs' of github.com:Penn…
rashidnhm Jun 21, 2024
76acd34
Update changelog
rashidnhm Jun 21, 2024
555ffa9
Address PR comments
rashidnhm Jun 21, 2024
0efacfe
Update .github/CHANGELOG.md
rashidnhm Jun 21, 2024
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
5 changes: 4 additions & 1 deletion .github/workflows/determine-workflow-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
RC_BRANCH_FORMAT_REGEX: v[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]?
REPO_FULL_NAME: PennyLaneAI/pennylane-lightning
run: |
if [[ '${{ contains(github.event.pull_request.labels.*.name, 'urgent') }}' == 'true' || ('${{ github.event.pull_request.head.repo.full_name }}' == "$REPO_FULL_NAME" && "${{ github.event.pull_request.head.ref }}" =~ "$RC_BRANCH_FORMAT_REGEX") ]]; then
if [[ '${{ contains(github.event.pull_request.labels.*.name, 'urgent') }}' == 'true' || ('${{ github.event.pull_request.head.repo.full_name }}' == "$REPO_FULL_NAME" && "${{ github.event.pull_request.head.ref }}" =~ $RC_BRANCH_FORMAT_REGEX) ]]; then
echo "This job requires usage of the large runner group '$LARGE_RUNNER_GROUP_NAME'";
echo "runner_group=$LARGE_RUNNER_GROUP_NAME" >> $GITHUB_OUTPUT
else
echo "This job does not require usage of large runners ...";
fi
2 changes: 1 addition & 1 deletion pennylane_lightning/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.37.0-dev45"
__version__ = "0.37.0-dev46"
Loading