Skip to content

Commit c12585b

Browse files
authored
chore: remove regression label management (#4699)
1 parent 966fa6c commit c12585b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

.github/workflows/issue-regression-labeler.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,3 @@ jobs:
2121
const template = `${process.env.TEMPLATE_BODY}`
2222
const match = regressionPattern.test(template);
2323
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

0 commit comments

Comments
 (0)