Skip to content

Commit

Permalink
home
Browse files Browse the repository at this point in the history
  • Loading branch information
gvolpe committed Jan 23, 2025
1 parent 7d1c7aa commit 0b1730d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/home.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,25 @@ on:
- 'garnix.yaml'

jobs:
checks:
runs-on: ubuntu-latest

outputs:
garnix: ${{ steps.garnix.outputs.status }}

steps:
- name: Garnix check status
id: garnix
uses: ./.github/actions/garnix-check
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

build:
runs-on: ubuntu-latest

# temporarily disabling these jobs
if: false
needs: checks

if: needs.checks.outputs.garnix == 'failure'

strategy:
fail-fast: true
Expand Down

0 comments on commit 0b1730d

Please sign in to comment.