-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to declarative labels #6772
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
🏷 The following changes will be made to the repository labels
|
Quick seatbelt:
Also seeing 80 in the UI: Ftr I fetched with (note
And I transmogrified with: #!/usr/bin/env python3
import json, yaml
labels_in = json.load(open(f'labels.json'))
labels_out = []
for label in labels_in:
labels_out.append({
'name': label['name'],
'aliases': [],
'color': label['color'],
'description': label['description'],
})
fp = open('.github/labels.yml', 'w+')
yaml.dump(labels_out, fp, sort_keys=False) I don't like the look of that comment, though ... 🤔 |
I think we're good. 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, sync-labels.yml
is the same as we use in sentry and the dry run won't change current labels
cf. getsentry/sentry#36833