vtcaregorodtcev / delete-issue

Github action allowing you to delete issues from the repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Github action allowing you to delete issues from the repo

Usage

name: delete opened issue
on:
  issues:
    types: [opened]
jobs:
  delete-issue:
    if: github.event.issue.user.login == 'not_your_name'
    runs-on: ubuntu-latest
    steps:
      - uses: vtcaregorodtcev/delete-issue@main
        with:
          github_token: ${{ secrets.PERSONAL_TOKEN }}
          issue_node_id: ${{ github.event.issue.node_id }}

About

Github action allowing you to delete issues from the repo

License:MIT License


Languages

Language:TypeScript 79.6%Language:JavaScript 20.4%