docs(#434): add the app #16
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: CI | |
on: | |
- pull_request_target | |
jobs: | |
label_pr-triage: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'ashgw' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
sync-labels: true |