mirror of
https://github.com/gradle/wrapper-validation-action
synced 2024-11-23 17:22:01 +00:00
Updates for branch rename master -> main
This commit is contained in:
parent
8d49e559aa
commit
6a97dac3d4
4 changed files with 6 additions and 11 deletions
1
.github/workflows/check-dist.yml
vendored
1
.github/workflows/check-dist.yml
vendored
|
@ -9,7 +9,6 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- master
|
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- '**.md'
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -3,7 +3,7 @@ on: # rebuild any PRs and main branch changes
|
||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- main
|
||||||
- 'releases/*'
|
- 'releases/*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
|
@ -2,10 +2,10 @@ name: "CodeQL"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ main ]
|
||||||
pull_request:
|
pull_request:
|
||||||
# The branches below must be a subset of the branches above
|
# The branches below must be a subset of the branches above
|
||||||
branches: [ master ]
|
branches: [ main ]
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '24 4 * * 6'
|
- cron: '24 4 * * 6'
|
||||||
|
|
||||||
|
|
10
RELEASING.md
10
RELEASING.md
|
@ -1,15 +1,11 @@
|
||||||
# Release
|
# Release
|
||||||
|
|
||||||
* starting on `master`
|
* starting on `main`
|
||||||
* `npm install`
|
* `npm install`
|
||||||
* `npm run all`
|
* `npm run all`
|
||||||
* `git checkout releases/v1`
|
* Commit and push any changes to the `dist` directory. Wait for CI.
|
||||||
* `git merge master`
|
|
||||||
* `npm prune --production`
|
|
||||||
* `git add -f node_modules`
|
|
||||||
* if changed dependencies `git commit -m Dependencies && git push`
|
|
||||||
* `git tag v1.0.x && git push --tags` with the actual version number
|
* `git tag v1.0.x && git push --tags` with the actual version number
|
||||||
* `git tag --delete v1 && git push --delete origin v1 && git tag v1 && git push --tags`
|
* `git tag -f -a v1 && git push -f --tags`
|
||||||
* go to https://github.com/gradle/wrapper-validation-action/releases
|
* go to https://github.com/gradle/wrapper-validation-action/releases
|
||||||
* edit and publish the now drafted `v1` release
|
* edit and publish the now drafted `v1` release
|
||||||
* create a new release from the new full version number `v1.0.x`, list the fixed issues and publish the release
|
* create a new release from the new full version number `v1.0.x`, list the fixed issues and publish the release
|
||||||
|
|
Loading…
Reference in a new issue