forked from microsoft/BCApps
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 1.16 KB
/
SubmitStabilityJobs.yaml
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
name: Submit Stability Job On Official Branches
on:
workflow_dispatch:
schedule:
- cron: "0 04 * * *" # Run at 04:00 UTC every day
permissions: read-all
jobs:
GetBranches:
name: Get Official Branches
if: github.repository_owner == 'microsoft'
runs-on: ubuntu-latest
outputs:
officialBranches: ${{ steps.getOfficialBranches.outputs.branchesJson }}
steps:
- name: Get Official Branches
id: getOfficialBranches
uses: microsoft/BCApps/.github/actions/GetGitBranches@main
with:
include: "['releases/*']"
SubmitStabilityJobs:
name: "[${{ matrix.branch }}] Submit Stability Job"
if: github.repository_owner == 'microsoft'
runs-on: ubuntu-latest
environment: Official-Build
needs: GetBranches
strategy:
matrix:
branch: ${{ fromJson(needs.GetBranches.outputs.officialBranches) }}
fail-fast: false
steps:
- name: Submit Stability Job
env:
GH_TOKEN: ${{ secrets.GHTOKENWORKFLOW }}
uses: microsoft/BCApps/.github/actions/RunAutomation@main
with:
automations: SubmitStabilityJob
targetBranch: ${{ matrix.branch }}