Skip to content

Commit eaee555

Browse files
committed
self review
1 parent 1165826 commit eaee555

File tree

2 files changed

+65
-58
lines changed

2 files changed

+65
-58
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 46 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -7,50 +7,54 @@ assignees: ''
77

88
body:
99
- type: textarea
10-
label: What events trigger your workflow?
11-
description: >-
12-
Please copy and paste the workflow triggers.
13-
If you are using a resuable workflow (`workflow_dispatch` event),
14-
then please also include the workflow triggers that the calling workflow uses.
15-
placeholder: |-
16-
on:
17-
pull_request:
18-
branches: [main, master, develop]
19-
paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake']
20-
push:
21-
branches: [main, master, develop]
22-
paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake']
23-
render: yml
10+
attributes:
11+
label: What events trigger your workflow?
12+
description: >-
13+
Please copy and paste the workflow triggers.
14+
If you are using a resuable workflow (`workflow_dispatch` event),
15+
then please also include the workflow triggers that the calling workflow uses.
16+
placeholder: |-
17+
on:
18+
pull_request:
19+
branches: [main, master, develop]
20+
paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake']
21+
push:
22+
branches: [main, master, develop]
23+
paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake']
24+
render: yml
2425

2526
- type: textarea
26-
label: What OS does your workflow use?
27-
description: >-
28-
Please tell us what OS the workflow [`runs-on`](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on).
29-
If you are using an additional [`container`](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontainer),
30-
then please also include that information here.
31-
placeholder: |-
32-
runs-on: ubuntu-latest
33-
container: node:18
34-
render: yml
27+
attributes:
28+
label: What OS does your workflow use?
29+
description: >-
30+
Please tell us what OS the workflow [`runs-on`](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on).
31+
If you are using an additional [`container`](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontainer),
32+
then please also include that information here.
33+
placeholder: |-
34+
runs-on: ubuntu-latest
35+
container: node:18
36+
render: yml
3537

3638
- type: textarea
37-
label: How is cpp-linter-action configured?
38-
description: >-
39-
Please copy and paste the version and inputs used to run cpp-linter-action.
40-
placeholder: |-
41-
- uses: cpp-linter/cpp-linter-action@v2
42-
id: linter
43-
env:
44-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
with:
46-
style: 'file'
47-
tidy-checks: ''
48-
render: yml
39+
attributes:
40+
label: How is cpp-linter-action configured?
41+
description: >-
42+
Please copy and paste the version and inputs used to run cpp-linter-action.
43+
placeholder: |-
44+
- uses: cpp-linter/cpp-linter-action@v2
45+
id: linter
46+
env:
47+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48+
with:
49+
style: 'file'
50+
tidy-checks: ''
51+
render: yml
4952

50-
- type: markdown
51-
label: What was the unexpected behavior?
52-
description: |-
53-
Use this area to describe what behavior you expected and what behavior you observed.
54-
Please be clear and concise as possible. Use screenshots if that would help. Most users
55-
use this to paste the workflow logs.
56-
placeholder: You can use markdown syntax here
53+
- type: textarea
54+
attributes:
55+
label: What was the unexpected behavior?
56+
description: |-
57+
Use this area to describe what behavior you expected and what behavior you observed.
58+
Please be clear and concise as possible. Use screenshots if that would help. Most users
59+
use this to paste the workflow logs.
60+
placeholder: You can use markdown syntax here

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,24 @@ body:
1313
If this idea is related to an already available feature(s), then please list them here.
1414
placeholder: 'Example: lines-changed-only, thread-comments, ...'
1515

16-
- type: markdown
17-
label: Describe the behavior you would like
18-
description: |-
19-
Use this area to describe what behavior you desire.
20-
Please be clear and concise as possible. Use screenshots if that would help.
21-
placeholder: You can use markdown syntax here
16+
- type: textarea
17+
attributes:
18+
label: Describe the behavior you would like
19+
description: |-
20+
Use this area to describe what behavior you desire.
21+
Please be clear and concise as possible. Use screenshots if that would help.
22+
placeholder: You can use markdown syntax here
2223

23-
- type: markdown
24-
label: Describe alternatives you have considered
25-
description: |-
26-
Were you able to achieve the desired behavior in some other/inconvenient way?
27-
placeholder: You can use markdown syntax here
24+
- type: textarea
25+
attributes:
26+
label: Describe alternatives you have considered
27+
description: |-
28+
Were you able to achieve the desired behavior in some other/inconvenient way?
29+
placeholder: You can use markdown syntax here
2830

29-
- type: markdown
30-
label: Additional context
31-
description: |-
32-
If there is anything that might be special or specific to your usage, please let us know.
33-
placeholder: You can use markdown syntax here
31+
- type: textarea
32+
attributes:
33+
label: Additional context
34+
description: |-
35+
If there is anything that might be special or specific to your usage, please let us know.
36+
placeholder: You can use markdown syntax here

0 commit comments

Comments
 (0)