mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
21 lines
384 B
YAML
21 lines
384 B
YAML
|
name: labeler
|
||
|
|
||
|
on:
|
||
|
pull_request_target:
|
||
|
types: [opened, synchronize, reopened]
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
label:
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pull-requests: write
|
||
|
steps:
|
||
|
- uses: actions/labeler@v4
|
||
|
with:
|
||
|
dot: true
|