Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 525 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 525 Bytes

Github Issue Action

Actions creates a new github issue

Inputs

token

required github token

title

required title of the issue

body

body of the issue

assignees

assignee of the issue

Output

issue

Object containing issue payload

Example Usage

- uses: rishabhgupta/git-action-issue@v2
  id: Issue
  with:
      token: ${{ secrets.GITHUB_TOKEN }}
      title: Title
      body: body
      assignees: 'rishabhgupta'
- run: |
    echo ${{ steps.issue.outputs.issue }}