Coelece actions

This commit is contained in:
Jackson Kearl
2020-04-08 11:47:36 -07:00
parent 51edf4892b
commit 0facba3df8
9 changed files with 106 additions and 49 deletions

38
.github/workflows/on-open.yml vendored Normal file
View File

@@ -0,0 +1,38 @@
name: On Label
on:
issues:
types: [labeled]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
with:
repository: 'microsoft/vscode-github-triage-actions'
ref: v1
path: ./actions
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Run CopyCat (JacksonKearl/testissues)
uses: ./actions/copycat
with:
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
owner: JacksonKearl
repo: testissues
- name: Run CopyCat (chrmarti/testissues)
uses: ./actions/copycat
with:
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
owner: chrmarti
repo: testissues
- 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