Skip to content

Remove Ethertype from the security group example #26

Remove Ethertype from the security group example

Remove Ethertype from the security group example #26

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