diff --git a/.github/workflows/prcomments.md b/.github/workflows/prcomments.md new file mode 100644 index 00000000..e70f41bc --- /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 00000000..4ca577ba --- /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