2022-07-30 19:22:27 +00:00
|
|
|
name: 'Comment usage instructions on PRs'
|
|
|
|
description: 'Comment usage instructions on PRs'
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
tag:
|
|
|
|
description: "Image tag to pull"
|
|
|
|
required: true
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- name: Generate config
|
|
|
|
id: ev
|
2022-09-10 11:25:01 +00:00
|
|
|
uses: ./.github/actions/docker-push-variables
|
2022-07-30 19:22:27 +00:00
|
|
|
- name: Find Comment
|
|
|
|
uses: peter-evans/find-comment@v2
|
|
|
|
id: fc
|
|
|
|
with:
|
|
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
|
|
comment-author: 'github-actions[bot]'
|
|
|
|
body-includes: authentik PR Installation instructions
|
|
|
|
- name: Create or update comment
|
|
|
|
uses: peter-evans/create-or-update-comment@v2
|
|
|
|
with:
|
|
|
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
|
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
|
|
body: |
|
|
|
|
authentik PR Installation instructions
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary>Instructions for docker-compose</summary>
|
|
|
|
|
|
|
|
Add the following block to your `.env` file:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
|
|
|
|
AUTHENTIK_TAG=${{ inputs.tag }}
|
|
|
|
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
|
|
|
|
```
|
|
|
|
|
|
|
|
Afterwards, run the upgrade commands from the latest release notes.
|
|
|
|
</details>
|
|
|
|
<details>
|
|
|
|
<summary>Instructions for Kubernetes</summary>
|
|
|
|
|
|
|
|
Add the following block to your `values.yml` file:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
authentik:
|
|
|
|
outposts:
|
|
|
|
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
|
|
|
|
image:
|
|
|
|
repository: ghcr.io/goauthentik/dev-server
|
|
|
|
tag: ${{ inputs.tag }}
|
|
|
|
```
|
|
|
|
|
|
|
|
Afterwards, run the upgrade commands from the latest release notes.
|
|
|
|
</details>
|
|
|
|
edit-mode: replace
|