Remove scheduled from individual workflows (#21847)
This commit is contained in:
parent
7336ff07ac
commit
6220a9d71f
9 changed files with 68 additions and 50 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -6,8 +6,6 @@ on:
|
||||||
- main
|
- main
|
||||||
- dependabot/**
|
- dependabot/**
|
||||||
pull_request:
|
pull_request:
|
||||||
schedule:
|
|
||||||
- cron: 0 20,23,2,5 * * *
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
@ -28,7 +26,6 @@ jobs:
|
||||||
|
|
||||||
conditional:
|
conditional:
|
||||||
name: Check conditional workflows and jobs
|
name: Check conditional workflows and jobs
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
ci: ${{ steps.conditional.outputs.ci }}
|
ci: ${{ steps.conditional.outputs.ci }}
|
||||||
|
@ -607,7 +604,7 @@ jobs:
|
||||||
|
|
||||||
check:
|
check:
|
||||||
name: Status Check - Keycloak CI
|
name: Status Check - Keycloak CI
|
||||||
if: always() && ( github.event_name != 'schedule' || github.repository == 'keycloak/keycloak' )
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
- conditional
|
- conditional
|
||||||
- check-set-status
|
- check-set-status
|
||||||
|
|
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
|
@ -7,8 +7,7 @@ on:
|
||||||
- dependabot/**
|
- dependabot/**
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
schedule:
|
workflow_dispatch:
|
||||||
- cron: 0 9 * * 2
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
# Only cancel jobs for PR updates
|
# Only cancel jobs for PR updates
|
||||||
|
@ -23,7 +22,6 @@ jobs:
|
||||||
|
|
||||||
conditional:
|
conditional:
|
||||||
name: Check conditional workflows and jobs
|
name: Check conditional workflows and jobs
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
java: ${{ steps.conditional.outputs.codeql-java }}
|
java: ${{ steps.conditional.outputs.codeql-java }}
|
||||||
|
@ -94,7 +92,7 @@ jobs:
|
||||||
|
|
||||||
check:
|
check:
|
||||||
name: Status Check - CodeQL
|
name: Status Check - CodeQL
|
||||||
if: always() && ( github.event_name != 'schedule' || github.repository == 'keycloak/keycloak' )
|
if: always()
|
||||||
needs: [conditional, java, themes]
|
needs: [conditional, java, themes]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|
5
.github/workflows/documentation.yml
vendored
5
.github/workflows/documentation.yml
vendored
|
@ -6,8 +6,6 @@ on:
|
||||||
- main
|
- main
|
||||||
- dependabot/**
|
- dependabot/**
|
||||||
pull_request:
|
pull_request:
|
||||||
schedule:
|
|
||||||
- cron: 0 5 * * *
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
@ -27,7 +25,6 @@ jobs:
|
||||||
|
|
||||||
conditional:
|
conditional:
|
||||||
name: Check conditional workflows and jobs
|
name: Check conditional workflows and jobs
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
documentation: ${{ steps.conditional.outputs.documentation }}
|
documentation: ${{ steps.conditional.outputs.documentation }}
|
||||||
|
@ -125,7 +122,7 @@ jobs:
|
||||||
|
|
||||||
check:
|
check:
|
||||||
name: Status Check - Keycloak Documentation
|
name: Status Check - Keycloak Documentation
|
||||||
if: always() && ( github.event_name != 'schedule' || github.repository == 'keycloak/keycloak' )
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
- conditional
|
- conditional
|
||||||
- check-set-status
|
- check-set-status
|
||||||
|
|
3
.github/workflows/guides.yml
vendored
3
.github/workflows/guides.yml
vendored
|
@ -25,7 +25,6 @@ jobs:
|
||||||
|
|
||||||
conditional:
|
conditional:
|
||||||
name: Check conditional workflows and jobs
|
name: Check conditional workflows and jobs
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
guides: ${{ steps.conditional.outputs.guides }}
|
guides: ${{ steps.conditional.outputs.guides }}
|
||||||
|
@ -64,7 +63,7 @@ jobs:
|
||||||
|
|
||||||
check:
|
check:
|
||||||
name: Status Check - Keycloak Guides
|
name: Status Check - Keycloak Guides
|
||||||
if: always() && ( github.event_name != 'schedule' || github.repository == 'keycloak/keycloak' )
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
- conditional
|
- conditional
|
||||||
- check-set-status
|
- check-set-status
|
||||||
|
|
7
.github/workflows/js-ci.yml
vendored
7
.github/workflows/js-ci.yml
vendored
|
@ -6,8 +6,6 @@ on:
|
||||||
- main
|
- main
|
||||||
- dependabot/**
|
- dependabot/**
|
||||||
pull_request:
|
pull_request:
|
||||||
schedule:
|
|
||||||
- cron: 0 20,23,2,5 * * *
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
|
@ -22,7 +20,6 @@ defaults:
|
||||||
jobs:
|
jobs:
|
||||||
conditional:
|
conditional:
|
||||||
name: Check conditional workflows and jobs
|
name: Check conditional workflows and jobs
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
js-ci: ${{ steps.conditional.outputs.js }}
|
js-ci: ${{ steps.conditional.outputs.js }}
|
||||||
|
@ -197,7 +194,7 @@ jobs:
|
||||||
browser: [chrome, firefox]
|
browser: [chrome, firefox]
|
||||||
exclude:
|
exclude:
|
||||||
# Only test with Firefox on scheduled runs
|
# Only test with Firefox on scheduled runs
|
||||||
- browser: ${{ github.event_name != 'schedule' && 'firefox' || '' }}
|
- browser: ${{ github.event_name != 'workflow_dispatch' && 'firefox' || '' }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
@ -287,7 +284,7 @@ jobs:
|
||||||
|
|
||||||
check:
|
check:
|
||||||
name: Status Check - Keycloak JavaScript CI
|
name: Status Check - Keycloak JavaScript CI
|
||||||
if: always() && ( github.event_name != 'schedule' || github.repository == 'keycloak/keycloak' )
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
- conditional
|
- conditional
|
||||||
- check-set-status
|
- check-set-status
|
||||||
|
|
5
.github/workflows/operator-ci.yml
vendored
5
.github/workflows/operator-ci.yml
vendored
|
@ -6,8 +6,6 @@ on:
|
||||||
- main
|
- main
|
||||||
- dependabot/**
|
- dependabot/**
|
||||||
pull_request:
|
pull_request:
|
||||||
schedule:
|
|
||||||
- cron: 0 20,23,2,5 * * *
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
@ -29,7 +27,6 @@ jobs:
|
||||||
|
|
||||||
conditional:
|
conditional:
|
||||||
name: Check conditional workflows and jobs
|
name: Check conditional workflows and jobs
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
operator: ${{ steps.conditional.outputs.operator }}
|
operator: ${{ steps.conditional.outputs.operator }}
|
||||||
|
@ -226,7 +223,7 @@ jobs:
|
||||||
|
|
||||||
check:
|
check:
|
||||||
name: Status Check - Keycloak Operator CI
|
name: Status Check - Keycloak Operator CI
|
||||||
if: always() && ( github.event_name != 'schedule' || github.repository == 'keycloak/keycloak' )
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
- conditional
|
- conditional
|
||||||
- check-set-status
|
- check-set-status
|
||||||
|
|
60
.github/workflows/schedule-nightly.yml
vendored
Normal file
60
.github/workflows/schedule-nightly.yml
vendored
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
name: Scheduled nightly workflows
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
setup:
|
||||||
|
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
latest-release-branch: ${{ steps.latest-release.outputs.branch }}
|
||||||
|
steps:
|
||||||
|
- id: latest-release
|
||||||
|
run: |
|
||||||
|
branch="release/$(gh api repos/keycloak/keycloak/branches | jq -r '.[].name' | sort -r | awk -F'/' '/[0-9.]+$/ {print $NF; exit}')"
|
||||||
|
echo "branch=$branch"
|
||||||
|
echo "branch=$branch" >> "$GITHUB_OUTPUT"
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
run-default-branch:
|
||||||
|
name: Run default branch
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: setup
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
workflow:
|
||||||
|
- cy.yml
|
||||||
|
- documentation.yml
|
||||||
|
- js-ci.yml
|
||||||
|
- operator-ci.yml
|
||||||
|
- snyk-analysis.yml
|
||||||
|
- trivy-analysis.yml
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Run workflow
|
||||||
|
run: gh workflow run -R ${{ github.repository }} ${{ matrix.workflow }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
run-latest-release-branch:
|
||||||
|
name: Run latest release branch
|
||||||
|
needs: setup
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
workflow:
|
||||||
|
- snyk-analysis.yml
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- run: echo ${{ needs.setup.outputs.latest-release-branch }}
|
||||||
|
- name: Run workflow
|
||||||
|
run: gh workflow run -R ${{ github.repository }} ${{ matrix.workflow }} -R ${{ needs.setup.outputs.latest-release-branch }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
25
.github/workflows/schedule.yml
vendored
25
.github/workflows/schedule.yml
vendored
|
@ -1,25 +0,0 @@
|
||||||
name: Scheduled workflows
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
run-ci:
|
|
||||||
name: Run CI workflow
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Run Snyk with main branch
|
|
||||||
run: gh workflow run -R keycloak/keycloak snyk-analysis.yml -r main
|
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
- name: Run Snyk with latest release branch
|
|
||||||
run: |
|
|
||||||
patch_release=$(gh api repos/keycloak/keycloak/branches | jq -r '.[].name' | sort -r | awk -F'/' '/[0-9.]+$/ {print $NF; exit}')
|
|
||||||
gh workflow run -R keycloak/keycloak snyk-analysis.yml -r "release/$patch_release"
|
|
||||||
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
2
.github/workflows/trivy-analysis.yml
vendored
2
.github/workflows/trivy-analysis.yml
vendored
|
@ -1,8 +1,6 @@
|
||||||
name: Trivy
|
name: Trivy
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
|
||||||
- cron: 0 6 * * *
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
|
|
Loading…
Reference in a new issue