vscode/.github/workflows/on-open.yml

39 lines
1 KiB
YAML
Raw Normal View History

2020-04-08 18:47:36 +00:00
name: On Label
2020-03-16 15:12:54 +00:00
on:
issues:
2020-04-08 18:47:36 +00:00
types: [labeled]
2020-03-12 08:38:52 +00:00
2020-03-16 15:12:54 +00:00
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
with:
repository: 'microsoft/vscode-github-triage-actions'
ref: v1
2020-04-08 18:47:36 +00:00
path: ./actions
- name: Install Actions
2020-04-08 18:47:36 +00:00
run: npm install --production --prefix ./actions
2020-03-18 17:21:25 +00:00
- name: Run CopyCat (JacksonKearl/testissues)
2020-04-08 18:47:36 +00:00
uses: ./actions/copycat
2020-03-18 17:21:25 +00:00
with:
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
owner: JacksonKearl
repo: testissues
- name: Run CopyCat (chrmarti/testissues)
2020-04-08 18:47:36 +00:00
uses: ./actions/copycat
2020-03-18 17:21:25 +00:00
with:
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
owner: chrmarti
repo: testissues
2020-04-08 18:47:36 +00:00
- name: Run New Release
uses: ./actions/new-release
with:
label: new release
labelColor: "006b75"
labelDescription: Issues found in a recent release of VS Code
days: 5