Skip to content
This repository has been archived by the owner on Apr 28, 2024. It is now read-only.

Commit

Permalink
Update sync issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rcstanciu committed Oct 25, 2023
1 parent b5a784e commit afdec5c
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .data/sync_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def cast(cls, github: Github):
# {
# "id": 1, # corresponds to the issue 001
# "parent": 5, # corresponds to the issue 005 => issue is duplicate of 005
# "closed": True, # True for a closed, unlabeled or low/info issue
# "closed": True, # True for a closed or duplicate issue
# "auditor": "rcstanciu",
# "severity": "H", # Possible values: "H", "M" or "false"
# "title": "Issue title",
Expand Down Expand Up @@ -248,11 +248,6 @@ def main():
"color": "D93F0B",
"description": "A valid Medium severity issue",
},
{
"name": "Low/Info",
"color": "FBCA04",
"description": "A valid Low/Informational severity issue",
},
{
"name": "Has Duplicates",
"color": "D4C5F9",
Expand Down Expand Up @@ -386,12 +381,6 @@ def main():
new_labels.remove("High")
if "Medium" in existing_labels:
new_labels.remove("Medium")
if "Low" in existing_labels:
new_labels.remove("Low")
if "Informational" in existing_labels:
new_labels.remove("Informational")
if "Low/Info" in existing_labels:
new_labels.remove("Low/Info")
if "Has Duplicates" in existing_labels:
new_labels.remove("Has Duplicates")
if "Duplicate" in existing_labels:
Expand Down

0 comments on commit afdec5c

Please sign in to comment.