Skip to content

Commit

Permalink
Update release-pipeline action.yml with optional inputs for GitHub Ap…
Browse files Browse the repository at this point in the history
…p authentication (#293)
  • Loading branch information
bhavyaus authored Jul 30, 2024
1 parent e296550 commit a4a3532
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion release-pipeline/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,33 @@ description: Label issues as the progress through the release pipeline
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
payload:
description: Payload object for the github action
required: false
notYetReleasedLabel:
description: Label for issues that should be included in the release pipeline action, but are not yet released.
required: true
Expand Down

0 comments on commit a4a3532

Please sign in to comment.