From 267b0c75f00d877810f80d65438ae1688164198e Mon Sep 17 00:00:00 2001 From: Tiago Teixeira Date: Wed, 26 Jun 2024 16:25:37 +0100 Subject: [PATCH] chore: fix versioning and visual testing workflow (#1028) # What ## Code Quality Checklist - [ ] Lint and unit tests pass locally with my changes - [ ] I have added tests that prove my fix is effective or that my feature works (if appropriate) - [ ] I have added necessary documentation (if appropriate) - [ ] I have updated storybook (if appropriate) - [ ] I have ran `yarn set-peer-dep` when adding an icon as a dependency of another component (if appropriate) [read more](https://carlsberggbs.atlassian.net/wiki/spaces/DSM/pages/4697162121/Components+as+peer+dependency) ## Jira Card --- .github/workflows/visual-testing.yml | 2 -- .versionrc.json | 7 ++----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/visual-testing.yml b/.github/workflows/visual-testing.yml index 50acf2337..85734d51d 100644 --- a/.github/workflows/visual-testing.yml +++ b/.github/workflows/visual-testing.yml @@ -1,8 +1,6 @@ name: Visual testing on: - push: - branches: [main] pull_request: branches: [main] workflow_dispatch: diff --git a/.versionrc.json b/.versionrc.json index 3ba234678..dbadd47cc 100644 --- a/.versionrc.json +++ b/.versionrc.json @@ -1,11 +1,8 @@ { - "types": [ - { "type": "feat", "release": "minor" }, - { "type": "fix", "release": "patch" }, - { "type": "chore", "release": false } - ], "releaseRules": [ { "breaking": true, "release": "major" }, + { "type": "feat", "release": "minor" }, + { "type": "fix", "release": "patch" }, { "type": "*", "release": false } ] }