Update image minimizer
This commit is contained in:
parent
18c3028523
commit
6e83ad5c7b
2 changed files with 3 additions and 3 deletions
4
.github/workflows/image-minimizer.js
vendored
4
.github/workflows/image-minimizer.js
vendored
|
|
@ -18,7 +18,7 @@ module.exports = async ({github, context}) => {
|
|||
initialBody = context.payload.comment.body;
|
||||
} else if (context.eventName == 'issues') {
|
||||
initialBody = context.payload.issue.body;
|
||||
} else if (context.eventName == 'pull_request') {
|
||||
} else if (context.eventName == 'pull_request_target') {
|
||||
initialBody = context.payload.pull_request.body;
|
||||
} else {
|
||||
console.log('Aborting: No body found');
|
||||
|
|
@ -77,7 +77,7 @@ module.exports = async ({github, context}) => {
|
|||
repo: context.repo.repo,
|
||||
body: newBody
|
||||
});
|
||||
} else if (context.eventName == 'pull_request') {
|
||||
} else if (context.eventName == 'pull_request_target') {
|
||||
console.log('Updating pull request', context.payload.pull_request.number);
|
||||
await github.rest.pulls.update({
|
||||
pull_number: context.payload.pull_request.number,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue