mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
25 lines
570 B
YAML
25 lines
570 B
YAML
name: On Issue Open
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: 'microsoft/azuredatastudio'
|
|
ref: main
|
|
path: ./actions
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions/build/actions
|
|
|
|
- name: Run CopyCat
|
|
uses: ./actions/build/actions/copycat
|
|
with:
|
|
token: ${{secrets.TRIAGE_PAT}}
|
|
owner: anthonydresser
|
|
repo: testissues
|