[MISC] Add github comment workflow for automated builds (#605)
parent
e303ae0083
commit
05592cbe2d
|
@ -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.
|
|
@ -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
|
Loading…
Reference in New Issue