Skip to content

Commit 2856264

Browse files
authored
Merge pull request #51 from devakone/develop
Release: develop → main
2 parents c918722 + 08c4f18 commit 2856264

5 files changed

Lines changed: 27 additions & 3 deletions

File tree

.github/workflows/release-pr.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,28 @@ jobs:
1919

2020
- name: Open or update release PR
2121
env:
22-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
GH_TOKEN: ${{ secrets.RELEASE_PR_TOKEN }}
23+
DEFAULT_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2324
PR_TITLE: "Release: develop → main"
2425
PR_TEMPLATE: .github/PULL_REQUEST_TEMPLATE.md
2526
run: |
2627
set -euo pipefail
2728
29+
export GH_TOKEN="${GH_TOKEN:-$DEFAULT_GH_TOKEN}"
30+
2831
if [ ! -f "$PR_TEMPLATE" ]; then
2932
echo "Pull request template not found at $PR_TEMPLATE"
3033
exit 1
3134
fi
3235
3336
git fetch origin main --prune
3437
38+
COMMIT_COUNT="$(git rev-list --count origin/main..HEAD)"
39+
if [ "$COMMIT_COUNT" -eq 0 ]; then
40+
echo "No commits to merge from develop into main. Skipping release PR sync."
41+
exit 0
42+
fi
43+
3544
BODY_FILE="$(mktemp)"
3645
export BODY_FILE
3746
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
".": "0.1.0-alpha.18",
2+
".": "0.1.0-alpha.19",
33
"apps/web": "0.1.0-alpha.18",
44
"apps/worker": "0.1.0-alpha.3"
55
}

CHANGELOG-DEVELOP.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.0-alpha.19](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.1.0-alpha.18...vibe-coding-profiler-v0.1.0-alpha.19) (2026-02-12)
4+
5+
6+
### Bug Fixes
7+
8+
* **ci:** stabilize release PR workflow create path ([be28004](https://github.com/devakone/vibe-coding-profiler/commit/be2800431d7e3469c65194724cea561872faa9c7))
9+
310
## [0.1.0-alpha.18](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.1.0-alpha.17...vibe-coding-profiler-v0.1.0-alpha.18) (2026-02-12)
411

512

apps/web/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
1212
"test:watch": "vitest"
1313
},
1414
"dependencies": {
15-
"@sentry/nextjs": "^10.38.0",
15+
"@plausible-analytics/tracker": "^0.4.4",
1616
"@radix-ui/react-dropdown-menu": "^2.1.16",
1717
"@radix-ui/react-popover": "^1.1.15",
1818
"@radix-ui/react-toast": "^1.2.15",
1919
"@radix-ui/react-tooltip": "^1.2.8",
20+
"@sentry/nextjs": "^10.38.0",
2021
"@supabase/ssr": "^0.5.2",
2122
"@supabase/supabase-js": "^2.47.14",
2223
"@vercel/og": "^0.8.6",

package-lock.json

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)