mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-31 03:42:48 +00:00
* Add support for consistent documentation using markdownlint * Only run workflow during changes to markdown files * Fix more inconsistencies * Fixes to markdown under .github/ * More fixes * Apply suggestions from code review Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Fix typo in limiter docs * Add missing space before code-block * Add check for dead-links * Add write-good * Remove legacy README files * Fix glob for skipping .md files * Use paths-ignore instead --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
25 lines
429 B
YAML
25 lines
429 B
YAML
name: Auto labeler
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, edited, milestoned]
|
|
pull_request_target:
|
|
types: [opened]
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
pull-requests: write
|
|
statuses: write
|
|
checks: write
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check Labels
|
|
id: labeler
|
|
uses: fuxingloh/multi-labeler@v4
|
|
with:
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|