aboutsummaryrefslogtreecommitdiffstats
path: root/.github/labeler.yml
Commit message (Collapse)AuthorAgeFilesLines
* Count typescript files as frontend for labeling (#32088)Anbraten2024-09-211-1/+2
|
* Add label `docs-update-needed` for PRs that modify `app.example.ini` (#31810)Jason Song2024-08-101-0/+5
| | | | | | To help #31536. Or it's easy to forget to update https://gitea.com/gitea/docs when modifying `app.example.ini`.
* Remove `modifies/frontend` from labeler (#30198)silverwind2024-03-311-7/+0
| | | | | | | Remove this label, I find it barely useful and we already have more useful labels like `modifies/js`. Backport so that we can eventually delete that label. Co-authored-by: Giteabot <teabot@gitea.io>
* Add `stylelint-value-no-unknown-custom-properties` and convert stylelint ↵silverwind2024-03-291-1/+1
| | | | | | | | | | | config to js (#30117) Add [`stylelint-value-no-unknown-custom-properties`](https://github.com/csstools/stylelint-value-no-unknown-custom-properties) which lints for undefined CSS variables. No current violations. To make it work properly with editor integrations, I had to convert the config to JS to be able to pass absolute paths to the plugin, but this is a needed change anyways.
* Tweak labeler (#29809)silverwind2024-03-151-2/+2
| | | | - `poetry.toml` does not picture dependencies - Add `.vue` files to `modifies/js`
* Update to labeler v5 (#29721)Denys Konovalov2024-03-121-21/+69
| | | | | | | | | | Updated to actions/labeler@v5 Updated labeler config accordingly, also improved the config and added more labels. --------- Co-authored-by: Giteabot <teabot@gitea.io>
* Update labeler to match new labeling system (#27525)Denys Konovalov2023-10-081-5/+19
|
* Tweak labeler config (#27502)silverwind2023-10-081-13/+0
| | | | | Alternative to https://github.com/go-gitea/gitea/pull/27439. Removes a few spammy labels, and disables `sync-labels` which make it never remove labels (which is default behaviour).
* Add more package registry paths to the labeler (#27032)JakobDev2023-09-121-0/+3
| | | Found this while working on #26960
* Add some more labels to labeler (#26987)silverwind2023-09-101-2/+9
| | | | | | | | - Add more automatic labels - Consistently use `**` glob for recursive directory globs. --------- Co-authored-by: techknowlogick <techknowlogick@gitea.com>
* Add `yamllint` (#26965)silverwind2023-09-071-0/+1
| | | | | | | | | So that https://github.com/go-gitea/gitea/pull/26964 does not happen again. Merge this after that PR. Config is based on [node's](https://github.com/nodejs/node/blob/main/.yamllint.yaml). --------- Co-authored-by: techknowlogick <techknowlogick@gitea.com>
* Fix yaml quoting (#26964)silverwind2023-09-071-14/+14
| | | | | Yaml [does not like](https://github.com/go-gitea/gitea/actions/runs/6115139962/job/16598147278?pr=26568) keys that start with `*` so let's quote all globs.
* Add `actions/labeler` (#26962)silverwind2023-09-071-0/+24
Implements https://github.com/GiteaBot/gitea-backporter/issues/93 using [`actions/labeler`](https://github.com/actions/labeler). Very basic configuration, can be extended later.