Skip to content

Commit

Permalink
Corrige une typo pour ne pas exécuter la CI programmée sur les forks
Browse files Browse the repository at this point in the history
  • Loading branch information
philippemilink authored and Situphen committed Apr 1, 2023
1 parent a50a281 commit 94e9fb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-22.04

# do not execute scheduled jobs on forks:
if: ${{ github.event.name != 'schedule' || github.repository_owner == 'zestedesavoir' }}
if: ${{ github.event_name != 'schedule' || github.repository_owner == 'zestedesavoir' }}

steps:
- name: Checkout
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-22.04

# do not execute scheduled jobs on forks:
if: ${{ github.event.name != 'schedule' || github.repository_owner == 'zestedesavoir' }}
if: ${{ github.event_name != 'schedule' || github.repository_owner == 'zestedesavoir' }}

steps:
- name: Checkout
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
runs-on: ubuntu-22.04

# do not execute scheduled jobs on forks:
if: ${{ github.event.name != 'schedule' || github.repository_owner == 'zestedesavoir' }}
if: ${{ github.event_name != 'schedule' || github.repository_owner == 'zestedesavoir' }}

steps:
- name: Checkout
Expand Down

0 comments on commit 94e9fb4

Please sign in to comment.