mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-11 10:07:53 +00:00
22 lines
645 B
YAML
22 lines
645 B
YAML
name: "Issue Labeler"
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
triage:
|
|
if: github.repository == 'podman-container-tools/podman'
|
|
permissions:
|
|
contents: read # for github/issue-labeler to get repo contents
|
|
issues: write # for github/issue-labeler to create or remove labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: github/issue-labeler@ccca1e16fcb66762200e616fc29b57b940c1cb67 # v3.5
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/issue-labeler.yml
|
|
not-before: 2022-01-27T00:00:00Z
|
|
enable-versioned-regex: 0
|