Skip to content

Commit 1a44301

Browse files
committed
test: simulate release with changesets
1 parent 666c9dc commit 1a44301

File tree

30,770 files changed

+5162081
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

30,770 files changed

+5162081
-59
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{
6+
"repo": "scaleway/scaleway-sdk-js"
7+
}
8+
],
9+
"commit": false,
10+
"fixed": [],
11+
"linked": [],
12+
"access": "public",
13+
"baseBranch": "main",
14+
"updateInternalDependencies": "patch",
15+
"ignore": []
16+
}

.changeset/large-students-hide.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@scaleway/sdk': major
3+
'@scaleway/configuration-loader': major
4+
---
5+
6+
test

.changeset/violet-snakes-lay.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@scaleway/sdk': major
3+
'@scaleway/configuration-loader': major
4+
---
5+
6+
test
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Generate changeset for Renovate
2+
3+
on:
4+
pull_request_target:
5+
paths:
6+
- '.github/workflows/changesets-renovate.yml'
7+
- '**/pnpm-lock.yaml'
8+
- '**/package.json'
9+
10+
jobs:
11+
generate-changeset:
12+
runs-on: ubuntu-latest
13+
if: github.actor == 'renovate[bot]'
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
18+
- name: Git Identity
19+
run: |
20+
git config --global user.name 'Scaleway Bot'
21+
git config --global user.email '[email protected]'
22+
23+
- uses: pnpm/[email protected]
24+
25+
- name: Run Changesets
26+
run: pnpm dlx @changesets/cli add

.github/workflows/deploy-package.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- test-changesets
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
14+
- name: Git Identity
15+
run: |
16+
git config --global user.name 'Scaleway Bot'
17+
git config --global user.email '[email protected]'
18+
19+
- uses: pnpm/[email protected]
20+
- name: Use Node.js
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: 20
24+
cache: 'pnpm'
25+
26+
- run: pnpm install
27+
28+
- name: Create Release Pull Request or Publish to npm
29+
id: changesets
30+
uses: changesets/action@v1
31+
with:
32+
commit: 'chore: release'
33+
title: 'chore: release'
34+
#publish: pnpm release
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.idea/.gitignore

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

.idea/codeStyles/Project.xml

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

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 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)