Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 6a97dac

Browse files
committed
Updates for branch rename master -> main
1 parent 8d49e55 commit 6a97dac

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

.github/workflows/check-dist.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
push:
1010
branches:
1111
- main
12-
- master
1312
paths-ignore:
1413
- '**.md'
1514
pull_request:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: # rebuild any PRs and main branch changes
33
pull_request:
44
push:
55
branches:
6-
- master
6+
- main
77
- 'releases/*'
88

99
jobs:

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [ master ]
8+
branches: [ main ]
99
schedule:
1010
- cron: '24 4 * * 6'
1111

RELEASING.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
# Release
22

3-
* starting on `master`
3+
* starting on `main`
44
* `npm install`
55
* `npm run all`
6-
* `git checkout releases/v1`
7-
* `git merge master`
8-
* `npm prune --production`
9-
* `git add -f node_modules`
10-
* if changed dependencies `git commit -m Dependencies && git push`
6+
* Commit and push any changes to the `dist` directory. Wait for CI.
117
* `git tag v1.0.x && git push --tags` with the actual version number
12-
* `git tag --delete v1 && git push --delete origin v1 && git tag v1 && git push --tags`
8+
* `git tag -f -a v1 && git push -f --tags`
139
* go to https://github.com/gradle/wrapper-validation-action/releases
1410
* edit and publish the now drafted `v1` release
1511
* create a new release from the new full version number `v1.0.x`, list the fixed issues and publish the release

0 commit comments

Comments
 (0)