Skip to content

Commit 9b29b74

Browse files
committed
chore: remove CI_DISABLE condition from workflows
Eliminate the global CI kill switch condition from the portal-maintenance and portal-rollback workflows to streamline CI execution.
1 parent e18d933 commit 9b29b74

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

.github/workflows/portal-maintenance.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@ concurrency:
1616
group: ${{ github.workflow }}-${{ github.ref }}
1717
cancel-in-progress: false
1818

19-
# Global CI kill switch: commit `.github/CI_DISABLE` (see `.github/CI_DISABLE.example`).
20-
2119
jobs:
2220
todos:
2321
name: TODOs
24-
if: ${{ hashFiles('.github/CI_DISABLE') == '' }}
2522
runs-on: ubuntu-latest
2623
timeout-minutes: 10
2724
permissions:

.github/workflows/portal-rollback.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,9 @@ env:
2626
REGISTRY: ghcr.io
2727
IMAGE_NAME: ${{ github.repository }}
2828

29-
# Global CI kill switch: commit `.github/CI_DISABLE` (see `.github/CI_DISABLE.example`).
30-
3129
jobs:
3230
rollback:
3331
name: Rollback ${{ github.event.inputs.environment }}
34-
if: ${{ hashFiles('.github/CI_DISABLE') == '' }}
3532
runs-on: ubuntu-latest
3633
timeout-minutes: 15
3734
environment:

0 commit comments

Comments
 (0)