Skip to content

Commit

Permalink
Add CVE Label
Browse files Browse the repository at this point in the history
Signed-off-by: Prudhvi Godithi <[email protected]>
  • Loading branch information
prudhvigodithi committed Oct 11, 2023
1 parent c469fb1 commit 1ffd0f4
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/add-cve-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Add CVE Label
on:
issues:
types:
- labeled

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
add-comment:
if: ${{ contains(github.event.label.name, 'dependency security vulnerability') }}
runs-on: ubuntu-latest
steps:
- name: Get Issue Title
id: get_title
run: |
issue_title="${{ github.event.issue.title }}"
severity="$(echo $issue_title | sed -n 's/.*(\(.*\)).*/\1/p')"
echo "severity=$severity" >> $GITHUB_ENV
- name: Check and Create label
id: check_create_label
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
result-encoding: string
script: |
const labelName = "${{ env.severity }}";
let labelFound = false;
try {
const label = await github.rest.issues.getLabel({
owner: context.repo.owner,
repo: context.repo.repo,
name: labelName
});
labelFound = true;
} catch (error) {
if (error.status === 404) {
const randomColor = Math.floor(Math.random() * 16777215).toString(16);
const newLabel = {
owner: context.repo.owner,
repo: context.repo.repo,
name: labelName,
color: randomColor,
description: "CVE severity " + labelName
};
await github.rest.issues.createLabel(newLabel);
labelFound = true;
} else {
throw error;
}
}
console.log(labelFound);
return labelFound
- name: Add CVE Label
uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: ${{ github.event.issue.number }},
owner: context.repo.owner,
repo: context.repo.repo,
labels: ${{ env.severity }}
})

0 comments on commit 1ffd0f4

Please sign in to comment.