Skip to content

Commit f159a57

Browse files
author
Jackson Kearl
committed
Add "Author Verified" action
1 parent 3c938c8 commit f159a57

8 files changed

Lines changed: 36 additions & 15 deletions

File tree

.github/workflows/needs-more-info-labeler.yml renamed to .github/disabled_workflows/needs-more-info-labeler.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Needs More Info Labeler
2-
on: repository_dispatch # disable pending resolution of #92958
3-
# issues:
4-
# types: [opened, edited]
2+
on:
3+
issues:
4+
types: [opened, edited]
55

66
jobs:
77
main:
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v15
14+
ref: v16
1515
- name: Run Needs More Info Labeler
1616
uses: ./needs-more-info-labeler
1717
with:
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Author Verified
2+
on:
3+
schedule:
4+
- cron: 20 14 * * * # 4:20pm Zurich
5+
issues:
6+
types: [labeled, closed]
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: 'JacksonKearl/vscode-triage-github-actions'
16+
ref: v16
17+
- name: Run Author Verified
18+
uses: ./author-verified
19+
with:
20+
requestVerificationComment:
21+
pendingReleaseLabel: awaiting-insiders-release
22+
authorVerificationRequestedLabel: author-verification-requested

.github/workflows/commands.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: 'JacksonKearl/vscode-triage-github-actions'
16-
ref: v15
16+
ref: v16
1717
- name: Run Commands
1818
uses: ./commands
1919
with:

.github/workflows/copycat.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: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v15
14+
ref: v16
1515
- name: Run CopyCat (JacksonKearl/testissues)
1616
uses: ./copycat
1717
with:

.github/workflows/locker.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Locker
22
on:
33
schedule:
4-
- cron: 20 23 * * * # Daily at 4:20pm PDT
4+
- cron: 20 23 * * * # 4:20pm Redmond
5+
# on: repository_dispatch
56

67
# Note for locker:
78
# The query for is:unlocked will return issues that have only recently been locked
@@ -17,7 +18,7 @@ jobs:
1718
uses: actions/checkout@v2
1819
with:
1920
repository: 'JacksonKearl/vscode-triage-github-actions'
20-
ref: v15
21+
ref: v16
2122
- name: Run Locker
2223
uses: ./locker
2324
with:
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Needs More Info Closer
22
on:
33
schedule:
4-
- cron: 20 11 * * * # Daily at 4:20am PDT
4+
- cron: 20 11 * * * # 4:20am Redmond
5+
# on: repository_dispatch
56

67
jobs:
78
main:
@@ -11,11 +12,10 @@ jobs:
1112
uses: actions/checkout@v2
1213
with:
1314
repository: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v15
15+
ref: v16
1516
- name: Run Needs More Info Closer
1617
uses: ./needs-more-info-closer
1718
with:
18-
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
1919
label: needs more info
2020
days: 7
2121
comment: "This issue has been closed automatically because it needs more information and has not had recent activity. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"

.github/workflows/new-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v15
14+
ref: v16
1515
- name: Run New Release
1616
uses: ./new-release
1717
with:
18-
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
1918
label: new release
2019
labelColor: "006b75"
2120
labelDescription: Issues found in a recent release of VS Code

.github/workflows/test-plan-item-validator.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v15
14+
ref: v16
1515
- name: Run Test Plan Item Validator
1616
uses: ./test-plan-item-validator
1717
with:
18-
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
1918
label: testplan-item
2019
invalidLabel: invalid-testplan-item
2120
comment: Invalid test plan item. See errors below and the [test plan item spec](https://github.com/microsoft/vscode/wiki/Writing-Test-Plan-Items) for more information. This comment will go away when the issues are resolved.

0 commit comments

Comments
 (0)