authelia/.github/workflows/comment.yml

32 lines
801 B
YAML
Raw Normal View History

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]
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
- 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 }}