root: fix make gen-changelog#24122
Conversation
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
Pull request overview
This PR fixes make gen-changelog (and the related tag-selection in gen-diff) so it works reliably across different grep implementations and doesn’t fail when there are no cherry-picks to extract (with bash -o pipefail enabled).
Changes:
- Replace non-portable
\dwith portable[0-9]ingrep -Eexpressions. - Prevent the
gen-changelogpipeline from failing whengrepfinds nocherry-pick #<n>matches by making thegrepstage non-fatal.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #24122 +/- ##
==========================================
- Coverage 92.83% 92.79% -0.05%
==========================================
Files 1056 1056
Lines 62751 62751
Branches 424 424
==========================================
- Hits 58256 58228 -28
- Misses 4495 4523 +28
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. |
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-9171756d5aa535dac2a185ff0badc8ba8c0add9d
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)sAfterwards, run the upgrade commands from the latest release notes. Instructions for KubernetesAdd the following block to your authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-9171756d5aa535dac2a185ff0badc8ba8c0add9dAfterwards, run the upgrade commands from the latest release notes. |
Fixes this:
Changes
[0-9]instead of\dpipefail)