2020-02-01 17:12:58 +00:00
|
|
|
name: Docker Image CD
|
2020-02-02 11:23:24 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
2020-02-02 21:34:49 +00:00
|
|
|
types: [opened]
|
2020-02-01 17:12:58 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
example_comment_pr:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Commentary
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2020-02-02 21:54:34 +00:00
|
|
|
uses: authelia/checkout@v1
|
2020-02-01 17:12:58 +00:00
|
|
|
|
|
|
|
- name: Comment PR
|
|
|
|
uses: authelia/actions-comment-pull-request@master
|
|
|
|
with:
|
|
|
|
message: '# Containers
|
|
|
|
|
|
|
|
These changes are published as containers for testing at one of the following locations:
|
|
|
|
|
|
|
|
#### Local Branch
|
|
|
|
|
|
|
|
* `docker pull authelia/authelia:${{ github.head_ref }}`
|
|
|
|
|
|
|
|
#### Pull Request
|
|
|
|
|
|
|
|
* `docker pull authelia/authelia:PR${{ github.event.pull_request.number }}`
|
|
|
|
|
|
|
|
|
|
|
|
Pull Requests require approval from an Authelia team member to deploy.'
|
2020-02-02 11:23:24 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|