mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-14 12:31:14 +00:00
Add ability to reference other repos
This commit is contained in:
parent
3b79ea4178
commit
26fcd4ab88
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ async function run() {
|
|||
}
|
||||
|
||||
try {
|
||||
const repo = github.context.repo;
|
||||
const repo = core.getInput("repo", { required: false }) || github.context.repo;
|
||||
const message = core.getInput("message", { required: false });
|
||||
const path = core.getInput("path", { required: false });
|
||||
const header = core.getInput("header", { required: false }) || "";
|
||||
|
|
|
|||
Loading…
Reference in a new issue