From 9d732f455928f3876b552b98132c26b5f1e2e7ef Mon Sep 17 00:00:00 2001 From: Vincent Michaud-Rioux Date: Tue, 3 Sep 2024 13:52:15 +0000 Subject: [PATCH] Update regex. --- .github/workflows/determine-workflow-runner.yml | 2 +- pennylane_lightning/core/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/determine-workflow-runner.yml b/.github/workflows/determine-workflow-runner.yml index 007b3a5d53..ef99e3b2f3 100644 --- a/.github/workflows/determine-workflow-runner.yml +++ b/.github/workflows/determine-workflow-runner.yml @@ -38,7 +38,7 @@ jobs: id: runner_group env: # We are not able to use \d to check numeric values as bash does not allow them (not POSIX compliant) - RC_BRANCH_FORMAT_REGEX: v[0-9]+\.[0-9]+\.[0-9]+-rc? + 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 diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index 3009ec1d3b..196d401ed9 100644 --- a/pennylane_lightning/core/_version.py +++ b/pennylane_lightning/core/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.38.0-rc7" +__version__ = "0.38.0-rc8"