[FR] 脚手架创建项目的时候能不能增加配置是否创建git仓库,默认选是 #125
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue labeler | |
on: | |
issues: | |
types: [ opened ] | |
permissions: | |
contents: read | |
jobs: | |
label-component: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
strategy: | |
matrix: | |
template: [ bug_report.yml ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 解析模板 | |
uses: stefanbuck/github-issue-parser@v3 | |
id: issue-parser | |
with: | |
template-path: .github/ISSUE_TEMPLATE/${{ matrix.template }} | |
- name: Set labels based on severity field | |
uses: redhat-plumbers-in-action/advanced-issue-labeler@v3 | |
with: | |
issue-form: ${{ steps.issue-parser.outputs.jsonString }} | |
template: ${{ matrix.template }} | |
token: ${{ secrets.GITHUB_TOKEN }} |