vscode/.github/workflows/author-verified.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1.7 KiB
YAML
Raw Normal View History

2020-03-29 07:28:07 +00:00
name: Author Verified
on:
issues:
2020-04-08 18:47:36 +00:00
types: [closed]
2020-03-29 07:28:07 +00:00
2020-04-08 18:47:36 +00:00
# also make changes in ./on-label.yml
2020-03-29 07:28:07 +00:00
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
if: contains(github.event.issue.labels.*.name, 'author-verification-requested') && contains(github.event.issue.labels.*.name, 'insiders-released')
uses: actions/checkout@v4
2020-03-29 07:28:07 +00:00
with:
2020-11-24 10:44:18 +00:00
repository: "microsoft/vscode-github-triage-actions"
ref: stable
2020-03-29 16:26:30 +00:00
path: ./actions
- name: Install Actions
if: contains(github.event.issue.labels.*.name, 'author-verification-requested') && contains(github.event.issue.labels.*.name, 'insiders-released')
run: npm install --production --prefix ./actions
2020-03-29 07:28:07 +00:00
- name: Run Author Verified
if: contains(github.event.issue.labels.*.name, 'author-verification-requested') && contains(github.event.issue.labels.*.name, 'insiders-released')
2020-03-29 16:26:30 +00:00
uses: ./actions/author-verified
2020-03-29 07:28:07 +00:00
with:
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
requestVerificationComment: "This bug has been fixed in 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 palette to check), and leave a comment letting us know what isn't working as expected.\n\nHappy Coding!"
releasedLabel: insiders-released
2020-09-16 23:31:32 +00:00
verifiedLabel: verified
2020-03-29 07:28:07 +00:00
authorVerificationRequestedLabel: author-verification-requested