forked from blueedgetechno/win11React
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 942 Bytes
/
issue-text.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Issue Text
on:
issues:
types: [opened]
permissions:
contents: read
jobs:
comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@v3
- name: Comment
uses: peter-evans/create-or-update-comment@v2
with:
body: Thank you for creating an issue. We will normally respond within 24 hours.
issue-number: ${{ github.event.issue.number }}
token: ${{ secrets.BOT }}
- uses: stefanbuck/github-issue-parser@v2
id: issue-parser
with:
template-path: .github/ISSUE_TEMPLATE/bug_report.yml
- name: Set Browser Labels
uses: redhat-plumbers-in-action/advanced-issue-labeler@v2
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
section: browsers
block-list: |
Other Browser
token: ${{ secrets.GITHUB_TOKEN }}