mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
823d209739
* fix: tsconfig support ts * fix: add feature request label * fix: change feature request label * Update .github/workflows/issue-add-label.yml Co-authored-by: 07akioni <07akioni2@gmail.com>
19 lines
457 B
YAML
19 lines
457 B
YAML
name: Add Feature Request Labels
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
add-labels:
|
|
runs-on: ubuntu-latest
|
|
if: contains(github.event.issue.body, '__FEATURE_REQUEST__') == true
|
|
steps:
|
|
- name: Add labels
|
|
uses: actions-cool/issues-helper@v2.2.1
|
|
with:
|
|
actions: 'add-labels'
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-number: ${{ github.event.issue.number }}
|
|
labels: 'feature request'
|