Skip to content

Commit

Permalink
chore: Updated for migration to main.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabaj committed Sep 17, 2024
1 parent e8bf983 commit d4575db
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
pull_request:
branches:
- main
- v6
jobs:
call-build-lint-test-workflow:
uses: ./.github/workflows/build-lint-test.yml
6 changes: 3 additions & 3 deletions .github/workflows/pr-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
git fetch origin pull/$GH_PR_NUM/head:tmp
git checkout tmp
- run: |
git rev-parse origin/v6
git rev-parse origin/main
git rev-parse HEAD
git rev-parse origin/v6..HEAD
git log origin/v6..HEAD --format="%b"
git rev-parse origin/main..HEAD
git log origin/main..HEAD --format="%b"
# Yes, we really want to checkout the PR
# Injected by generate-workflows.js
- uses: actions/setup-node@v1
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
branches:
- main
- v6
jobs:
call-build-lint-test-workflow:
uses: ./.github/workflows/build-lint-test.yml
Expand Down
6 changes: 3 additions & 3 deletions packages/module/release.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
branches: [
'do-not-delete',
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' },
{ name: 'v6', channel: 'alpha', prerelease: 'alpha' }
{ name: 'v5', channel: 'prerelease-v5', range: '5.x' },
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' }
],
analyzeCommits: {
preset: 'angular'
Expand All @@ -23,5 +23,5 @@ module.exports = {
'@semantic-release/npm'
],
tagFormat: 'prerelease-v${version}',
dryRun: false
dryRun: true
};

0 comments on commit d4575db

Please sign in to comment.