We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 966fa6c commit c12585bCopy full SHA for c12585b
.github/workflows/issue-regression-labeler.yml
@@ -21,12 +21,3 @@ jobs:
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
0 commit comments