mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2026-06-06 03:28:40 +02:00
30 lines
658 B
YAML
30 lines
658 B
YAML
name: Label Commenter
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
# pull_request:
|
|
# types:
|
|
# - labeled
|
|
# - unlabeled
|
|
|
|
jobs:
|
|
comment:
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 5
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
steps:
|
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
with:
|
|
ref: main
|
|
|
|
- name: Label Commenter
|
|
uses: peaceiris/actions-label-commenter@f0dbbef043eb1b150b566db36b0bdc8b7f505579 # v1.10.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# config_file: .github/label-commenter-config.yml
|