Compare commits
3 commits
8da08b9881
...
51396a14ef
Author | SHA1 | Date | |
---|---|---|---|
51396a14ef | |||
4137662435 | |||
e8624ad830 |
3 changed files with 88 additions and 3 deletions
|
@ -11,7 +11,7 @@ services:
|
||||||
command: [ "dockerd", "-H", "tcp://0.0.0.0:2375", "--tls=false" ]
|
command: [ "dockerd", "-H", "tcp://0.0.0.0:2375", "--tls=false" ]
|
||||||
|
|
||||||
forgejo:
|
forgejo:
|
||||||
image: codeberg.org/forgejo/forgejo:1.21
|
image: codeberg.org/forgejo/forgejo:7
|
||||||
container_name: forgejo
|
container_name: forgejo
|
||||||
command: >-
|
command: >-
|
||||||
bash -c '
|
bash -c '
|
||||||
|
|
|
@ -19,7 +19,7 @@ WORK_PATH = /data/forgejo
|
||||||
|
|
||||||
[ui]
|
[ui]
|
||||||
DEFAULT_THEME = github
|
DEFAULT_THEME = github
|
||||||
THEMES = github,forgejo-auto,forgejo-light,forgejo-dark,arc-green
|
THEMES = github,forgejo-auto,forgejo-light,forgejo-dark
|
||||||
CUSTOM_EMOJIS = forgejo,codeberg,git
|
CUSTOM_EMOJIS = forgejo,codeberg,git
|
||||||
ONLY_SHOW_RELEVANT_REPOS = true
|
ONLY_SHOW_RELEVANT_REPOS = true
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ REPO_INDEXER_REPO_TYPES = sources
|
||||||
[session]
|
[session]
|
||||||
PROVIDER_CONFIG = /data/forgejo/sessions
|
PROVIDER_CONFIG = /data/forgejo/sessions
|
||||||
PROVIDER = file
|
PROVIDER = file
|
||||||
|
COOKIE_NAME = i_like_forgejo
|
||||||
|
|
||||||
[picture]
|
[picture]
|
||||||
ENABLE_FEDERATED_AVATAR = true
|
ENABLE_FEDERATED_AVATAR = true
|
||||||
|
|
84
forgejo/forgejo/options/label/AdvancedV2.yaml
Normal file
84
forgejo/forgejo/options/label/AdvancedV2.yaml
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
labels:
|
||||||
|
- name: "Kind/Bug"
|
||||||
|
color: ee0701
|
||||||
|
description: Something is not working
|
||||||
|
- name: "Kind/Feature"
|
||||||
|
color: 0288d1
|
||||||
|
description: New functionality
|
||||||
|
- name: "Kind/Enhancement"
|
||||||
|
color: 84b6eb
|
||||||
|
description: Improve existing functionality
|
||||||
|
- name: "Kind/Security"
|
||||||
|
color: 9c27b0
|
||||||
|
description: This is security issue
|
||||||
|
- name: "Kind/Testing"
|
||||||
|
color: 795548
|
||||||
|
description: Issue or pull request related to testing
|
||||||
|
- name: "Kind/Breaking"
|
||||||
|
color: c62828
|
||||||
|
description: Breaking change that won't be backward compatible
|
||||||
|
- name: "Kind/Documentation"
|
||||||
|
color: 37474f
|
||||||
|
description: Documentation changes
|
||||||
|
- name: "Kind/CI-CD"
|
||||||
|
color: fbca04
|
||||||
|
description: Something related to the CI/CD
|
||||||
|
- name: "Kind/Question"
|
||||||
|
color: 006b75
|
||||||
|
description: Question related to the project
|
||||||
|
- name: "Reviewed/Duplicate"
|
||||||
|
exclusive: true
|
||||||
|
color: 616161
|
||||||
|
description: This issue or pull request already exists
|
||||||
|
- name: "Reviewed/Invalid"
|
||||||
|
exclusive: true
|
||||||
|
color: 546e7a
|
||||||
|
description: Invalid issue
|
||||||
|
- name: "Reviewed/Confirmed"
|
||||||
|
exclusive: true
|
||||||
|
color: 795548
|
||||||
|
description: Issue has been confirmed
|
||||||
|
- name: "Reviewed/Won't Fix"
|
||||||
|
exclusive: true
|
||||||
|
color: eeeeee
|
||||||
|
description: This issue won't be fixed
|
||||||
|
- name: "Reviewed/Accepted"
|
||||||
|
exclusive: true
|
||||||
|
color: 70c24a
|
||||||
|
description: Feature Request or Proposal was accepted by maintainers and will be implemented
|
||||||
|
- name: "Reviewed/Declined"
|
||||||
|
exclusive: true
|
||||||
|
color: e11d21
|
||||||
|
description: Feature Request or Proposal was declined by maintainers
|
||||||
|
- name: "Status/Need More Info"
|
||||||
|
exclusive: true
|
||||||
|
color: 424242
|
||||||
|
description: Feedback is required to reproduce issue or to continue work
|
||||||
|
- name: "Status/Blocked"
|
||||||
|
exclusive: true
|
||||||
|
color: 880e4f
|
||||||
|
description: Something is blocking this issue or pull request
|
||||||
|
- name: "Status/Abandoned"
|
||||||
|
exclusive: true
|
||||||
|
color: "222222"
|
||||||
|
description: Somebody has started to work on this but abandoned work
|
||||||
|
- name: "Status/Waiting On Review"
|
||||||
|
exclusive: true
|
||||||
|
color: "222222"
|
||||||
|
description: Awaiting review from the assignee
|
||||||
|
- name: "Status/Waiting On Author"
|
||||||
|
exclusive: true
|
||||||
|
color: "222222"
|
||||||
|
description: This is awaiting some action (such as code changes or more information) from the author
|
||||||
|
- name: "Status/Inactive"
|
||||||
|
exclusive: true
|
||||||
|
color: "222222"
|
||||||
|
description: Inactive and waiting on the author. This is often applied to closed PRs
|
||||||
|
- name: "Help wanted"
|
||||||
|
color: 00f7ff
|
||||||
|
description: Request for help from the community/contributors
|
||||||
|
priority: high
|
||||||
|
- name: "Good First Issue"
|
||||||
|
color: 1de391
|
||||||
|
description: Good for newcomers
|
||||||
|
priority: high
|
Loading…
Reference in a new issue