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 9ae1f67 commit be7d641Copy full SHA for be7d641
index.js
@@ -293,6 +293,8 @@ handler.on('push', async function (event) {
293
console.log('Received a push event for %s to %s',
294
event.payload.repository.name,
295
event.payload.ref)
296
+ // Ignore documentaion branches
297
+ if (event.payload.ref.endsWith('documentation')) { return; }
298
try { // Run tests for head commit only
299
let head_commit = event.payload.head_commit.id;
300
// Post a 'pending' status while we do our tests
0 commit comments