This repository was archived by the owner on Oct 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Add labels file #21
Merged
Merged
Add labels file #21
Changes from 2 commits
Commits
Show all changes
3 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,40 @@ | ||
| - name: "A-Timesheet-1" | ||
| description: "Log any time spent on this into the A-Timesheet-1 project" | ||
| color: "#5319E7" | ||
| - name: "backport staging" | ||
| description: "Label to automatically backport PR to staging branch" | ||
| color: "#B60205" | ||
| - name: "Dependencies" | ||
| description: "Pull requests that update a dependency file" | ||
| color: "#0366d6" | ||
| - name: "Sponsored" | ||
| color: "#b506d8" | ||
| - name: "T-Defect" | ||
| description: "Bugs, crashes, hangs, vulnerabilities, or other reported problems" | ||
| color: "#98e6ae" | ||
| - name: "T-Deprecation" | ||
| description: "A pull request that makes something deprecated" | ||
| color: "#98e6ae" | ||
| - name: "T-Enhancement" | ||
|
||
| description: "New features, changes in functionality, performance boosts, user-facing improvements" | ||
| color: "#98e6ae" | ||
| - name: "T-Task" | ||
|
||
| description: "Refactoring, enabling or disabling functionality, other engineering tasks" | ||
| color: "#98e6ae" | ||
| - name: "X-Blocked" | ||
| description: "The PR cannot move forward in any capacity until an action is made" | ||
| color: "ff7979" | ||
| - name: "X-Breaking-Change" | ||
| color: "#ff7979" | ||
| - name: "X-Release-Blocker" | ||
|
||
| description: "This affects the current release cycle and must be solved for a release to happen" | ||
| color: "#ff7979" | ||
| - name: "X-Upcoming-Release-Blocker" | ||
| description: "This does not affect the current release cycle but will affect the next one" | ||
| color: "#e99695" | ||
| - name: "Z-Community-PR" | ||
| description: "Issue is solved by a community member's PR" | ||
| color: "#ededed" | ||
| - name: "Z-Experiment" | ||
| description: "Experimental PR, primarily up for its Netlify build, high likelihood of never making it beyond here." | ||
| color: "#b60205" | ||
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,21 @@ | ||
| name: Sync labels | ||
| on: | ||
| workflow_dispatch: {} | ||
| schedule: | ||
| - cron: "0 1 * * *" # 1am every day | ||
| push: | ||
| branches: | ||
| - develop | ||
| paths: | ||
| - .github/labels.yml | ||
| jobs: | ||
| sync-labels: | ||
| uses: element-hq/element-meta/.github/workflows/sync-labels.yml@develop | ||
| with: | ||
| LABELS: | | ||
| element-hq/element-meta | ||
| .github/labels.yml | ||
| DELETE: true | ||
| WET: true | ||
| secrets: | ||
| ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} |
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.
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.
I think this is upstream in https://github.com/element-hq/element-meta/labels.
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.
oh right... I can't find where though? https://github.com/element-hq/element-meta/blob/develop/.github/labels.yml is empty...
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.
They are created manually on meta I believe.
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.
Oh! I thought they all came from yaml definitions - okay, gotcha.