-
Notifications
You must be signed in to change notification settings - Fork 369
63 lines (55 loc) · 1.78 KB
/
UpdateALGoProjects.yaml
File metadata and controls
63 lines (55 loc) · 1.78 KB
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
62
63
name: Update AL-Go Projects
on:
workflow_dispatch:
schedule:
- cron: '55 5 * * *' # Daily at 05:55 UTC
defaults:
run:
shell: powershell
permissions: read-all
jobs:
GetBranches:
name: Get Official Branches
if: github.repository_owner == 'microsoft'
runs-on: ubuntu-latest
outputs:
updateBranches: ${{ steps.getOfficialBranches.outputs.branchesJson }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2
with:
egress-policy: audit
- name: Get Official Branches
id: getOfficialBranches
uses: microsoft/BCApps/.github/actions/GetGitBranches@main
with:
include: "['main', 'releases/*']"
UpdateALGoProjects:
name: "[${{ matrix.branch }}] Update AL-Go projects"
if: github.repository_owner == 'microsoft'
permissions:
contents: write
environment: Official-Build
runs-on: windows-latest
needs: GetBranches
strategy:
matrix:
branch: ${{ fromJson(needs.GetBranches.outputs.updateBranches) }}
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ matrix.branch }}
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Update AL-Go Project Dependencies
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
uses: microsoft/BCApps/.github/actions/RunAutomation@main
with:
automations: UpdateUseProjectDependencies
targetBranch: ${{ matrix.branch }}