From b68ebda83eaa9139dd05bd0833196749c040b8ab Mon Sep 17 00:00:00 2001 From: Amir Zarrinkafsh Date: Wed, 13 Jan 2021 12:45:15 +1100 Subject: [PATCH] [CI] Fix CI/CD for forked master branches (#1596) An extra filter needed to be removed and pull request branch filtering on Buildkite changed to ensure that forked `master` branches actually receive CI/CD treatments. --- .github/probot.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/probot.js b/.github/probot.js index d177d94e0..61fa3580d 100644 --- a/.github/probot.js +++ b/.github/probot.js @@ -20,10 +20,6 @@ on('pull_request.opened') context => context.payload.pull_request.head.label.slice(0, 9) !== 'authelia:' ) - .filter( - context => - !context.payload.pull_request.head.label.includes(':master') - ) .comment(`Thanks for choosing to contribute @{{ pull_request.user.login }}. We lint all PR's with golangci-lint and eslint, I may add a review to your PR with some suggestions. You are free to apply the changes if you're comfortable, alternatively you are welcome to ask a team member for advice.