mirror of
https://github.com/stoatchat/discussions.git
synced 2026-06-30 22:08:37 -04:00
Initial Commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
labels/apply.fish
|
||||
@@ -0,0 +1,25 @@
|
||||
# Revolt
|
||||
|
||||
This repository currently just contains github labels information.
|
||||
|
||||
If you're looking for documentation, [it's here](https://developers.revolt.chat).
|
||||
|
||||
## Issue Label Use
|
||||
|
||||
Name | Description
|
||||
------|-------------
|
||||
bug | Something isn't working
|
||||
documentation | Improvements or additions to documentation
|
||||
draft | This issue needs more work
|
||||
duplicate | This issue or pull request already exists
|
||||
enhancement | New feature or request
|
||||
fluff | Minor app improvement / quality of life change
|
||||
good first issue | Good for newcomers
|
||||
help wanted | Extra attention is needed
|
||||
improvement | Areas that can be improved in
|
||||
invalid | This doesn't seem right
|
||||
needs design | This issue needs a design to be implemented
|
||||
performance | Issues relating to app performance
|
||||
privacy | Change which improves user privacy
|
||||
question | Further information is requested
|
||||
wontfix | This will not be worked on
|
||||
@@ -0,0 +1,13 @@
|
||||
#### Issue Labels
|
||||
|
||||
This folder contains a json file that manages the issue labels for the revoltchat organization.
|
||||
|
||||
It is applied to our repos via [github-labels](https://github.com/popomore/github-labels).
|
||||
|
||||
```bash
|
||||
# Install github-labels
|
||||
$ yarn global add github-labels
|
||||
|
||||
# Apply labels, this assumes you have 2FA on
|
||||
$ PAT=abc ./apply.sh
|
||||
```
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
labels -c conf.json -t $PAT revoltchat/revolt
|
||||
labels -c conf.json -t $PAT revoltchat/delta
|
||||
labels -c conf.json -t $PAT revoltchat/revite
|
||||
labels -c conf.json -t $PAT revoltchat/revolt.js
|
||||
labels -c conf.json -t $PAT revoltchat/autumn
|
||||
labels -c conf.json -t $PAT revoltchat/january
|
||||
labels -c conf.json -t $PAT revoltchat/desktop
|
||||
labels -c conf.json -t $PAT revoltchat/vortex
|
||||
@@ -0,0 +1,62 @@
|
||||
[
|
||||
{
|
||||
"name": "bug",
|
||||
"color": "d73a4a"
|
||||
},
|
||||
{
|
||||
"name": "document",
|
||||
"color": "0075ca"
|
||||
},
|
||||
{
|
||||
"name": "draft",
|
||||
"color": "d93f0b"
|
||||
},
|
||||
{
|
||||
"name": "duplicate",
|
||||
"color": "cfd3d7"
|
||||
},
|
||||
{
|
||||
"name": "enhancement",
|
||||
"color": "a2eeef"
|
||||
},
|
||||
{
|
||||
"name": "fluff",
|
||||
"color": "6a5acd"
|
||||
},
|
||||
{
|
||||
"name": "good first issue",
|
||||
"color": "7057ff"
|
||||
},
|
||||
{
|
||||
"name": "help wanted",
|
||||
"color": "008672"
|
||||
},
|
||||
{
|
||||
"name": "improvement",
|
||||
"color": "ff9f19"
|
||||
},
|
||||
{
|
||||
"name": "invalid",
|
||||
"color": "e4e669"
|
||||
},
|
||||
{
|
||||
"name": "needs design",
|
||||
"color": "1d76db"
|
||||
},
|
||||
{
|
||||
"name": "performance",
|
||||
"color": "51e898"
|
||||
},
|
||||
{
|
||||
"name": "privacy",
|
||||
"color": "ff78cb"
|
||||
},
|
||||
{
|
||||
"name": "question",
|
||||
"color": "d876e3"
|
||||
},
|
||||
{
|
||||
"name": "wontfix",
|
||||
"color": "ffffff"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user