Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion actions/ddb-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ inputs:
source-path:
description: "Path to the config store root directory"
required: true
api-token:
description: "Optional GitHub token with read access to the action repository (contents/actions)."
required: false
default: ""
Comment thread
timireland marked this conversation as resolved.
target-env:
description: "Target environment label (e.g. draft/int/prod)"
required: true
Expand All @@ -27,7 +31,7 @@ runs:
- name: Resolve and download ddb-publish bundle
shell: bash
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ inputs.api-token || github.token }}
CALLER_REPO: ${{ github.repository }}
ACTION_REPO: ${{ github.action_repository }}
ACTION_REF: ${{ github.action_ref }}
Expand Down
6 changes: 5 additions & 1 deletion actions/eventbridge-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ inputs:
source-path:
description: "Path to the config store root directory"
required: true
api-token:
description: "Optional GitHub token with read access to the action repository (contents/actions)."
required: false
default: ""
Comment thread
timireland marked this conversation as resolved.
event-bus-arn:
description: "ARN of event bus to publish to. Not required if dry-run is specified"
required: false
Expand All @@ -20,7 +24,7 @@ runs:
- name: Resolve and download eventbridge-publish bundle
shell: bash
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ inputs.api-token || github.token }}
CALLER_REPO: ${{ github.repository }}
ACTION_REPO: ${{ github.action_repository }}
ACTION_REF: ${{ github.action_ref }}
Expand Down
Loading