From d9ba2574d70d21b36c8b582d2a3d8aa707074b0b Mon Sep 17 00:00:00 2001 From: Maddie Schipper Date: Wed, 11 Mar 2026 11:45:09 -0600 Subject: [PATCH] Require CI & Go for Release Workflow --- .github/workflows/ci.yml | 1 + .github/workflows/release.yml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3db5e0b..1c29450 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ on: push: branches: ["main"] pull_request: {} + workflow_call: {} concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c99d7d..582469f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,11 +8,13 @@ on: required: true jobs: ci: + uses: ./.github/workflows/ci.yml + go: uses: ./.github/workflows/go.yml release: runs-on: ubuntu-latest if: github.triggering_actor == 'maddiesch' - needs: [ci] + needs: [ci, go] permissions: contents: write steps: