-
Notifications
You must be signed in to change notification settings - Fork 168
Add a github action to sync the labels #4919
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
Open
LecrisUT
wants to merge
2
commits into
teemtee:main
Choose a base branch
from
LecrisUT:fix/4908
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+114
−0
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| - name: "breakage" | ||
| description: > | ||
| Change will change current behaviour | ||
| color: "B60205" | ||
| - name: "bug" | ||
| description: > | ||
| Something isn't working | ||
| color: "d73a4a" | ||
| - name: "ci | full test" | ||
| description: > | ||
| Pull request is ready for the full test execution | ||
| color: "0E8A16" | ||
| - name: "ci | skip" | ||
| description: > | ||
| Do not run any tests (useful for very early drafts). | ||
| color: "000000" | ||
| - name: "documentation" | ||
| description: > | ||
| Improvements or additions to documentation | ||
| color: "fbca04" | ||
| - name: "enhancement" | ||
| description: > | ||
| null | ||
|
LecrisUT marked this conversation as resolved.
|
||
| color: "ededed" | ||
| - name: "good first issue" | ||
| description: > | ||
| Good for newcomers | ||
| color: "7057ff" | ||
| - name: "known issue" | ||
| description: > | ||
| Known issues which are affecting multiple users | ||
| color: "D93F0B" | ||
| - name: "packaging" | ||
| description: > | ||
| Changes related to the rpm packaging | ||
| color: "ffe066" | ||
| - name: "release note" | ||
| description: > | ||
| Include a short release note, possibly with an example or demo | ||
| color: "F385D7" | ||
| - name: "renovate" | ||
| description: null | ||
| color: "7ae0c8" | ||
| - name: "review | trivial" | ||
| description: > | ||
| Very easy for review, even for beginners, so don't be afraid to have a look! :-) | ||
| color: "0E8A16" | ||
| - name: "security" | ||
| description: > | ||
| Security related issues and changes | ||
| color: "B60205" | ||
| - name: "status | blocked" | ||
| description: > | ||
| The merging of PR is blocked on some other issue | ||
| color: "444444" | ||
| - name: "status | blocking other work" | ||
| description: > | ||
| An important pull request, blocking other pull requests or issues | ||
| color: "190552" | ||
| - name: "status | discuss" | ||
| description: > | ||
| Needs more discussion before closing | ||
| color: "FBCA04" | ||
| - name: "status | failing tests" | ||
| description: null | ||
| color: "B60205" | ||
| - name: "status | need docs" | ||
| description: > | ||
| Documentation to be added for the affected code | ||
| color: "FBCA04" | ||
| - name: "status | need help" | ||
| description: > | ||
| Extra attention is needed | ||
| color: "008672" | ||
| - name: "status | need prioritize" | ||
| description: > | ||
| Need to pick the most important issues based on user feedback | ||
| color: "B60205" | ||
| - name: "status | need tests" | ||
| description: > | ||
| Test coverage to be added for the affected code | ||
| color: "D95F0B" | ||
| - name: "status | postponed" | ||
| description: > | ||
| Let's postpone for the next sprint | ||
| color: "98358D" | ||
| - name: "test coverage" | ||
| description: > | ||
| Improvements or additions to test coverage of tmt itself | ||
| color: "6C3D04" | ||
| - name: "usability" | ||
| description: > | ||
| Issues and changes related to user comfort | ||
| color: "5bd300" | ||
| - name: "Waiting contact" | ||
|
LecrisUT marked this conversation as resolved.
|
||
| description: > | ||
| No response on github and cannot contact another way | ||
| color: "cb193b" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| name: Sync github labels | ||
|
|
||
| on: | ||
| workflow_call: | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| issues: write | ||
|
|
||
| jobs: | ||
| sync: | ||
| runs-on: ubuntu-slim | ||
| steps: | ||
| - uses: srealmoreno/label-sync-action@v2.0.0 | ||
| with: | ||
| config-file: https://raw.githubusercontent.com/teemtee/tmt/main/.github/labels.yaml |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.