mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
18 lines
430 B
YAML
18 lines
430 B
YAML
# https://github.com/actions/labeler
|
|
name: "Pull Request Labeler"
|
|
on:
|
|
- pull_request_target
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
triage:
|
|
if: github.repository == 'podman-container-tools/podman'
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@bf12e9b00b37c5c0ca2b87b79b2daf7891dbda13 # v7.0.0
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|