From 05592cbe2d278d3f8efa5ae34df210084387ab7a Mon Sep 17 00:00:00 2001 From: Amir Zarrinkafsh Date: Sat, 1 Feb 2020 22:56:11 +1100 Subject: [PATCH] [MISC] Add github comment workflow for automated builds (#605) --- .github/workflows/prcomments.md | 11 +++++++++++ .github/workflows/prcomments.yml | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/prcomments.md create mode 100644 .github/workflows/prcomments.yml diff --git a/.github/workflows/prcomments.md b/.github/workflows/prcomments.md new file mode 100644 index 000000000..e70f41bc2 --- /dev/null +++ b/.github/workflows/prcomments.md @@ -0,0 +1,11 @@ +# Containers + +These changes can be tested with Docker at the following location: + +#### Local Branch +* docker pull authelia/authelia:{branch_name} + +#### Public Repo PR +* docker pull authelia/authelia:PR{pull_id} + +Public Repo PR's will need to be approved by team member prior to it being deployed in the pipeline. \ No newline at end of file diff --git a/.github/workflows/prcomments.yml b/.github/workflows/prcomments.yml new file mode 100644 index 000000000..4ca577ba4 --- /dev/null +++ b/.github/workflows/prcomments.yml @@ -0,0 +1,13 @@ +name: Add container pull commands +on: pull_request +jobs: + comment: + name: Add container pull commands + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: harupy/comment-on-pr@master + env: + GITHUB_TOKEN: ${{ secrets.COMMENT_ON_PR_GH_TOKEN }} + with: + filename: prcomments.md \ No newline at end of file