Skip to content

Commit ad09ae2

Browse files
authored
Revert "Remove latest-release-monitor-workflow" (microsoft#223543)
Revert "Remove latest-release-monitor-workflow (microsoft#222246)" This reverts commit 16359f4.
1 parent 06643dd commit ad09ae2

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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}}

0 commit comments

Comments
 (0)