Skip to content
arrow-down

GitHub Action

Create Issue Action

v1.2 Latest version

Create Issue Action

arrow-down

Create Issue Action

This action creates an issue based on user inputs

Installation

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

              

- name: Create Issue Action

uses: nashmaniac/[email protected]

Learn more about this action in nashmaniac/create-issue-action

Choose a version

Create Issue Action

This will let you create an issue based on user input from your GitHub Workflow

Inputs

title

Required - Title of the issue

token

Required - Token of user that will create issue

assignees

Not Required - Assignes of the issue

labels

Not Required - Labels of the issue

body

Not Required - Body of the issue

Usages

- uses: nashmaniac/[email protected]
  name: Create Issue Action
  with:
    title: Build Failed
    token: ${{secrets.GITHUB_TOKEN}}
    assignees: ${{github.actor}}
    labels: worflow-failed
    body: Workflow failed for commit ${{github.sha}}