forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 4
61 lines (52 loc) · 1.61 KB
/
schedule-nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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:
- ci.yml
- documentation.yml
- js-ci.yml
- operator-ci.yml
- codeql-analysis.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 }} --ref ${{ needs.setup.outputs.latest-release-branch }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}