Skip to content

Commit

Permalink
Change 'no ci' to 'WIP (no-ci)'
Browse files Browse the repository at this point in the history
  • Loading branch information
pagrubel committed Apr 23, 2024
1 parent b231702 commit 9f4dd6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env: {}

jobs:
integration-test:
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci')) && !(contains(github.event.pull_request.labels.*.name, 'WIP (lint-only)')) }}
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'WIP (no-ci)')) && !(contains(github.event.pull_request.labels.*.name, 'WIP (lint-only)')) }}
name: BEE Integration Test
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylama.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
pylama:
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci')) }}
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'WIP (no-ci)')) }}
name: PyLama Lint
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env: {}

jobs:
integration-test:
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci')) && !(contains(github.event.pull_request.labels.*.name, 'WIP (lint-only)')) }}
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'WIP (no-ci)')) && !(contains(github.event.pull_request.labels.*.name, 'WIP (lint-only)')) }}
name: BEE Unit Tests
env:
# Unit tests are only run with Slurm right now
Expand Down

0 comments on commit 9f4dd6d

Please sign in to comment.