{{function_node __wrapped__DecodeWav_device_/job:localhost/replica:0/task:0/device:CPU:0}} Bad format chunk size for WAV: Expected 16 or 18, but got40 [Op:DecodeWav] name: #422
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: Remove 'awaiting response' label | |
on: | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
remove-awaiting-response-label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove 'awaiting response' label and maybe reopen | |
if: contains(github.event.issue.labels.*.name, 'awaiting response') | |
run: | | |
gh issue edit $ISSUE --remove-label 'awaiting response' | |
gh issue reopen $ISSUE | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE: ${{ github.event.issue.html_url }} |