Skip to content

Commit d4e710e

Browse files
committed
feat: try dryrun from v5 branch
1 parent 0973672 commit d4e710e

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.github/workflows/check-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
branches:
55
- main
6-
- v4
6+
- v5
77
jobs:
88
call-build-lint-test-workflow:
99
uses: ./.github/workflows/build-lint-test.yml

.github/workflows/promote.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: promote
22
on:
33
push:
44
# Sequence of patterns matched against refs/tags
5-
tags:
6-
- v5.*
5+
tags:
6+
- v6.*
77
jobs:
88
build-and-promote:
99
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- main
6-
- v4
6+
- v5
77
jobs:
88
call-build-lint-test-workflow:
99
uses: ./.github/workflows/build-lint-test.yml

packages/module/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
},
2828
"homepage": "https://github.com/patternfly/react-data-view#readme",
2929
"publishConfig": {
30-
"access": "public",
31-
"tag": "prerelease"
30+
"access": "public"
3231
},
3332
"dependencies": {
3433
"@patternfly/react-core": "^6.0.0-alpha.69",

packages/module/release.config.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
module.exports = {
2-
branches: [ 'do-not-delete', { name: 'main', channel: 'prerelease', prerelease: 'prerelease' } ],
2+
branches: [
3+
'do-not-delete',
4+
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' },
5+
{ name: 'v5', channel: 'prerelease-v1', range: '1.x' },
6+
],
37
analyzeCommits: {
48
preset: 'angular'
59
},
@@ -10,5 +14,5 @@ module.exports = {
1014
'@semantic-release/npm'
1115
],
1216
tagFormat: 'prerelease-v${version}',
13-
dryRun: false
14-
};
17+
dryRun: true
18+
};

0 commit comments

Comments
 (0)