mirror of
https://github.com/linuxserver/github-workflows.git
synced 2026-03-02 00:02:48 +08:00
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 4.0.0 to 5.0.0. - [Release notes](https://github.com/peter-evans/create-or-update-comment/releases) - [Commits](https://github.com/peter-evans/create-or-update-comment/compare/v4.0.0...v5.0.0) --- updated-dependencies: - dependency-name: peter-evans/create-or-update-comment dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
539 B
YAML
18 lines
539 B
YAML
name: Comment on invalid interaction
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
add-comment-on-invalid:
|
|
if: github.event.label.name == 'invalid'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Add comment on invalid
|
|
uses: peter-evans/create-or-update-comment@v5.0.0
|
|
with:
|
|
issue-number: ${{ github.event.issue.number}}
|
|
body: |
|
|
A human has marked this issue as invalid, this likely happened because the issue template was not used in the creation of the issue.
|