chore(repo): update labels
This commit is contained in:
122
.github/config/label.yml
vendored
122
.github/config/label.yml
vendored
@@ -1,43 +1,89 @@
|
||||
# Repository files
|
||||
repository:
|
||||
- .github/**
|
||||
- .gitattributes
|
||||
- .gitignore
|
||||
- .eslintrc.yml
|
||||
- ARCHITECTURE.md
|
||||
- CONTRIBUTING.md
|
||||
- LICENSE
|
||||
- SECURITY.md
|
||||
|
||||
# Docker
|
||||
docker:
|
||||
- .dockerignore
|
||||
- Dockerfile
|
||||
|
||||
# Metrics source code editions
|
||||
core:
|
||||
- source/app/metrics/**
|
||||
- source/plugins/base/**
|
||||
- source/plugins/core/**
|
||||
action:
|
||||
📊 metrics embed:
|
||||
- source/app/action/**
|
||||
web:
|
||||
- source/app/web/**
|
||||
metrics-insights:
|
||||
✨ metrics insights:
|
||||
- source/app/web/statics/about/**
|
||||
plugins:
|
||||
|
||||
🧩 plugins:
|
||||
- source/plugins/**
|
||||
templates:
|
||||
🖼️ templates:
|
||||
- source/templates/**
|
||||
templates-classic:
|
||||
- source/templates/classic/**
|
||||
templates-markdown:
|
||||
- source/templates/markdown/**
|
||||
templates-repository:
|
||||
- source/templates/repository/**
|
||||
tests:
|
||||
- source/app/mocks/**
|
||||
- tests/**
|
||||
dependencies:
|
||||
- package.json
|
||||
- package-lock.json
|
||||
|
||||
🗃️ base:
|
||||
- source/plugins/base/**
|
||||
🧱 core:
|
||||
- source/app/metrics/**
|
||||
- source/plugins/core/**
|
||||
|
||||
🏆 plugin achievements:
|
||||
- source/plugins/isocalendar/**
|
||||
📰 plugin activity:
|
||||
- source/plugins/activity/**
|
||||
♐ plugin code:
|
||||
- source/plugins/code/**
|
||||
🏅 plugin contributors:
|
||||
- source/plugins/contributors/**
|
||||
💬 plugin discussions:
|
||||
- source/plugins/discussions/**
|
||||
🎟️ plugin followup:
|
||||
- source/plugins/followup/**
|
||||
🎫 plugin gists:
|
||||
- source/plugins/gists/**
|
||||
💡 plugin habits:
|
||||
- source/plugins/habits/**
|
||||
🙋 plugin introduction:
|
||||
- source/plugins/introduction/**
|
||||
📅 plugin isocalendar:
|
||||
- source/plugins/isocalendar/**
|
||||
🈷️ plugin languages:
|
||||
- source/plugins/languages/**
|
||||
📜 plugin licenses:
|
||||
- source/plugins/licenses/**
|
||||
👨💻 plugin lines:
|
||||
- source/plugins/lines/**
|
||||
🎩 plugin notable:
|
||||
- source/plugins/notable/**
|
||||
🧑🤝🧑 plugin people:
|
||||
- source/plugins/people/**
|
||||
🗂️ plugin projects:
|
||||
- source/plugins/projects/**
|
||||
🎭 plugin reactions:
|
||||
- source/plugins/reactions/**
|
||||
📓 plugin repositories:
|
||||
- source/plugins/repositories/**
|
||||
🌇 plugin skyline:
|
||||
- source/plugins/skyline/**
|
||||
💕 plugin sponsors:
|
||||
- source/plugins/sponsors/**
|
||||
✨ plugin stargazers:
|
||||
- source/plugins/stargazers/**
|
||||
🌟 plugin starred:
|
||||
- source/plugins/starred/**
|
||||
💭 plugin community:
|
||||
- source/plugins/community/**
|
||||
📌 plugin topics:
|
||||
- source/plugins/topics/**
|
||||
🧮 plugin traffic:
|
||||
- source/plugins/traffic/**
|
||||
🌸 plugin anilist:
|
||||
- source/plugins/anilist/**
|
||||
🎼 plugin music:
|
||||
- source/plugins/music/**
|
||||
⏱️ plugin pagespeed:
|
||||
- source/plugins/pagespeed/**
|
||||
✒️ plugin posts:
|
||||
- source/plugins/posts/**
|
||||
🗼 plugin rss:
|
||||
- source/plugins/rss/**
|
||||
🗨️ plugin stackoverflow:
|
||||
- source/plugins/stackoverflow/**
|
||||
🐤 plugin tweets:
|
||||
- source/plugins/tweets/**
|
||||
⏰ plugin wakatime:
|
||||
- source/plugins/wakatime/**
|
||||
💉 plugin nightscout:
|
||||
- source/plugins/nightscout/**
|
||||
📸 plugin screenshot:
|
||||
- source/plugins/screenshot/**
|
||||
💹 plugin stock:
|
||||
- source/plugins/stock/**
|
||||
|
||||
@@ -7,7 +7,6 @@ See [ARCHITECTURE.md](/ARCHITECTURE.md) for more informations about how code is
|
||||
|
||||
To report a bug fill an [issue](https://github.com/lowlighter/metrics/issues) describing it.
|
||||
To suggest new features or requesting help to setup metrics, check out [discussions](https://github.com/lowlighter/metrics/discussions).
|
||||
You can also take a look at issues labeled with [help wanted](https://github.com/lowlighter/metrics/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22).
|
||||
|
||||
If you want to contribute, submit a [pull request](https://github.com/lowlighter/metrics/pulls).
|
||||
Be sure to read [CONTRIBUTING.md](/CONTRIBUTING.md) for more information about this.
|
||||
|
||||
20
.github/workflows/stale.yml
vendored
20
.github/workflows/stale.yml
vendored
@@ -13,17 +13,12 @@ jobs:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
stale-issue-message: This issue seems to be inactive and will be automatically closed in a few days if it remains without any activity.
|
||||
stale-pr-message: This pull request seems to be inactive and will be automatically closed in a few days if it remains without any activity.
|
||||
days-before-stale: 21
|
||||
days-before-close: 3
|
||||
stale-issue-label: stale
|
||||
stale-pr-label: stale
|
||||
exempt-issue-labels: needs fix, available on next release
|
||||
exempt-assignees: lowlighter
|
||||
days-before-pr-stale: 21
|
||||
days-before-pr-close: 3
|
||||
stale-pr-label: ⏹️ stale
|
||||
remove-stale-when-updated: yes
|
||||
operations-per-run: 100
|
||||
|
||||
lock:
|
||||
name: Lock inactive closed issues and pull requests
|
||||
needs:
|
||||
@@ -33,10 +28,9 @@ jobs:
|
||||
- uses: dessant/lock-threads@v2
|
||||
with:
|
||||
github-token: ${{ github.token }}
|
||||
issue-lock-inactive-days: 14
|
||||
issue-inactive-days: 14
|
||||
issue-lock-reason: ""
|
||||
issue-lock-labels: archived
|
||||
issue-exclude-labels: needs fix
|
||||
pr-lock-inactive-days: 14
|
||||
issue-lock-labels: ☑️ archived
|
||||
pr-inactive-days: 14
|
||||
pr-lock-reason: ""
|
||||
pr-lock-labels: archived
|
||||
pr-lock-labels: ☑️ archived
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
### 📝 Reporting a Vulnerability
|
||||
|
||||
To report a vulnerability, simply open an [issue](https://github.com/lowlighter/metrics/issues) with `security` label.
|
||||
To report a vulnerability, simply open an [issue](https://github.com/lowlighter/metrics/issues).
|
||||
We'll try to patch it quickly.
|
||||
|
||||
Reference in New Issue
Block a user