Mapbase v7.2 #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# MAPBASE REPO AUTOMATION | |
# | |
# Automatically labels pull requests according to changed file paths. | |
# | |
# https://github.com/actions/labeler | |
name: Pull Request Automation | |
on: [pull_request] | |
jobs: | |
label: | |
if: github.repository_owner == 'mapbase-source' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/labeler@v4 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |