We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ca94d1 commit fce736eCopy full SHA for fce736e
action.js
@@ -17,7 +17,7 @@ const failed = massage => { throw message; };
17
const event_name = github.context.eventName;
18
const octokit = github.getOctokit(token, { required: true });
19
20
- 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.`;
21
22
const base = getBase(event_name)(github.context.payload);
23
const head = getHead(event_name)(github.context.payload);
0 commit comments