Skip to content

Commit

Permalink
Workflow syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
julialawrence committed Nov 21, 2024
1 parent ec9d6e9 commit e8dad51
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/management-account-entraid-scim-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ on:
- '.github/workflows/management-account-entraid-scim-plan.yml'
- '.github/workflows/management-account-entraid-scim-apply.yml'
workflow_dispatch:

schedule:
- cron: "0 */2 * * *" # Every 2 hours

concurrency:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
jobs:
plan:
runs-on: ubuntu-latest
if: |
github.event_name != 'schedule' || github.ref == 'refs/heads/main' # Run on cron only for main branch
if:
github.event_name != 'schedule' || github.ref == 'refs/heads/main'
permissions:
id-token: write
contents: read
Expand Down

0 comments on commit e8dad51

Please sign in to comment.