build: improve monorepo package confs #38
Workflow file for this run
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
# this auto labels PRs based on the configuration file | |
# have a look at ./github/labeler.yml` | |
name: PR | |
on: | |
- pull_request_target | |
jobs: | |
label-triage: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'ashgw' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/labeler@v5 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
sync-labels: true |