mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2026-01-16 04:14:30 +07:00
feat: add support for pull_request_target and only-new-issues (#506)
This commit is contained in:
2
dist/post_run/index.js
generated
vendored
2
dist/post_run/index.js
generated
vendored
@@ -89177,7 +89177,7 @@ async function fetchPatch() {
|
||||
return ``;
|
||||
}
|
||||
const ctx = github.context;
|
||||
if (ctx.eventName !== `pull_request`) {
|
||||
if (ctx.eventName !== `pull_request` && ctx.eventName !== `pull_request_target`) {
|
||||
core.info(`Not fetching patch for showing only new issues because it's not a pull request context: event name is ${ctx.eventName}`);
|
||||
return ``;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user