Skip to content

Commit 9ed3faf

Browse files
author
Tulga Tsogtgerel
committed
feat: add Augment API credentials as inputs
- Add augment_api_token and augment_api_url as optional inputs - Forward credentials as environment variables to the action - Enable Augment authentication for future functionality
1 parent ec23cde commit 9ed3faf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

assistant/action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ inputs:
1919
description: "The reaction type to add (e.g., eyes, rocket, heart, hooray, confused, +1, -1, laugh)"
2020
required: false
2121
default: "eyes"
22+
augment_api_token:
23+
description: "API token for Augment services. Store as repository secret for security."
24+
required: false
25+
augment_api_url:
26+
description: "URL endpoint for Augment API requests. Store as repository variable."
27+
required: false
2228

2329
outputs:
2430
success:
@@ -46,4 +52,6 @@ runs:
4652
INPUT_EVENT_NAME: ${{ inputs.event_name }}
4753
INPUT_REACTION: ${{ inputs.reaction }}
4854
GITHUB_REPOSITORY: ${{ github.repository }}
55+
AUGMENT_API_TOKEN: ${{ inputs.augment_api_token }}
56+
AUGMENT_API_URL: ${{ inputs.augment_api_url }}
4957

0 commit comments

Comments
 (0)