Skip to content

Commit

Permalink
Debugging: skip workflow manually
Browse files Browse the repository at this point in the history
  • Loading branch information
EZoni committed Nov 18, 2024
1 parent c116467 commit e31bcb5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 38 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/macos-push.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/macos-wrun.yml

This file was deleted.

18 changes: 11 additions & 7 deletions .github/workflows/macos-shared.yml → .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
name: 🍏 macOS

on:
workflow_call:
inputs:
skip:
description: Skip the workflow
required: true
type: boolean
push:
branches:
- "development"
pull_request:

concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-macos
cancel-in-progress: true

jobs:
build_appleclang:
name: AppleClang
runs-on: macos-latest
if: ${{ inputs.skip == false }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: TRUE
Expand Down

0 comments on commit e31bcb5

Please sign in to comment.