Login broken with recent MyQ API updates #24
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/[email protected] | |
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|Describe The Problem" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |