fix: skip on fork if pull_request (#158)

cf. #157
This commit is contained in:
Shohei Ueda 2020-03-16 11:48:40 +09:00 committed by GitHub
parent 01fdaf2f02
commit d6bd6182f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,8 @@ export async function run(): Promise<void> {
const inps: Inputs = getInputs(); const inps: Inputs = getInputs();
showInputs(inps); showInputs(inps);
const eventName = context.eventName;
if (eventName === 'pull_request') {
// eslint-disable-next-line @typescript-eslint/no-explicit-any // eslint-disable-next-line @typescript-eslint/no-explicit-any
const isForkRepository = (context.payload as any).repository.fork; const isForkRepository = (context.payload as any).repository.fork;
const isSkipOnFork = await skipOnFork( const isSkipOnFork = await skipOnFork(
@ -26,6 +28,7 @@ export async function run(): Promise<void> {
); );
return; return;
} }
}
const remoteURL = await setTokens(inps); const remoteURL = await setTokens(inps);
core.debug(`[INFO] remoteURL: ${remoteURL}`); core.debug(`[INFO] remoteURL: ${remoteURL}`);