This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | digest | `8f4b7f8` -> `8e5e7e5` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS40Mi4wIiwidXBkYXRlZEluVmVyIjoiMzUuNDYuMSJ9-->
33 lines
655 B
YAML
33 lines
655 B
YAML
---
|
|
name: "Metadata: Label Commenter"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
pull_request_target:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
comment:
|
|
name: Label commenter
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
|
|
with:
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
ref: master
|
|
|
|
- uses: peaceiris/actions-label-commenter@f0dbbef043eb1b150b566db36b0bdc8b7f505579 # tag=v1
|
|
with:
|
|
github_token: ${{ secrets.BOT_TOKEN }}
|