Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
check-square

GitHub Action

Nissuer

1.7.2

Nissuer

check-square

Nissuer

A GitHub Action for tried and tired maintainers

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Nissuer

uses: balazsorban44/[email protected]

Learn more about this action in balazsorban44/nissuer

Choose a version

nissuer

Make issues non-issues quicker

A GitHub Action for tried and tired maintainers. This action is meant to help maintainers of open-source projects by automating some of the more tedious/repetitive tasks that come with the job.

Features

  • Autoclose/comment/label/lock issues that do not have a valid reproduction URL
  • Auto comment on issues based on labels added by a maintainer
  • Hide "+1", "same issue", etc. comments on issues (partially based on Refined GitHub)
  • Autolabel issues based on user selection
  • Notify on potential publicly disclosed vulnerabilities

Usage

Add a workflow (eg. .github/workflows/nissuer.yml):

name: Nissuer test

on:
  issues:
    types: [opened, labeled]
  issue_comment:
    types: [created]

permissions:
  issues: write

env:
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
  issue-validator:
    runs-on: ubuntu-latest
    steps:
      - name: Nissuer
        uses: balazsorban44/[email protected]

Add a comment file (by default we look for .github/invalid-reproduction.md):

NOTE: Developers are coming to your project with all sorts of backgrounds/skill levels or understanding of the open-source world. Show empathy while using this action. 💚 We recommend adding comments that not only dismiss unhelpful issues/comments, but educate the user on how to be more helpful in the future.

Thanks for opening an issue!

Unfortunately, we can't help you without a reproduction URL.

It was closed automatically, but feel free to reopen it once you have a reproduction URL.

A good example of a comment is in the Next.js repository.