File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Latest Release Monitor
2
+
3
+ permissions :
4
+ id-token : write
5
+ contents : read
6
+
7
+ on :
8
+ schedule :
9
+ - cron : 0/5 * * * *
10
+ repository_dispatch :
11
+ types : [trigger-latest-release-monitor]
12
+
13
+ jobs :
14
+ main :
15
+ runs-on : ubuntu-latest
16
+ environment : main
17
+ steps :
18
+ - uses : azure/login@v2
19
+ with :
20
+ client-id : ${{ vars.AZURE_CLIENT_ID }}
21
+ tenant-id : ${{ vars.AZURE_TENANT_ID }}
22
+ allow-no-subscriptions : true
23
+ - name : Checkout Actions
24
+ uses : actions/checkout@v4
25
+ with :
26
+ repository : " microsoft/vscode-github-triage-actions"
27
+ path : ./actions
28
+ ref : stable
29
+ - name : Install Actions
30
+ run : npm install --production --prefix ./actions
31
+ - name : Install Storage Module
32
+ run :
npm install @azure/[email protected]
33
+ - name : Run Latest Release Monitor
34
+ uses : ./actions/latest-release-monitor
35
+ with :
36
+ token : ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
You can’t perform that action at this time.
0 commit comments