diff --git a/CHANGE_LOG.md b/CHANGE_LOG.md index 5426ad1..07e40a8 100644 --- a/CHANGE_LOG.md +++ b/CHANGE_LOG.md @@ -1,9 +1,13 @@ # Change log ## Unreleased -- Added the possibility to ignore certain workspaces from the check dependencies action + +## 0.2.2 - Added the possibility to ignore main package json - Added the possibility to just warn rather than break the CI +## 0.2.1 +- Added the possibility to ignore certain workspaces from the check dependencies action + ## 0.2.0 (current) Beta version with the check dependencies action created. \ No newline at end of file diff --git a/README.md b/README.md index 16f9666..2ca8f4e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Awesome Github Action to analyse your yarn monorepo! ## Requirements -This Github Action assumes that you are using yarn workspaces in order to manage your monorepo. If your `package.json` has a key called `workspaces` where you confgire where your packages are, then you are good to go! +This Github Action assumes that you are using yarn workspaces in order to manage your monorepo. If your `package.json` has a key called `workspaces` where you configure where your packages are, then you are good to go! ## Functionalities ### Dependencies check @@ -37,7 +37,7 @@ steps: - name: Checkout uses: actions/checkout@v2 - name: Check dependencies - uses: juanigalan91/monorepolyser@0.2.1 + uses: juanigalan91/monorepolyser@0.2.2 with: # Whether you want to execute the check dependencies action or not check-dependencies: true @@ -52,7 +52,7 @@ steps: - name: Checkout uses: actions/checkout@v2 - name: Check dependencies - uses: juanigalan91/monorepolyser@0.2.1 + uses: juanigalan91/monorepolyser@0.2.2 with: check-dependencies: true ignore-workspaces: 'dev-packages,third-parties' # lists of workspaces to ignore from the check, list of strings separated by a comma @@ -67,7 +67,7 @@ steps: - name: Checkout uses: actions/checkout@v2 - name: Check dependencies - uses: juanigalan91/monorepolyser@0.2.1 + uses: juanigalan91/monorepolyser@0.2.2 with: check-dependencies: true include-main-package-json: true @@ -82,7 +82,7 @@ steps: - name: Checkout uses: actions/checkout@v2 - name: Check dependencies - uses: juanigalan91/monorepolyser@0.2.1 + uses: juanigalan91/monorepolyser@0.2.2 with: check-dependencies: true only-warn: true