Skip to content

Commit c4df96b

Browse files
author
Jackson Kearl
committed
Add release pipeline action & bump actions.
Closes microsoft#97536.
1 parent acd3be0 commit c4df96b

11 files changed

Lines changed: 42 additions & 10 deletions

.github/workflows/author-verified.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v2
1717
with:
1818
repository: 'microsoft/vscode-github-triage-actions'
19-
ref: v17
19+
ref: v18
2020
path: ./actions
2121
- name: Install Actions
2222
if: github.event_name != 'issues' || contains(github.event.issue.labels.*.name, 'author-verification-requested')
@@ -31,6 +31,7 @@ jobs:
3131
if: github.event_name != 'issues' || contains(github.event.issue.labels.*.name, 'author-verification-requested')
3232
uses: ./actions/author-verified
3333
with:
34+
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
3435
requestVerificationComment: "This bug has been fixed in to the latest release of [VS Code Insiders](https://code.visualstudio.com/insiders/)!\n\n@${author}, you can help us out by commenting `/verified` if things are now working as expected.\n\nIf things still don't seem right, please ensure you're on version ${commit} of Insiders (today's or later - you can use `Help: About` in the command pallette to check), and leave a comment letting us know what isn't working as expected.\n\nHappy Coding!"
3536
pendingReleaseLabel: awaiting-insiders-release
3637
authorVerificationRequestedLabel: 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: v17
14+
ref: v18
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: v17
16+
ref: v18
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: v17
16+
ref: v18
1717
path: ./actions
1818
- name: Install Actions
1919
if: contains(github.event.issue.labels.*.name, '*english-please')

.github/workflows/feature-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
repository: 'microsoft/vscode-github-triage-actions'
1919
path: ./actions
20-
ref: v17
20+
ref: v18
2121
- name: Install Actions
2222
if: github.event_name != 'issues' || contains(github.event.issue.labels.*.name, 'feature-request')
2323
run: npm install --production --prefix ./actions

.github/workflows/locker.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: v17
16+
ref: v18
1717
- name: Install Actions
1818
run: npm install --production --prefix ./actions
1919
- name: Run Locker

.github/workflows/needs-more-info-closer.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: v17
16+
ref: v18
1717
- name: Install Actions
1818
run: npm install --production --prefix ./actions
1919
- 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: v17
14+
ref: v18
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: v17
14+
ref: v18
1515
path: ./actions
1616
- name: Install Actions
1717
run: npm install --production --prefix ./actions
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Release Pipeline Labeler"
2+
on:
3+
issues:
4+
types: [closed]
5+
schedule:
6+
- cron: 20 14 * * * # 4:20pm Zurich
7+
8+
jobs:
9+
main:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Actions
13+
uses: actions/checkout@v2
14+
with:
15+
repository: 'microsoft/vscode-github-triage-actions'
16+
ref: v18
17+
path: ./actions
18+
- name: Checkout Repo
19+
if: github.event_name != 'issues'
20+
uses: actions/checkout@v2
21+
with:
22+
path: ./repo
23+
fetch-depth: 0
24+
- name: Install Actions
25+
run: npm install --production --prefix ./actions
26+
- name: "Run Release Pipeline Labeler"
27+
uses: ./actions/release-pipeline
28+
with:
29+
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
30+
notYetReleasedLabel: unreleased
31+
insidersReleasedLabel: insiders-released

0 commit comments

Comments
 (0)