Skip to content

[Connection Issue]: #1084

[Connection Issue]:

[Connection Issue]: #1084

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 }}