Skip to content

Autocloser

Autocloser #1566

Workflow file for this run

name: Autocloser
on:
issues:
types: [opened]
jobs:
autoclose:
runs-on: ubuntu-latest
steps:
- name: Autoclose issues that did not follow issue template
uses: roots/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the [Bug Report](https://github.com/JurajNyiri/HomeAssistant-Tapo-Control/issues/new?assignees=&labels=bug&template=bug_report.yml) or [Feature Request](https://github.com/JurajNyiri/HomeAssistant-Tapo-Control/issues/new?assignees=JurajNyiri&labels=enhancement&template=feature_request.md&title=Feature+Request%3A) template."
issue-pattern: ".*Camera has all attributes filled out in developer tools.*|.*Is your feature request related to a problem.*"
autoclose-cloud-token:
runs-on: ubuntu-latest
steps:
- name: Check issue description for invalid string
id: check_body
run: |
if [[ "${{ github.event.issue.body }}" == *"cloud password"* ]]; then
echo "contains_invalid_string=true" >> $GITHUB_ENV
else
echo "contains_invalid_string=false" >> $GITHUB_ENV
fi
- name: Close Issue - comment
if: env.contains_invalid_string == 'true'
uses: peter-evans/close-issue@v3
with:
comment: |
This issue was automatically closed because it has a solution under [FAQ](https://github.com/JurajNyiri/HomeAssistant-Tapo-Control?tab=readme-ov-file#troubleshooting--faq) and is a duplicate.
See `I see error 'Invalid cloud password.'`.
Note: This action has been done automatically, owner is notified about this issue and if there is a need he will reopen.
labels: |
Duplicate
autoclose-onvif-rejection:
runs-on: ubuntu-latest
steps:
- name: Check issue description for invalid string
id: check_body
run: |
if [[ "${{ github.event.issue.body }}" == *"sure you have created your 3rd party account via Tapo app"* ]]; then
echo "contains_invalid_string=true" >> $GITHUB_ENV
else
echo "contains_invalid_string=false" >> $GITHUB_ENV
fi
- name: Close Issue - comment
if: env.contains_invalid_string == 'true'
uses: peter-evans/close-issue@v3
with:
comment: |
This issue was automatically closed because it has a solution under [FAQ](https://github.com/JurajNyiri/HomeAssistant-Tapo-Control?tab=readme-ov-file#troubleshooting--faq) and is a duplicate.
See `I see error 'Invalid authentication data. Make sure you have created your 3rd party account via Tapo app. You can also test if these credentials work via rtsp stream, for example VLC using link rtsp://username:password@IP Address:554/stream1' when I enter correct password`.
Note: This action has been done automatically, owner is notified about this issue and if there is a need he will reopen.
labels: |
Duplicate