[Bug]: Failed to start bridge due to error: AggregateError: Behaviors have errors since Alpha 58 #1180
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
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 }} |