Skip to content

Commit

Permalink
CI: Stubs-Dependency only on Push
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed Nov 30, 2023
1 parent 38e8cf8 commit 45bcc7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,31 @@ jobs:
ubuntu:
if: github.event.pull_request.draft == false
name: 🐧 Ubuntu
needs: [stubs]
needs: ${{ github.event_name == 'push' && 'stubs' || '' }}
uses: ./.github/workflows/ubuntu.yml

intel:
if: github.event.pull_request.draft == false
name: 🐧 Intel
needs: [stubs]
needs: ${{ github.event_name == 'push' && 'stubs' || '' }}
uses: ./.github/workflows/intel.yml

hip:
if: github.event.pull_request.draft == false
name: 🐧 HIP
needs: [stubs]
needs: ${{ github.event_name == 'push' && 'stubs' || '' }}
uses: ./.github/workflows/hip.yml

macos:
if: github.event.pull_request.draft == false
name: 🍏 macOS
needs: [stubs]
needs: ${{ github.event_name == 'push' && 'stubs' || '' }}
uses: ./.github/workflows/macos.yml

windows:
if: github.event.pull_request.draft == false
name: 🪟 Windows
needs: [stubs]
needs: ${{ github.event_name == 'push' && 'stubs' || '' }}
uses: ./.github/workflows/windows.yml

codeql:
Expand Down

0 comments on commit 45bcc7b

Please sign in to comment.