mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-16 05:06:31 +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 {
|
try {
|
||||||
const repo = github.context.repo;
|
const repo = core.getInput("repo", { required: false }) || github.context.repo;
|
||||||
const message = core.getInput("message", { required: false });
|
const message = core.getInput("message", { required: false });
|
||||||
const path = core.getInput("path", { required: false });
|
const path = core.getInput("path", { required: false });
|
||||||
const header = core.getInput("header", { required: false }) || "";
|
const header = core.getInput("header", { required: false }) || "";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue