Skip to content

Commit

Permalink
Update action.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mudlabs committed Oct 17, 2020
1 parent 0ca94d1 commit fce736e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const failed = massage => { throw message; };
const event_name = github.context.eventName;
const octokit = github.getOctokit(token, { required: true });

if (unsupportedEvent(event_name)) throw `This event (${event_name}) is unsupported. Diffy only supports PUSH and PR events.`;
if (unsupportedEvent(event_name)) throw `This event (${event_name}) is unsupported. Simple Diff only supports PUSH and PR events.`;

const base = getBase(event_name)(github.context.payload);
const head = getHead(event_name)(github.context.payload);
Expand Down

0 comments on commit fce736e

Please sign in to comment.