mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
18 lines
339 B
YAML
18 lines
339 B
YAML
name: Labeler
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
label:
|
|
name: Labeler
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- uses: actions/labeler@v3
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
sync-labels: true
|