Skip to content

Commit

Permalink
Merge pull request #100 from jwplayer/chore/changelog-updates
Browse files Browse the repository at this point in the history
chore(project): changing changelog generation config
  • Loading branch information
AntonLantukh authored Jun 30, 2022
2 parents b61721b + 12e9b8b commit 4fdd3cb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
17 changes: 9 additions & 8 deletions .depcheckrc.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
ignores: [
# These are dependencies for vite and vite plugins that depcheck doesn't recognize as being used
"postcss-scss",
"stylelint-order",
"stylelint-config-recommended-scss",
"stylelint-declaration-strict-value",
"stylelint-scss",
'postcss-scss',
'stylelint-order',
'stylelint-config-recommended-scss',
'stylelint-declaration-strict-value',
'stylelint-scss',
# This is used by commitlint in .commitlintrc.js
" @commitlint/config-conventional",
' @commitlint/config-conventional',
# These are vite aliases / tsconfig paths that point to specific local directories
# Note the \\ is apparently necessary to escape the # or the ignore doesn't work
"\\#src",
"\\#test",
"\\#types"
]
"\\#types",
'npm-run-all',
]
5 changes: 3 additions & 2 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: 'Version Bump'
on:
# Triggers the workflow on push or pull request events but only for the "develop" branch
push:
branches: [ "develop" ]
branches: ['develop']

jobs:
bump-version:
name: 'Bump Version on develop'
Expand All @@ -21,3 +21,4 @@ jobs:
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.ACTION_TOKEN }}
release-count: '0'
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@

### Features

* **project:** BREAKING CHANGE adding new app config support ([9a29722](https://github.com/jwplayer/ott-web-app/commit/f8cf652f70b9ff9b42812259e965e1cb90d9c408))
* **auth:** add backdrop click to login codecept test ([9a29722](https://github.com/jwplayer/ott-web-app/commit/9a29722eddbe8eb513c0094bc780969bccbf0b74))
* **auth:** add login codecept tests ([1d74a18](https://github.com/jwplayer/ott-web-app/commit/1d74a18ce280c6162cb99102caf6b5fe1a7a413f))
* **auth:** add register codecept tests ([b4bc475](https://github.com/jwplayer/ott-web-app/commit/b4bc475aafa39059ba31da9cce851266e1500d88))
Expand All @@ -100,4 +101,3 @@
* **watchhistory:** add mobile codecept test and login step ([1467b44](https://github.com/jwplayer/ott-web-app/commit/1467b44d6a67d7fd4cd0db36fefa520cac48a289))



1 change: 1 addition & 0 deletions docs/developer-guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
We use the [TriPSs/conventional-changelog-action](https://github.com/TriPSs/conventional-changelog-action) github [action](https://github.com/jwplayer/ott-web-app/actions/workflows/bump-version.yml) to do an automated version increment for any commit to the develop branch. The type of version increment will be determined by the commit message(s) in the code being added as follows (see [Convential Commits](https://www.conventionalcommits.org/en/v1.0.0/) for more details):
* `fix:` - perform a patch bump
* `feat:` - perform a minor bump
* `chore:` - no version change
* commit body contains `BREAKING CHANGE:` - perform a major bump
* `<type>!:` (i.e. `feat!:`) - perform a major bump

Expand Down

0 comments on commit 4fdd3cb

Please sign in to comment.