name: 'Create Pull Request'
description: 'Creates a pull request for changes to your repository in the actions workspace'
inputs:
  token:
    description: 'The GitHub authentication token'
    required: true
  commit-message:
    description: 'The message to use when committing changes.'
  author-name:
    description: 'The name of the commit author.'
  author-email:
    description: 'The email address of the commit author.'
  committer-name:
    description: 'The name of the committer.'
  committer-email:
    description: 'The email address of the committer.'
  title:
    description: 'The title of the pull request.'
  body:
    description: 'The body of the pull request.'
  labels:
    description: 'A comma separated list of labels.'
  assignees:
    description: 'A comma separated list of assignees (GitHub usernames).'
  reviewers:
    description: 'A comma separated list of reviewers (GitHub usernames) to request a review from.'
  team-reviewers:
    description: 'A comma separated list of GitHub teams to request a review from.'
  milestone:
    description: 'The number of the milestone to associate this pull request with.'
  project:
    description: 'The name of the project for which a card should be created.'
  project-column:
    description: 'The name of the project column under which a card should be created.'
  branch:
    description: 'The pull request branch name.'
  base:
    description: 'Sets the pull request base branch.'
  branch-suffix:
    description: 'The branch suffix type.'
outputs:
  pr_number:
    description: 'The pull request number'
runs:
  using: 'node12'
  main: 'dist/index.js'
branding:
  icon: 'git-pull-request'  
  color: 'gray-dark'