Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nmattia committed Dec 17, 2024
1 parent 16c7cdb commit c613714
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,40 @@ jobs:
}}
steps:
- name: check1
if: >
${{
(github.ref_protected && github.repository == 'dfinity/ic') ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'CI_MACOS_INTEL'))
}}
run: echo hello
- name: check2
if: >
${{
(github.ref_protected && github.repository == 'dfinity/ic') ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'CI_MACOS_INTEL'))
}}
run: echo hello
- name: check3
if: >
${{
(github.ref_protected && github.repository == 'dfinity/ic')
}}
run: echo hello
- name: check4
if: >
${{ (github.ref_protected && github.repository == 'dfinity/ic') }}
run: echo hello
- name: check5
if: |
${{ (github.ref_protected && github.repository == 'dfinity/ic') }}
run: echo hello
- name: check5
if: ${{ (github.ref_protected && github.repository == 'dfinity/ic') }}
run: echo hello

- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit c613714

Please sign in to comment.