Skip to content

Commit

Permalink
Update author-verified action.yml files with optional inputs for even…
Browse files Browse the repository at this point in the history
…t and action (#292)
  • Loading branch information
bhavyaus authored Jul 30, 2024
1 parent 58b7b93 commit e296550
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion author-verified/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,30 @@ description: Allow issue authors to verify their own issues by pinging them when
inputs:
token:
description: GitHub token with issue, comment, and label read/write permissions
default: ${{ github.token }}
app_id:
description: GitHub App ID
required: false
app_installation_id:
description: GitHub App Installation ID
required: false
app_private_key:
description: GitHub App Private Key
required: false
owner:
description: Repository owner
required: false
repo:
description: Repository name
required: false
issue_number:
description: Issue number
required: false
event:
description: Event name for a triggered action. Otherwise, this is obtained from the github context.
required: false
action:
description: Action name for a triggered action. Otherwise, this is obtained from the github context.
required: false
requestVerificationComment:
description: Comment to add whenn asking authors to verify the issue. ${commit} and ${author} will be substituted
required: true
Expand Down

0 comments on commit e296550

Please sign in to comment.