Hard disable workflows that won't work for now

In this EDGI fork, we don't have all the same deployment targets, variables, secrets, etc., so a lot of these workflows will not really work. We might ultimately remove them or we might refactor them to work differently.
This commit is contained in:
Rob Brackett 2025-01-25 13:06:12 -08:00
parent 7cfa415d25
commit 94d682987b
No known key found for this signature in database
GPG key ID: 372A80CE179CAA61
3 changed files with 22 additions and 15 deletions

View file

@ -1,7 +1,9 @@
name: Deploy Backend Main
on:
push:
branches: [main]
# EDGI: DISABLE THIS WORKFLOW FOR NOW. It comes from the original DOI
# implementation, and we don't have the same deployment setup.
branches: [not-a-real-branch]
paths:
- "data/**"
- ".github/workflows/deploy_backend_main.yml"

View file

@ -1,7 +1,9 @@
name: Deploy Frontend Main
on:
push:
branches: [main]
# EDGI: DISABLE THIS WORKFLOW FOR NOW. It comes from the original DOI
# implementation, and we don't have the same deployment setup.
branches: [not-a-real-branch]
paths:
- "client/**/*"
concurrency:

View file

@ -1,18 +1,21 @@
name: Ping Check
on:
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
schedule:
# Run every five minutes
- cron: '*/5 * * * *'
# https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Ping Check'
# FIXME: EDGI: DISABLE THIS WORKFLOW FOR NOW. We may not want to keep it.
push:
branches: [not-a-real-branch]
# # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
# schedule:
# # Run every five minutes
# - cron: '*/5 * * * *'
# # https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/
# workflow_dispatch:
# inputs:
# logLevel:
# description: 'Log level'
# required: true
# default: 'warning'
# tags:
# description: 'Ping Check'
jobs:
check_site_uptime:
runs-on: ubuntu-latest