Skip to content

Commit

Permalink
adding GH workflow to label regression
Browse files Browse the repository at this point in the history
  • Loading branch information
shikha372 committed Aug 9, 2024
1 parent 840e70a commit 6b1c3b5
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Apply various labels on PRs
name: pr-regression-labels
# Apply potential regression label on issues
name: issue-regression-label
on:
issues:
types: [opened, edited]
Expand All @@ -20,14 +20,13 @@ jobs:
const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i;
const template = `${process.env.TEMPLATE_BODY}`
const match = regressionPattern.test(template);
console.log(`Is regression: ${match}`);
core.setOutput('is_regression', match);
- name: Manage regression label
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
gh issue edit ${{ github.event.issue.number }} --add-label "potential regression" -R ${{ github.repository }}
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
else
gh issue edit ${{ github.event.issue.number }} --remove-label "potential regression" -R ${{ github.repository }}
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
fi

0 comments on commit 6b1c3b5

Please sign in to comment.