From 617de0e9baa2f4eb786a512e57329fa4253d0a45 Mon Sep 17 00:00:00 2001 From: Max Kadel Date: Mon, 8 Jun 2026 18:09:41 +0200 Subject: [PATCH] Remove actions that either never worked or no longer work - If we decide we want these, we can re-add them one at a time and make sure they're functioning --- .github/workflows/brakeman-audit.yaml | 17 ----------------- .github/workflows/bundler-audit.yaml | 17 ----------------- .github/workflows/deploy.yaml | 23 ----------------------- 3 files changed, 57 deletions(-) delete mode 100644 .github/workflows/brakeman-audit.yaml delete mode 100644 .github/workflows/bundler-audit.yaml delete mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/brakeman-audit.yaml b/.github/workflows/brakeman-audit.yaml deleted file mode 100644 index 203c920..0000000 --- a/.github/workflows/brakeman-audit.yaml +++ /dev/null @@ -1,17 +0,0 @@ -name: 'Brakeman Audit' -run-name: Brakeman Audit of ${{ github.ref_name }} by @${{ github.actor }} -on: - workflow_dispatch: - inputs: - debug_enabled: - type: boolean - description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' - required: false - default: false - -jobs: - brakeman-audit: - uses: notch8/actions/.github/workflows/brakeman-audit.yaml@v1.0.9 - with: - webTarget: hyku-web - tag: latest diff --git a/.github/workflows/bundler-audit.yaml b/.github/workflows/bundler-audit.yaml deleted file mode 100644 index 9c517e4..0000000 --- a/.github/workflows/bundler-audit.yaml +++ /dev/null @@ -1,17 +0,0 @@ -name: 'Bundler Audit' -run-name: Bundler Audit of ${{ github.ref_name }} by @${{ github.actor }} -on: - workflow_dispatch: - inputs: - debug_enabled: - type: boolean - description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' - required: false - default: false - -jobs: - bundler-audit: - uses: notch8/actions/.github/workflows/bundler-audit.yaml@v1.0.9 - with: - webTarget: hyku-web - tag: latest diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml deleted file mode 100644 index 3080d9d..0000000 --- a/.github/workflows/deploy.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: "Deploy" -run-name: Deploy (${{ github.ref_name }} -> ${{ inputs.environment }}) by @${{ github.actor }} -on: - workflow_dispatch: - inputs: - environment: - description: 'Deploy to Environment' - required: true - default: 'staging' - type: choice - options: - - staging - - production - debug_enabled: - type: boolean - description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' - required: false - default: false - -jobs: - deploy: - uses: notch8/actions/.github/workflows/deploy.yaml@v1.0.9 - secrets: inherit