Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Plan Release
name: Plan Stable Release
on:
workflow_dispatch:
push:
branches:
- main
- master
- release
pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
types:
- labeled
Expand All @@ -25,7 +24,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 2
ref: 'main'
ref: 'release'
# This will only cause the `is-this-a-release` job to have a "command" of `release`
# when the .release-plan.json file was changed on the last commit.
- id: check-release
Expand All @@ -50,7 +49,7 @@ jobs:
# github-changelog can discover what's changed since the last release
with:
fetch-depth: 0
ref: 'main'
ref: 'release'
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -85,7 +84,7 @@ jobs:
commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
labels: "internal"
branch: release-preview
title: Prepare Release ${{ steps.explanation.outputs.new_version }}
title: Prepare Stable Release ${{ steps.explanation.outputs.new_version }}
body: |
This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍

Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"concurrently": "^9.2.1",
"decorator-transforms": "^2.3.0",
"ember-auto-import": "^2.10.0",
"ember-cli": "~6.6.0",
"ember-cli": "^6.6.0",
"ember-cli-babel": "^8.2.0",
"ember-cli-deprecation-workflow": "^3.4.0<% if (emberData) { %>",
"ember-data": "~5.6.0<% } %>",
Expand All @@ -80,7 +80,7 @@
"ember-page-title": "^9.0.3",
"ember-qunit": "^9.0.3",
"ember-resolver": "^13.1.1",
"ember-source": "~6.6.0",
"ember-source": "~6.7.0",
"ember-template-lint": "^7.9.3<% if (welcome) { %>",
"ember-welcome-page": "^7.0.2<% } %>",
"eslint": "^9.34.0",
Expand All @@ -98,7 +98,7 @@
"testem": "^3.16.0",
"tracked-built-ins": "^4.0.0<% if (typescript) { %>",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0<% } %>",
"typescript-eslint": "^8.42.0<% } %>",
"vite": "^6.3.5"
},
"engines": {
Expand Down