mirror of
https://github.com/systemd/systemd.git
synced 2025-01-24 06:04:05 +03:00
311956ccd9
with https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#permissions
23 lines
478 B
YAML
23 lines
478 B
YAML
---
|
|
# vi: ts=2 sw=2 et:
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
name: "Pull Request Labeler"
|
|
|
|
on:
|
|
- pull_request_target
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@69da01b8e0929f147b8943611bee75ee4175a49e
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/labeler.yml
|
|
sync-labels: "" # This is a workaround for issue 18671
|