-
-
Notifications
You must be signed in to change notification settings - Fork 4
49 lines (39 loc) · 1.17 KB
/
create-renovate-data.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
name: Create Renovate Data
on:
workflow_dispatch:
schedule:
- cron: "5 4 * * *"
permissions:
contents: read
jobs:
update:
permissions:
contents: write
runs-on: windows-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
- name: Use node 20
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: 20
cache: npm
cache-dependency-path: package-lock.json
- name: Download recent extensions
run: |
.\01-update-extension-cache.ps1
env:
AZURE_DEVOPS_PAT: ${{ secrets.AZURE_DEVOPS_PAT }}
shell: pwsh
- name: Generate azure-pipelines-marketplace-tasks.json
run: |
.\02-generate-renovate-data-marketplace.ps1
shell: pwsh
- name: Generate azure-pipelines-builtin-tasks.json
run: |
.\03-generate-renovate-data-builtin.ps1
env:
AZURE_DEVOPS_PAT: ${{ secrets.AZURE_DEVOPS_PAT }}
AZURE_DEVOPS_ORG: ${{ vars.AZURE_DEVOPS_ORG }}
shell: pwsh