Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
2 changes: 2 additions & 0 deletions .github/workflows/cpp_extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,14 @@ jobs:
check-enabled:
# Check whether the CI builds in this workflow need to be run
needs: check-labels
if: ${{ !cancelled() }}
Comment thread
raulcd marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest
outputs:
is_enabled: ${{ steps.set_enabled.outputs.is_enabled }}
steps:
- id: set_enabled
if: >-
github.ref_type == 'tag' ||
(github.event_name == 'schedule' && github.repository == 'apache/arrow') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra: C++')
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cuda_extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,14 @@ jobs:
check-enabled:
# Check whether the CI builds in this workflow need to be run
needs: check-labels
if: ${{ !cancelled() }}
Comment thread
raulcd marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest
outputs:
is_enabled: ${{ steps.set_enabled.outputs.is_enabled }}
steps:
- id: set_enabled
if: >-
github.ref_type == 'tag' ||
(github.event_name == 'schedule' && github.repository == 'apache/arrow') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra: CUDA')
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/package_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,14 @@ jobs:
check-enabled:
# Check whether the CI builds in this workflow need to be run
needs: check-labels
if: ${{ !cancelled() }}
Comment thread
raulcd marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest
outputs:
is_enabled: ${{ steps.set_enabled.outputs.is_enabled }}
steps:
- id: set_enabled
if: >-
github.ref_type == 'tag' ||
(github.event_name == 'schedule' && github.repository == 'apache/arrow') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra: Package: Linux')
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/r_extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,14 @@ jobs:
check-enabled:
# Check whether the CI builds in this workflow need to be run
needs: check-labels
if: ${{ !cancelled() }}
Comment thread
raulcd marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest
outputs:
is_enabled: ${{ steps.set_enabled.outputs.is_enabled }}
steps:
- id: set_enabled
if: >-
github.ref_type == 'tag' ||
Comment thread
raulcd marked this conversation as resolved.
(github.event_name == 'schedule' && github.repository == 'apache/arrow') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra') ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'), 'CI: Extra: R')
Expand Down
Loading