mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
21 lines
419 B
YAML
21 lines
419 B
YAML
name: 'PR Labeler'
|
|
|
|
on:
|
|
- pull_request_target
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
labeler:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v4
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
sync-labels: ''
|