mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2024-12-28 15:55:31 +03:00
24 lines
453 B
YAML
24 lines
453 B
YAML
|
#
|
||
|
# MAPBASE REPO AUTOMATION
|
||
|
#
|
||
|
# Automatically labels pull requests according to changed file paths.
|
||
|
# See mapbase_triage-pr.yml for more information.
|
||
|
#
|
||
|
# https://github.com/actions/labeler
|
||
|
|
||
|
name: Pull Request Automation
|
||
|
on: [pull_request]
|
||
|
|
||
|
jobs:
|
||
|
label:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pull-requests: write
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/labeler@v4
|
||
|
with:
|
||
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|