Skip to content

Commit

Permalink
Merge pull request #8 from daily-co/add-owner-repo
Browse files Browse the repository at this point in the history
Add optional inputs for owner and repo
  • Loading branch information
cbrianhill authored Oct 17, 2024
2 parents fef47dc + 7493b29 commit 7b4f716
Show file tree
Hide file tree
Showing 3 changed files with 229 additions and 193 deletions.
14 changes: 10 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,24 @@ inputs:
required: true
environment:
description: 'Environment to which the deployment was made, e.g. "prod"'
required: true
required: false
github-token:
description: "API token for GitHub REST API"
required: true
required: false
sha:
description: "commit sha to tag"
required: true
required: false
owner:
description: "owner of the repository"
required: false
repo:
description: "name of the repository"
required: false
outputs:
tag:
description: "Final tag applied"
runs:
using: "node16"
using: "node20"
# 'main' below needs to be relative to repo root for testing with 'act'
# For running in GitHub, should be relative to 'action.yml' location
main: "dist/index.js"
Loading

0 comments on commit 7b4f716

Please sign in to comment.