Skip to content

nashmaniac/create-issue-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/create-issue-action@v1.2
  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}}