File tree 2 files changed +43
-0
lines changed
2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 22
22
description : What is the problem? A clear and concise description of the bug.
23
23
validations :
24
24
required : true
25
+
26
+ - type : checkboxes
27
+ id : regression
28
+ attributes :
29
+ label : Regression Issue
30
+ description : What is a regression? If it worked in a previous version but doesn't in the latest version, it's considered a
31
+ regression. In this case, please provide specific version number in the report.
32
+ options :
33
+ - label : Select this option if this issue appears to be a regression.
34
+ required : false
35
+
25
36
- type : textarea
26
37
id : expected
27
38
attributes :
Original file line number Diff line number Diff line change
1
+ # Apply potential regression label on issues
2
+ name : issue-regression-label
3
+ on :
4
+ issues :
5
+ types : [opened, edited]
6
+ jobs :
7
+ add-regression-label :
8
+ runs-on : ubuntu-latest
9
+ permissions :
10
+ issues : write
11
+ steps :
12
+ - name : Fetch template body
13
+ id : check_regression
14
+ uses : actions/github-script@v7
15
+ env :
16
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
17
+ TEMPLATE_BODY : ${{ github.event.issue.body }}
18
+ with :
19
+ script : |
20
+ const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i;
21
+ const template = `${process.env.TEMPLATE_BODY}`
22
+ const match = regressionPattern.test(template);
23
+ core.setOutput('is_regression', match);
24
+ - name : Manage regression label
25
+ env :
26
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
27
+ run : |
28
+ if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
29
+ gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
30
+ else
31
+ gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
32
+ fi
You can’t perform that action at this time.
0 commit comments