mirror of
https://github.com/mprojectscode/obsidian-bases-charts-plugin.git
synced 2026-07-22 16:30:29 +00:00
17 lines
475 B
YAML
17 lines
475 B
YAML
name: Close Invalid Issue
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
jobs:
|
|
closeIssue:
|
|
if: github.event.label.name == 'invalid'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Close Issue
|
|
uses: peter-evans/close-issue@v2
|
|
with:
|
|
comment: This issue is invalid. Please conform to the issue templates.
|
|
close-reason: not_planned
|