mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-03 03:33:16 +03:00
20 lines
396 B
YAML
20 lines
396 B
YAML
# https://github.com/actions/labeler#create-workflow
|
|
|
|
name: Label Pull Requests
|
|
|
|
on:
|
|
pull_request_target:
|
|
|
|
jobs:
|
|
prs:
|
|
name: Triage
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v4
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: ".github/pr-labeler.yml"
|