This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
mqtt username and password #294
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Close issues that don't conform to the issue templates. | |
# | |
name: Close Non-Conforming Issues | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
autoclose: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Autoclose issues that don't follow the issue templates. | |
uses: roots/issue-closer@v1.1 | |
with: | |
issue-close-message: "@${issue.user.login} - this issue is being automatically closed because it does not follow either the feature request or bug report issue template. The issue templates have been designed to help in the troubleshooting (or feature request) process. Please use them and populate it as completely as possible to streamline troubleshooting or feature request discussions." | |
issue-pattern: "Describe alternatives you've considered|Homebridge-myQ Plugin Version" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |