add custom owner and repo inputs (#78)

* add custom owner and repo inputs

* add test for comment in another repo
This commit is contained in:
ReenigneArcher 2023-04-24 08:14:29 -04:00 committed by GitHub
parent 7ca8398d28
commit 1605572889
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 61 additions and 46 deletions

View file

@ -15,6 +15,14 @@ inputs:
description: "If a message with the same id, this option allow to refresh the position of the message to be the last one posted."
default: "false"
required: true
repo-owner:
description: "The repo owner."
default: "${{ github.repository_owner }}"
required: true
repo-name:
description: "The repo name."
default: "${{ github.event.repository.name }}"
required: true
repo-token:
description: "A GitHub token for API access. Defaults to {{ github.token }}."
default: "${{ github.token }}"