-
Notifications
You must be signed in to change notification settings - Fork 0
Release (2026-03-20) #110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Release (2026-03-20) #110
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
f7749a6
chore: expose enums to api
dan2k3k4 2bb69f2
chore: improve scramble
dan2k3k4 13a6d74
chore: refactor
dan2k3k4 6d449e9
chore: fix scramble
dan2k3k4 19f2358
chore: grammar
dan2k3k4 0201553
chore: add note about dev workflow
dan2k3k4 7142c2b
chore: expose enums to api (#104)
dan2k3k4 e9fdc00
chore: add github actions: protect prod, release trigger
dan2k3k4 dbde5c6
chore: output lagoon-project-name and claim-script-output
dan2k3k4 72cd9d8
chore: bump deps
dan2k3k4 89c73f3
chore: bump scramble
dan2k3k4 5627a30
chore: allow name to be passed in
dan2k3k4 0b83a0b
chore: bump to laravel 12
dan2k3k4 ffba5a8
chore: inject ai key info via api/instance create
dan2k3k4 127d6fa
chore: default to empty string
dan2k3k4 46bce27
chore: fix
dan2k3k4 1d2a77b
chore: bump deps
dan2k3k4 666abec
chore: handle null as empty
dan2k3k4 d376b49
chore: update doc
dan2k3k4 022fb38
Initial plan
Copilot 698760d
fix: use filled() instead of has() for secret check to handle explici…
Copilot 9845150
fix: use `filled()` instead of `has()` for secret presence check (#108)
dan2k3k4 68cd48d
chore: inject ai key info via api/instance create (#107)
dan2k3k4 2bff627
chore: add github actions: protect prod, release trigger (#109)
dan2k3k4 6de9739
chore: fix
dan2k3k4 b11f0d4
chore: fix csrf token
dan2k3k4 abd11a4
chore: fix csrf
dan2k3k4 9cc3da6
chore: fix cookie
dan2k3k4 4915982
chore: possible fix
dan2k3k4 754416b
chore: improve app instance table output
dan2k3k4 3f250e4
chore: fix for url with equals
dan2k3k4 47bc3fa
chore: run pint
dan2k3k4 302fca2
bump deps
dan2k3k4 d9ce417
chore: scope permissions
dan2k3k4 f5a8e15
chore: bump deps
dan2k3k4 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| name: "Protect Prod Branch" | ||
| on: | ||
| pull_request: | ||
| branches: [ "prod" ] | ||
|
|
||
| permissions: {} | ||
|
|
||
| jobs: | ||
| check-source: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Validate Source Branch | ||
| run: | | ||
| SRC="${{ github.head_ref }}" | ||
| if [[ "$SRC" == "dev" || "$SRC" == hotfix* ]]; then | ||
| echo "Source branch $SRC is valid." | ||
| exit 0 | ||
| else | ||
| echo "Error: Only 'dev' or 'hotfix*' branches can target 'prod'." | ||
| exit 1 | ||
| fi | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| name: "Trigger Release PR" | ||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| create-release: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
dan2k3k4 marked this conversation as resolved.
|
||
| - name: Open PR from Dev to Prod | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| run: | | ||
| # Pulls unique commits in dev not yet in prod | ||
| LOG=$(git log origin/prod..origin/dev --oneline --no-merges) | ||
| DATE=$(date +'%Y-%m-%d') | ||
|
|
||
| gh pr create \ | ||
| --base prod \ | ||
| --head dev \ | ||
| --title "Release ($DATE)" \ | ||
| --body "### Changes in this release: | ||
| $LOG" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.