From 653078081726bffae9ff2c13ad3f42414a5d5230 Mon Sep 17 00:00:00 2001 From: Amir Zarrinkafsh Date: Fri, 14 Feb 2020 18:50:38 +1100 Subject: [PATCH] [MISC] Utilise Probot for PR commentary (#633) Remove Buildkite trigger for commentary. --- .buildkite/hooks/post-command | 11 ----------- .github/probot.js | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 11 deletions(-) create mode 100644 .github/probot.js diff --git a/.buildkite/hooks/post-command b/.buildkite/hooks/post-command index ded7ef89a..9c9bdd6e7 100755 --- a/.buildkite/hooks/post-command +++ b/.buildkite/hooks/post-command @@ -14,17 +14,6 @@ if [[ $BUILDKITE_LABEL =~ ":docker: Deploy" ]]; then docker logout fi -if [[ $BUILDKITE_LABEL == ":docker: Deploy Manifests" ]] && [[ $BUILDKITE_PULL_REQUEST != "false" ]]; then - if [[ ! $(curl -fs --retry 3 "https://api.github.com/repos/authelia/authelia/issues/${BUILDKITE_PULL_REQUEST}/comments" | jq '.[].user.login') =~ autheliabot ]]; then - echo "--- :github: Add deployment commentary" - if [[ $BUILDKITE_PULL_REQUEST_REPO == "git://github.com/authelia/authelia.git" ]]; then - curl -fs --retry 3 -H "Authorization: token ${GITHUB_COMMENT_TOKEN}" -X "POST" -d "{\"body\": \"# Docker Container\nThese changes are published for testing at the following location:\n* \`docker pull authelia/authelia:${BUILDKITE_BRANCH}\`\"}" "https://api.github.com/repos/authelia/authelia/issues/${BUILDKITE_PULL_REQUEST}/comments" - else - curl -fs --retry 3 -H "Authorization: token ${GITHUB_COMMENT_TOKEN}" -X "POST" -d "{\"body\": \"# Docker Container\nThese changes are published for testing at the following location:\n* \`docker pull authelia/authelia:PR${BUILDKITE_PULL_REQUEST}\`\"}" "https://api.github.com/repos/authelia/authelia/issues/${BUILDKITE_PULL_REQUEST}/comments" - fi - fi -fi - if [[ $BUILDKITE_LABEL == ":docker: Deploy Manifests" ]] && [[ $BUILDKITE_BRANCH == "master" ]] && [[ $BUILDKITE_PULL_REQUEST == "false" ]]; then echo "--- :docker: Removing tags for deleted branches" anontoken=$(curl -fsL --retry 3 'https://auth.docker.io/token?service=registry.docker.io&scope=repository:authelia/authelia:pull' | jq -r .token) diff --git a/.github/probot.js b/.github/probot.js new file mode 100644 index 000000000..091e82e2a --- /dev/null +++ b/.github/probot.js @@ -0,0 +1,19 @@ +// PR commentary for Authelia branch based contributions +on('pull_request.opened') + .filter( + context => + context.payload.pull_request.head.label.slice(0, 9) === 'authelia:' + ) + .comment(`# Docker Container +These changes are published for testing at the following location: +* \`docker pull authelia/authelia:{{ pull_request.head.ref }}\``) + +// PR commentary for third party based contributions +on('pull_request.opened') + .filter( + context => + context.payload.pull_request.head.label.slice(0, 9) !== 'authelia:' + ) + .comment(`# Docker Container +These changes once approved by a team member will be published for testing at the following location: +* \`docker pull authelia/authelia:PR{{ pull_request.number }}\``) \ No newline at end of file