Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Commit 620288e

Browse files
Sigfriedclaude
andcommitted
Disable GitHub Actions workflows except prod deployments
All workflows disabled with `if: false` except: - Backend prod - build and deploy - Frontend prod - build and deploy N3C API access is being removed, so data refresh and most test workflows will no longer function. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 4e39bb5 commit 620288e

14 files changed

Lines changed: 15 additions & 2 deletions

.github/workflows/backend_dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ on:
2121

2222
jobs:
2323
build:
24+
if: false # Disabled - N3C API access removed
2425
runs-on: ubuntu-latest
2526
steps:
2627
- uses: actions/checkout@v2

.github/workflows/frontend_dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
build_and_deploy_job:
17-
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') || github.event_name == 'workflow_dispatch'
17+
if: false # Disabled - dev server taken down
1818
runs-on: ubuntu-latest
1919
name: Build and Deploy
2020
steps:
@@ -54,7 +54,7 @@ jobs:
5454
###### End of Repository/Build Configurations ######
5555

5656
close_pull_request_job:
57-
if: github.event_name == 'pull_request' && github.event.action == 'closed'
57+
if: false # Disabled - dev server taken down
5858
runs-on: ubuntu-latest
5959
name: Close Pull Request
6060
steps:

.github/workflows/kill_idle_cons.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
workflow_dispatch:
99
jobs:
1010
kill-idle-cons:
11+
if: false # Disabled - N3C API access removed
1112
runs-on: ubuntu-latest
1213
steps:
1314
# Set up

.github/workflows/refresh_counts.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
workflow_dispatch:
88
jobs:
99
refresh-counts-tables:
10+
if: false # Disabled - N3C API access removed
1011
# runs-on: BIDS-Premium-Action-Runners
1112
runs-on: ubuntu-latest
1213
# fail-fast: At least shows "Error: Process completed with exit code 143." instead of "exit code 1", for slightly more information about unexpected exits: https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#handling-failures

.github/workflows/refresh_db.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ on:
2424
types: [refresh-db]
2525
jobs:
2626
refresh-db:
27+
if: false # Disabled - N3C API access removed
2728
# runs-on: ubuntu-18.04
2829
runs-on: ubuntu-latest
2930
steps:

.github/workflows/refresh_from_datasets.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
refresh-db:
8+
if: false # Disabled - N3C API access removed
89
runs-on: macos-latest
910
steps:
1011
- name: Checkout repository and submodules

.github/workflows/refresh_voc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
workflow_dispatch:
88
jobs:
99
refresh-vocab-tables:
10+
if: false # Disabled - N3C API access removed
1011
# runs-on: BIDS-Premium-Action-Runners
1112
runs-on: ubuntu-latest
1213
# fail-fast: At least shows "Error: Process completed with exit code 143." instead of "exit code 1", for slightly more information about unexpected exits: https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#handling-failures

.github/workflows/resolve_fetch_failures_0_members.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
types: [resolve_fetch_failures_0_members]
1717
jobs:
1818
resolve-fetch-failures-0-members:
19+
if: false # Disabled - N3C API access removed
1920
runs-on: ubuntu-latest
2021
steps:
2122
- name: Checkout repository and submodules

.github/workflows/resolve_fetch_failures_excess_items.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
types: [resolve-fetch-failures-excess-items]
1010
jobs:
1111
resolve-fetch-failures-excess-items:
12+
if: false # Disabled - N3C API access removed
1213
runs-on: ubuntu-latest
1314
steps:
1415
- name: Checkout repository and submodules

.github/workflows/test_backend_e2e_and_unit_and_qc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515

1616
jobs:
1717
test:
18+
if: false # Disabled - N3C API access removed
1819
strategy:
1920
fail-fast: false
2021
matrix:

0 commit comments

Comments
 (0)