Skip to content

Commit 4da5d03

Browse files
authoredMar 12, 2025··
Merge pull request #393 from sakit0/chore/add-changesets
Add changesets
2 parents b34a201 + 24c3c6a commit 4da5d03

File tree

6 files changed

+524
-139
lines changed

6 files changed

+524
-139
lines changed
 

‎.changeset/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

‎.changeset/config.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": ["giselle-sdk", "@giselle-sdk/**", "@giselle-internal/**"]
11+
}

‎.github/workflows/release.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Changeset Check
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
name: Changeset Check
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Setup Node.js
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 22.x
22+
registry-url: 'https://registry.npmjs.org'
23+
24+
- name: Setup PNPM
25+
uses: pnpm/action-setup@v4
26+
27+
- name: Install Dependencies
28+
run: pnpm install
29+
30+
- name: Create Release Pull Request
31+
uses: changesets/action@v1
32+
with:
33+
version: pnpm version
34+
title: 'package release'
35+
commit: 'package release'
36+
createGithubReleases: true
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎config/dependency_decisions.yml

+7
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,10 @@
101101
:why: Compatible with Apache-2.0 license. See https://openfontlicense.org/open-font-license-official-text/
102102
:versions: []
103103
:when: 2025-02-27 06:29:24.670306000 Z
104+
- - :approve
105+
- spawndamnit
106+
- :who: sakito
107+
:why: See https://github.com/jamiebuilds/spawndamnit/pull/11
108+
:versions:
109+
- 3.0.1
110+
:when: 2025-03-10 08:02:40.655579000 Z

‎package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@
1010
"format": "turbo format",
1111
"clean": "turbo clean",
1212
"dev": "turbo dev --filter playground",
13-
"dev:studio.giselles.ai": "turbo dev --filter studio.giselles.ai"
13+
"dev:studio.giselles.ai": "turbo dev --filter studio.giselles.ai",
14+
"changeset": "changeset",
15+
"version": "changeset version"
1416
},
1517
"devDependencies": {
1618
"@biomejs/biome": "catalog:",
19+
"@changesets/cli": "^2.28.1",
1720
"@turbo/gen": "catalog:",
1821
"turbo": "2.4.2",
1922
"typescript": "catalog:"

‎pnpm-lock.yaml

+456-138
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.