Skip to content

Commit cf00770

Browse files
chore: switch branch from master to main (#343)
Moving the main branch from `master` to `main` as well as updating some project metadata (repo URL and unused imports in `.projenrc` Signed-off-by: campionfellin campionfellin@gmail.com
1 parent 86a7ac7 commit cf00770

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Release
44
on:
55
push:
66
branches:
7-
- master
7+
- main
88
workflow_dispatch: {}
99
jobs:
1010
build:

.projen/tasks.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@
9999
"release": {
100100
"name": "release",
101101
"category": "20.release",
102-
"description": "Bumps version & push to master",
102+
"description": "Bumps version & push to main",
103103
"steps": [
104104
{
105105
"spawn": "bump"
106106
},
107107
{
108-
"exec": "git push --follow-tags origin master"
108+
"exec": "git push --follow-tags origin main"
109109
}
110110
],
111111
"condition": "! git log --oneline -1 | grep -q \"chore(release):\""

.projenrc.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
const { TypeScriptProject, Semver, Jest, Eslint } = require('projen');
1+
const { TypeScriptProject } = require('projen');
22

33
const project = new TypeScriptProject({
44
name: 'jsii-srcmak',
55
description: 'generate source code in multiple languages from typescript',
6-
repository: 'https://github.com/eladb/jsii-srcmak.git',
6+
repository: 'https://github.com/aws/jsii-srcmak.git',
77
authorName: 'Elad Ben-Israel',
88
authorEmail: 'benisrae@amazon.com',
99
stability: 'experimental',
10-
defaultReleaseBranch: 'master',
10+
defaultReleaseBranch: 'main',
1111

1212
bin: {
1313
'jsii-srcmak': 'bin/jsii-srcmak',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "generate source code in multiple languages from typescript",
44
"repository": {
55
"type": "git",
6-
"url": "https://github.com/eladb/jsii-srcmak.git"
6+
"url": "https://github.com/aws/jsii-srcmak.git"
77
},
88
"bin": {
99
"jsii-srcmak": "bin/jsii-srcmak"

0 commit comments

Comments
 (0)