mirror of
https://github.com/docker/docs.git
synced 2026-03-29 15:28:51 +07:00
Use the official labeler action to automatically assign labels to PRs based on the edited files. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
22 lines
347 B
YAML
22 lines
347 B
YAML
name: labeler
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request_target:
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
-
|
|
name: Run
|
|
uses: actions/labeler@v4
|
|
with:
|
|
dot: true
|