Skip to content

Commit 9ec964f

Browse files
author
Jackson Kearl
committed
Adopt new repository dispatch selectors & latest release monitor action
Bump actions
1 parent 6f97e28 commit 9ec964f

12 files changed

Lines changed: 38 additions & 14 deletions

.github/workflows/author-verified.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Author Verified
22
on:
33
repository_dispatch:
4+
types: [trigger-author-verified]
45
schedule:
56
- cron: 20 14 * * * # 4:20pm Zurich
67
issues:
@@ -16,7 +17,7 @@ jobs:
1617
uses: actions/checkout@v2
1718
with:
1819
repository: 'microsoft/vscode-github-triage-actions'
19-
ref: v18
20+
ref: v19
2021
path: ./actions
2122
- name: Install Actions
2223
if: github.event_name != 'issues' || contains(github.event.issue.labels.*.name, 'author-verification-requested')

.github/workflows/classifier-apply.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'microsoft/vscode-github-triage-actions'
14-
ref: v18
14+
ref: v19
1515
path: ./actions
1616
- name: Install Actions
1717
run: npm install --production --prefix ./actions

.github/workflows/commands.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
repository: 'microsoft/vscode-github-triage-actions'
1515
path: ./actions
16-
ref: v18
16+
ref: v19
1717
- name: Install Actions
1818
run: npm install --production --prefix ./actions
1919
- name: Run Commands

.github/workflows/english-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v2
1414
with:
1515
repository: 'microsoft/vscode-github-triage-actions'
16-
ref: v18
16+
ref: v19
1717
path: ./actions
1818
- name: Install Actions
1919
if: contains(github.event.issue.labels.*.name, '*english-please')

.github/workflows/feature-request.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Feature Request Manager
22
on:
33
repository_dispatch:
4+
types: [trigger-feature-request-manager]
45
issues:
56
types: [milestoned]
67
schedule:
@@ -17,7 +18,7 @@ jobs:
1718
with:
1819
repository: 'microsoft/vscode-github-triage-actions'
1920
path: ./actions
20-
ref: v18
21+
ref: v19
2122
- name: Install Actions
2223
if: github.event_name != 'issues' || contains(github.event.issue.labels.*.name, 'feature-request')
2324
run: npm install --production --prefix ./actions
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Latest Release Monitor
2+
on:
3+
schedule:
4+
- cron: 0/10 * * * *
5+
6+
jobs:
7+
main:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout Actions
11+
uses: actions/checkout@v2
12+
with:
13+
repository: 'microsoft/vscode-github-triage-actions'
14+
path: ./actions
15+
ref: v19
16+
- name: Install Actions
17+
run: npm install --production --prefix ./actions
18+
run: npm install @azure/storage-blob
19+
- name: Run Locker
20+
uses: ./actions/latest-release-monitor

.github/workflows/locker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
schedule:
44
- cron: 20 23 * * * # 4:20pm Redmond
55
repository_dispatch:
6+
types: [trigger-locker]
67

78
jobs:
89
main:
@@ -13,7 +14,7 @@ jobs:
1314
with:
1415
repository: 'microsoft/vscode-github-triage-actions'
1516
path: ./actions
16-
ref: v18
17+
ref: v19
1718
- name: Install Actions
1819
run: npm install --production --prefix ./actions
1920
- name: Run Locker

.github/workflows/needs-more-info-closer.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
schedule:
44
- cron: 20 11 * * * # 4:20am Redmond
55
repository_dispatch:
6+
types: [trigger-needs-more-info]
67

78
jobs:
89
main:
@@ -13,7 +14,7 @@ jobs:
1314
with:
1415
repository: 'microsoft/vscode-github-triage-actions'
1516
path: ./actions
16-
ref: v18
17+
ref: v19
1718
- name: Install Actions
1819
run: npm install --production --prefix ./actions
1920
- name: Run Needs More Info Closer

.github/workflows/on-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'microsoft/vscode-github-triage-actions'
14-
ref: v18
14+
ref: v19
1515
path: ./actions
1616
- name: Install Actions
1717
run: npm install --production --prefix ./actions

.github/workflows/on-open.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'microsoft/vscode-github-triage-actions'
14-
ref: v18
14+
ref: v19
1515
path: ./actions
1616
- name: Install Actions
1717
run: npm install --production --prefix ./actions

0 commit comments

Comments
 (0)