Skip to content

Commit 27b9985

Browse files
authored
chore: update repository links (#56)
1 parent b391a68 commit 27b9985

File tree

7 files changed

+557
-557
lines changed

7 files changed

+557
-557
lines changed

.changeset/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"changelog": [
44
"@changesets/changelog-github",
55
{
6-
"repo": "rx-ts/changesets-gitlab"
6+
"repo": "un-ts/changesets-gitlab"
77
}
88
],
99
"commit": false,
1010
"linked": [],
1111
"access": "restricted",
1212
"baseBranch": "main",
13-
"updateInternalDependencies": "minor",
13+
"updateInternalDependencies": "patch",
1414
"ignore": []
1515
}

.changeset/few-melons-heal.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"changesets-gitlab": patch
3+
---
4+
5+
chore: update repository links

.github/workflows/pkg-size.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,6 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v3
1616

17-
- name: Setup pnpm
18-
uses: pnpm/action-setup@v2
19-
with:
20-
version: latest
21-
22-
- name: Setup Node.js
23-
uses: actions/setup-node@v3
24-
with:
25-
node-version: 16
26-
cache: pnpm
27-
2817
- name: Package Size Report
2918
uses: pkg-size/action@v1
3019
env:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# changesets-gitlab
22

3-
[![GitHub Actions](https://github.com/rx-ts/changesets-gitlab/workflows/CI/badge.svg)](https://github.com/rx-ts/changesets-gitlab/actions/workflows/ci.yml)
3+
[![GitHub Actions](https://github.com/un-ts/changesets-gitlab/workflows/CI/badge.svg)](https://github.com/un-ts/changesets-gitlab/actions/workflows/ci.yml)
44
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/un-ts/changesets-gitlab.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/un-ts/changesets-gitlab/context:javascript)
55
[![npm](https://img.shields.io/npm/v/changesets-gitlab.svg)](https://www.npmjs.com/package/changesets-gitlab)
6-
[![GitHub Release](https://img.shields.io/github/release/rx-ts/changesets-gitlab)](https://github.com/rx-ts/changesets-gitlab/releases)
6+
[![GitHub Release](https://img.shields.io/github/release/un-ts/changesets-gitlab)](https://github.com/un-ts/changesets-gitlab/releases)
77

88
[![Conventional Commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
99
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com)

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@
7777
"@changesets/parse": "^0.3.13",
7878
"@changesets/pre": "^1.0.11",
7979
"@changesets/read": "^0.5.5",
80-
"@gitbeaker/node": "^35.6.0",
80+
"@gitbeaker/node": "^35.7.0",
8181
"@manypkg/get-packages": "^1.1.3",
82-
"@sentry/node": "^7.5.1",
82+
"@sentry/node": "^7.6.0",
8383
"commander": "^9.3.0",
8484
"dotenv": "^16.0.1",
8585
"fs-extra": "^10.1.0",
@@ -96,17 +96,17 @@
9696
"unified": "^10.1.2"
9797
},
9898
"devDependencies": {
99-
"@1stg/lib-config": "^8.0.0",
99+
"@1stg/lib-config": "^8.1.2",
100100
"@changesets/changelog-github": "^0.4.5",
101-
"@changesets/cli": "^2.23.1",
101+
"@changesets/cli": "^2.23.2",
102102
"@types/global-agent": "^2.1.1",
103-
"@types/jest": "^28.1.4",
103+
"@types/jest": "^28.1.5",
104104
"@types/js-yaml": "^4.0.5",
105105
"@types/micromatch": "^4.0.2",
106-
"jest": "^28.1.2",
107-
"ts-jest": "^28.0.5",
108-
"ts-node": "^10.8.2",
109-
"type-coverage": "^2.21.2",
106+
"jest": "^28.1.3",
107+
"ts-jest": "^28.0.6",
108+
"ts-node": "^10.9.1",
109+
"type-coverage": "^2.22.0",
110110
"typescript": "^4.7.4",
111111
"yarn-deduplicate": "^5.0.0"
112112
},

src/run.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,10 @@ export async function runVersion({
224224
const changedPackages = await getChangedPackages(cwd, versionsByDirectory)
225225

226226
const mrBodyPromise = (async () =>
227-
`This MR was opened by the [changesets-gitlab](https://github.com/rx-ts/changesets-gitlab) GitLab CI script. When you're ready to do a release, you can merge this and ${
227+
`This MR was opened by the [changesets-gitlab](https://github.com/un-ts/changesets-gitlab) GitLab CI script. When you're ready to do a release, you can merge this and ${
228228
hasPublishScript
229229
? 'the packages will be published to npm automatically'
230-
: 'publish to npm yourself or [setup this action to publish automatically](https://github.com/rx-ts/changesets-gitlab#with-publishing)'
230+
: 'publish to npm yourself or [setup this action to publish automatically](https://github.com/un-ts/changesets-gitlab#with-publishing)'
231231
}. If you're not ready to do a release yet, that's fine, whenever you add more changesets to ${branch}, this MR will be updated.
232232
${
233233
preState

0 commit comments

Comments
 (0)