author-verified.yml 1.2 KB
Newer Older
J
Jackson Kearl 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
name: Author Verified
on:
  schedule:
    - cron: 20 14 * * * # 4:20pm Zurich
  issues:
    types: [labeled, closed]

jobs:
  main:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Actions
        uses: actions/checkout@v2
        with:
          repository: 'JacksonKearl/vscode-triage-github-actions'
16
          ref: master # update once stabalized
J
Jackson Kearl 已提交
17 18 19 20 21 22
          path: ./actions
      - name: Checkout Repo
        uses: actions/checkout@v2
        with:
          path: ./repo
          fetch-depth: 0
J
Jackson Kearl 已提交
23
      - name: Run Author Verified
J
Jackson Kearl 已提交
24
        uses: ./actions/author-verified
J
Jackson Kearl 已提交
25
        with:
J
Jackson Kearl 已提交
26
          requestVerificationComment: "The commit resolving this issue has been pulled in to the latest release of [VS Code Insiders](https://code.visualstudio.com/insiders/)!\n\n@${author}, you can help us out by confirming things are working as expected in the latest Insiders release. If things look good, please leave a comment with the text `/verified` to let us know. If not, please ensure you're on version ${commit} of Insiders (today's or later), and leave a comment letting us know what isnt working as expected.\n\nHappy Coding!"
J
Jackson Kearl 已提交
27 28
          pendingReleaseLabel: awaiting-insiders-release
          authorVerificationRequestedLabel: author-verification-requested