mirror of
https://github.com/containers/podman.git
synced 2026-01-29 00:11:42 -05:00
It's nearly impossible for humans to tell semantic-version differences by looking at a commit sha. Since all the actions in question come from github, there's little security/safety benefit to using SHAs. Signed-off-by: Chris Evich <cevich@redhat.com>
22 lines
541 B
YAML
22 lines
541 B
YAML
name: "Issue Labeler"
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
triage:
|
|
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@v3.1
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/issue-labeler.yml
|
|
not-before: 2022-01-27T00:00:00Z
|
|
enable-versioned-regex: 0
|