Skip to content

Commit

Permalink
Merge branch '181-handle-report-deployment' into new-benchmark-feelpp…
Browse files Browse the repository at this point in the history
…_toolbox_heat
  • Loading branch information
JavierCladellas committed Dec 12, 2024
2 parents de63fb1 + 0e91697 commit cc61ece
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build_wheel:
runs-on: self-ubuntu-22.04
name: Build wheel package
if: contains(github.event.pull_request.labels, 'new-benchmark')
if: contains(github.event.pull_request.labels.*.name, 'new-benchmark')
steps:
- uses: actions/checkout@v4
- name: Build wheel
Expand All @@ -25,7 +25,7 @@ jobs:
path: dist/*.whl

accepted:
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels, 'new-benchmark')
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'new-benchmark')
runs-on: self-ubuntu-22.04
name: Move to production
needs: build_wheel
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
source ./girder_deploy_config.sh
girder-move -oid $staging_folder_id -nid $accepted_folder_id
denied:
if: github.event.pull_request.merged == false && contains(github.event.pull_request.labels, 'new-benchmark')
if: github.event.pull_request.merged == false && contains(github.event.pull_request.labels.*.name, 'new-benchmark')
runs-on: self-ubuntu-22.04
name: Move to denied
needs: build_wheel
Expand Down

0 comments on commit cc61ece

Please sign in to comment.