Skip to content

Commit

Permalink
accept 'breaking' label for breaking changes (#90)
Browse files Browse the repository at this point in the history
* accept 'breaking' label for breaking changes

* remove unused tags.yaml

* accept breaking tag for breaking changes and show breaking changes first
  • Loading branch information
minrk authored Jul 10, 2023
1 parent e3221a3 commit cc152a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 69 deletions.
10 changes: 5 additions & 5 deletions github_activity/github_activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@

# The tags and description to use in creating subsets of PRs
TAGS_METADATA_BASE = {
"api_change": {
"tags": ["api-change", "apichange", "breaking"],
"pre": ["BREAK", "BREAKING", "BRK", "UPGRADE"],
"description": "API and Breaking Changes",
},
"new": {
"tags": ["feature", "new"],
"pre": ["NEW", "FEAT", "FEATURE"],
Expand All @@ -49,11 +54,6 @@
"pre": ["DOC", "DOCS"],
"description": "Documentation improvements",
},
"api_change": {
"tags": ["api-change", "apichange"],
"pre": ["BREAK", "BREAKING", "BRK", "UPGRADE"],
"description": "API and Breaking Changes",
},
"deprecate": {
"tags": ["deprecation", "deprecate"],
"pre": ["DEPRECATE", "DEPRECATION", "DEP"],
Expand Down
64 changes: 0 additions & 64 deletions github_activity/tags.yaml

This file was deleted.

0 comments on commit cc152a1

Please sign in to comment.