Actions: Autolabel issues when opened

This commit is contained in:
Aditya Sharad 2020-07-30 16:59:07 -07:00
Родитель 6ae5cd3ac3
Коммит d2409054e2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 66D1E528054C320C
1 изменённых файлов: 16 добавлений и 0 удалений

16
.github/workflows/label-issue.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,16 @@
name: Label issue
on:
issues:
types: [opened]
jobs:
label:
name: Label issue
runs-on: ubuntu-latest
if: github.event.action == 'opened'
steps:
- name: Label issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo '{"labels": ["VSCode"]}' | gh api repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels --input -