Skip to content

[Bug]: HA Addons Error2024.12.4: https://github.com/t0bst4r/home-assistant-matter-hub.git is not a valid add-on repository #1055

[Bug]: HA Addons Error2024.12.4: https://github.com/t0bst4r/home-assistant-matter-hub.git is not a valid add-on repository

[Bug]: HA Addons Error2024.12.4: https://github.com/t0bst4r/home-assistant-matter-hub.git is not a valid add-on repository #1055

name: Manage Issues
on:
issue_comment:
types: [created]
jobs:
remove-waiting-label:
if: (!github.event.issue.pull_request) && (github.event.action == 'created')
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Remove "waiting for feedback" label
if: github.event.sender.login != 't0bst4r'
run: gh issue edit ${{ github.event.issue.number }} --remove-label "waiting for feedback"
env:
GH_TOKEN: ${{ github.token }}