Skip to content

Security group and Security group rules validation #24

Security group and Security group rules validation

Security group and Security group rules validation #24

Workflow file for this run

name: Label issue
on:
issue_comment:
types:
- created
jobs:
clear_needinfo:
name: Clear needinfo
if: ${{ github.event.issue.user.login }} == ${{ github.event.comment.user.login }}
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --remove-label "needinfo"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}