mirror of
https://github.com/kdeldycke/awesome-falsehood.git
synced 2024-11-20 11:35:56 -05:00
Maintain labels by the way of declarative configuration.
This commit is contained in:
parent
1606e4e4b0
commit
4489e2666f
2 changed files with 70 additions and 0 deletions
57
.github/labels.json
vendored
Normal file
57
.github/labels.json
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
[
|
||||
{
|
||||
"name": "CI/CD",
|
||||
"color": "#dbca13",
|
||||
"description": "Automation and management of the project itself"
|
||||
},
|
||||
{
|
||||
"name": "curation",
|
||||
"color": "#d73a4a",
|
||||
"description": "Links or structure needs to be refined"
|
||||
},
|
||||
{
|
||||
"name": "duplicate",
|
||||
"color": "#cfd3d7",
|
||||
"description": "This issue or pull request already exists"
|
||||
},
|
||||
{
|
||||
"name": "enhancement",
|
||||
"color": "#84b6eb",
|
||||
"description": "New feature or request"
|
||||
},
|
||||
{
|
||||
"name": "good first issue",
|
||||
"color": "#7057ff",
|
||||
"description": "Good for newcomers"
|
||||
},
|
||||
{
|
||||
"name": "help wanted",
|
||||
"color": "#008672",
|
||||
"description": "Extra attention is needed"
|
||||
},
|
||||
{
|
||||
"name": "new link",
|
||||
"color": "#fbca04",
|
||||
"description": "Add link worth adding to the list"
|
||||
},
|
||||
{
|
||||
"name": "fix link",
|
||||
"color": "#d4c5f9",
|
||||
"description": "Existing link need to be updated"
|
||||
},
|
||||
{
|
||||
"name": "question",
|
||||
"color": "#d876e3",
|
||||
"description": "Further information is requested"
|
||||
},
|
||||
{
|
||||
"name": "typo",
|
||||
"color": "#fef2c0",
|
||||
"description": "Tiny, obvious fix"
|
||||
},
|
||||
{
|
||||
"name": "wont do/fix",
|
||||
"color": "#eeeeee",
|
||||
"description": "This will not be worked on"
|
||||
}
|
||||
]
|
13
.github/workflows/labels_sync.yaml
vendored
Normal file
13
.github/workflows/labels_sync.yaml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: Sync labels
|
||||
on: issues
|
||||
|
||||
jobs:
|
||||
|
||||
sync_labels:
|
||||
name: Sync labels
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.1
|
||||
- uses: lannonbr/issue-label-manager-action@2.0.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue