├── .github └── workflows │ ├── canary-release.yml │ ├── create-release-pr.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lerna.json ├── package.json ├── packages ├── mono-one │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── mono-three │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ ├── major │ ├── major2 │ ├── minor │ ├── minor2 │ └── package.json └── mono-two │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ └── index.js │ ├── major │ └── package.json └── yarn.lock /.github/workflows/canary-release.yml: -------------------------------------------------------------------------------- 1 | name: '/canary-release' 2 | on: 3 | issue_comment: 4 | types: [ created ] 5 | 6 | permissions: 7 | contents: read # for checkout 8 | pull-requests: write # for comments 9 | packages: write # for publish 10 | 11 | jobs: 12 | canary-release: 13 | name: canary-release 14 | runs-on: ubuntu-latest 15 | if: | 16 | github.event_name == 'issue_comment' && 17 | (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'CONTRIBUTOR') && 18 | startsWith(github.event.comment.body, '/canary-release') 19 | steps: 20 | - name: get pr information 21 | uses: actions/github-script@v4 22 | id: pr 23 | with: 24 | script: | 25 | const request = { 26 | owner: context.repo.owner, 27 | repo: context.repo.repo, 28 | pull_number: context.issue.number 29 | } 30 | core.info(`Getting PR #${request.pull_number} from ${request.owner}/${request.repo}`) 31 | try { 32 | const result = await github.pulls.get(request) 33 | core.info(`Got PR: ${JSON.stringify(result.data)}`) 34 | return result.data 35 | } catch (err) { 36 | core.setFailed(`Request failed with error ${err}`) 37 | } 38 | - name: checkout 39 | uses: actions/checkout@v2 40 | with: 41 | ref: ${{ fromJSON(steps.pr.outputs.result).head.ref }} 42 | repository: ${{ fromJSON(steps.pr.outputs.result).head.repo.full_name }} 43 | fetch-depth: 0 44 | - name: setup Node 45 | uses: actions/setup-node@v2 46 | with: 47 | node-version: 14.x 48 | registry-url: 'https://npm.pkg.github.com' 49 | - name: install 50 | run: yarn 51 | - name: Publish 52 | run: yarn run release:canary 53 | env: 54 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} 55 | NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} 56 | - uses: actions/github-script@v4 57 | with: 58 | github-token: ${{secrets.GITHUB_TOKEN}} 59 | script: | 60 | github.issues.createComment({ 61 | issue_number: context.issue.number, 62 | owner: context.repo.owner, 63 | repo: context.repo.repo, 64 | body: '🎉 Canary Release. You can install canary version via `npm install package@next`' 65 | }) 66 | -------------------------------------------------------------------------------- /.github/workflows/create-release-pr.yml: -------------------------------------------------------------------------------- 1 | name: Create Pull Request 2 | on: 3 | issue_comment: 4 | types: [ created ] 5 | 6 | # require public member 7 | # private member is treated as CONTRIBUTOR 8 | permissions: 9 | contents: write # for checkout and commit 10 | pull-requests: write # for create pr 11 | 12 | jobs: 13 | createPullRequest: 14 | if: | 15 | github.event_name == 'issue_comment' && 16 | (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && 17 | startsWith(github.event.comment.body, '/create release') 18 | runs-on: ubuntu-latest 19 | steps: 20 | - name: Checkout 21 | uses: actions/checkout@v2 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v2 24 | with: 25 | node-version: 14 26 | registry-url: 'https://npm.pkg.github.com' 27 | - name: Install 28 | run: yarn install 29 | - name: Git Identity 30 | run: | 31 | git config --global user.name '${GITHUB_ACTOR}' 32 | git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' 33 | env: 34 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 35 | GITHUB_ACTOR: ${{ github.actor }} 36 | - name: Versionup commit 37 | run: | 38 | yarn run versionup --yes 39 | - name: Set current CHANGELOG to output 40 | id: changelog 41 | shell: bash -ex {0} 42 | run: | 43 | version=$(node -p 'require("./lerna.json").version') 44 | echo "::set-output name=version::${version}" 45 | - name: Create Pull Request 46 | id: cpr 47 | uses: peter-evans/create-pull-request@v3 48 | with: 49 | token: ${{ secrets.GITHUB_TOKEN }} 50 | commit-message: "Update v${{ steps.changelog.outputs.version }}" 51 | committer: GitHub 52 | author: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" 53 | title: 'v${{ steps.changelog.outputs.version }}' 54 | body: | 55 | ## v${{ steps.changelog.outputs.version }} 56 | 57 | ### Breaking Changes 58 | 59 | - [ ] TODO 60 | 61 | ### Features 62 | 63 | - [ ] TODO 64 | 65 | ### Bug Fixes 66 | 67 | - [ ] TODO 68 | labels: "Type: Release" 69 | branch: "release/next" 70 | request-to-parent: false 71 | - name: Check outputs 72 | run: | 73 | echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}" 74 | echo "Pull Request Number - ${{ steps.cpr.outputs.pr_number }}" 75 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | name: publish 2 | on: 3 | # When Release Pull Request is merged 4 | pull_request: 5 | branches: 6 | - master 7 | types: [closed] 8 | 9 | permissions: 10 | contents: write # for checkout and tag 11 | pull-requests: write # for comments 12 | packages: write # for publish 13 | 14 | jobs: 15 | publish: 16 | name: Publish 17 | runs-on: ubuntu-latest 18 | steps: 19 | - name: Checkout 20 | uses: actions/checkout@v2 21 | - name: Setup Node ${{ matrix.node_version }} 22 | uses: actions/setup-node@v2 23 | with: 24 | node-version: 14 25 | registry-url: 'https://npm.pkg.github.com' 26 | - name: Git Identity 27 | run: | 28 | git config --global user.name 'github-actions[bot]' 29 | git config --global user.email 'github-actions[bot]@users.noreply.github.com' 30 | git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY 31 | env: 32 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 33 | - name: Install 34 | run: yarn install 35 | # Define ${CURRENT_VERSION} 36 | - name: Set Current Version 37 | run: | 38 | CURRENT_VERSION=$(node -p 'require("./lerna.json").version') 39 | echo "CURRENT_VERSION=${CURRENT_VERSION}" >> $GITHUB_ENV 40 | - name: Tag Check 41 | id: tag_check 42 | run: | 43 | GET_API_URL="https://api.github.com/repos/${GITHUB_REPOSITORY}/git/ref/tags/v${CURRENT_VERSION}" 44 | http_status_code=$(curl -LI $GET_API_URL -o /dev/null -w '%{http_code}\n' -s \ 45 | -H "Authorization: token ${GITHUB_TOKEN}") 46 | if [ "$http_status_code" -ne "404" ] ; then 47 | echo "::set-output name=exists_tag::true" 48 | else 49 | echo "::set-output name=exists_tag::false" 50 | fi 51 | env: 52 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 53 | - name: Create Git Tag 54 | if: steps.tag_check.outputs.exists_tag == 'false' 55 | uses: pkgdeps/git-tag-action@v2 56 | with: 57 | version: ${{ env.CURRENT_VERSION }} 58 | github_token: ${{ secrets.GITHUB_TOKEN }} 59 | github_repo: ${{ github.repository }} 60 | git_commit_sha: ${{ github.sha }} 61 | git_tag_prefix: "v" 62 | - name: Create Release 63 | id: create_release 64 | if: steps.tag_check.outputs.exists_tag == 'false' && github.event.pull_request.merged == true 65 | uses: actions/create-release@v1 66 | env: 67 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 68 | with: 69 | tag_name: v${{ env.CURRENT_VERSION }} 70 | # Copy Pull Request's tile and body to Release Note 71 | release_name: ${{ github.event.pull_request.title }} 72 | body: | 73 | ${{ github.event.pull_request.body }} 74 | draft: false 75 | prerelease: false 76 | - name: Publish 77 | if: steps.tag_check.outputs.exists_tag == 'false' 78 | run: | 79 | yarn lerna publish from-package --yes 80 | env: 81 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} 82 | NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} 83 | - uses: actions/github-script@v4 84 | with: 85 | github-token: ${{secrets.GITHUB_TOKEN}} 86 | script: | 87 | github.issues.createComment({ 88 | issue_number: context.issue.number, 89 | owner: context.repo.owner, 90 | repo: context.repo.repo, 91 | body: 'https://github.com/${{ github.repository }}/releases/tag/v${{ env.CURRENT_VERSION }} is released 🎉' 92 | }) 93 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### https://raw.github.com/github/gitignore/d2c1bb2b9c72ead618c9f6a48280ebc7a8e0dff6/Node.gitignore 2 | 3 | # Logs 4 | logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | 10 | # Runtime data 11 | pids 12 | *.pid 13 | *.seed 14 | *.pid.lock 15 | 16 | # Directory for instrumented libs generated by jscoverage/JSCover 17 | lib-cov 18 | 19 | # Coverage directory used by tools like istanbul 20 | coverage 21 | 22 | # nyc test coverage 23 | .nyc_output 24 | 25 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 26 | .grunt 27 | 28 | # Bower dependency directory (https://bower.io/) 29 | bower_components 30 | 31 | # node-waf configuration 32 | .lock-wscript 33 | 34 | # Compiled binary addons (https://nodejs.org/api/addons.html) 35 | build/Release 36 | 37 | # Dependency directories 38 | node_modules/ 39 | jspm_packages/ 40 | 41 | # TypeScript v1 declaration files 42 | typings/ 43 | 44 | # Optional npm cache directory 45 | .npm 46 | 47 | # Optional eslint cache 48 | .eslintcache 49 | 50 | # Optional REPL history 51 | .node_repl_history 52 | 53 | # Output of 'npm pack' 54 | *.tgz 55 | 56 | # Yarn Integrity file 57 | .yarn-integrity 58 | 59 | # dotenv environment variables file 60 | .env 61 | .env.test 62 | 63 | # parcel-bundler cache (https://parceljs.org/) 64 | .cache 65 | 66 | # next.js build output 67 | .next 68 | 69 | # nuxt.js build output 70 | .nuxt 71 | 72 | # vuepress build output 73 | .vuepress/dist 74 | 75 | # Serverless directories 76 | .serverless/ 77 | 78 | # FuseBox cache 79 | .fusebox/ 80 | 81 | # DynamoDB Local files 82 | .dynamodb/ 83 | 84 | 85 | ### https://raw.github.com/github/gitignore/d2c1bb2b9c72ead618c9f6a48280ebc7a8e0dff6/Global/JetBrains.gitignore 86 | 87 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 88 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 89 | 90 | # User-specific stuff 91 | .idea/**/workspace.xml 92 | .idea/**/tasks.xml 93 | .idea/**/usage.statistics.xml 94 | .idea/**/dictionaries 95 | .idea/**/shelf 96 | 97 | # Generated files 98 | .idea/**/contentModel.xml 99 | 100 | # Sensitive or high-churn files 101 | .idea/**/dataSources/ 102 | .idea/**/dataSources.ids 103 | .idea/**/dataSources.local.xml 104 | .idea/**/sqlDataSources.xml 105 | .idea/**/dynamic.xml 106 | .idea/**/uiDesigner.xml 107 | .idea/**/dbnavigator.xml 108 | 109 | # Gradle 110 | .idea/**/gradle.xml 111 | .idea/**/libraries 112 | 113 | # Gradle and Maven with auto-import 114 | # When using Gradle or Maven with auto-import, you should exclude module files, 115 | # since they will be recreated, and may cause churn. Uncomment if using 116 | # auto-import. 117 | # .idea/modules.xml 118 | # .idea/*.iml 119 | # .idea/modules 120 | 121 | # CMake 122 | cmake-build-*/ 123 | 124 | # Mongo Explorer plugin 125 | .idea/**/mongoSettings.xml 126 | 127 | # File-based project format 128 | *.iws 129 | 130 | # IntelliJ 131 | out/ 132 | 133 | # mpeltonen/sbt-idea plugin 134 | .idea_modules/ 135 | 136 | # JIRA plugin 137 | atlassian-ide-plugin.xml 138 | 139 | # Cursive Clojure plugin 140 | .idea/replstate.xml 141 | 142 | # Crashlytics plugin (for Android Studio and IntelliJ) 143 | com_crashlytics_export_strings.xml 144 | crashlytics.properties 145 | crashlytics-build.properties 146 | fabric.properties 147 | 148 | # Editor-based Rest Client 149 | .idea/httpRequests 150 | 151 | # Android studio 3.1+ serialized cache file 152 | .idea/caches/build_file_checksums.ser 153 | 154 | 155 | /lib 156 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @azu:registry="https://npm.pkg.github.com" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | 6 | ## 2.1.4 (2021-07-29) 7 | 8 | **Note:** Version bump only for package root 9 | 10 | 11 | 12 | 13 | 14 | ## 2.1.3 (2021-07-29) 15 | 16 | **Note:** Version bump only for package root 17 | 18 | 19 | 20 | 21 | 22 | ## 2.1.2 (2021-07-29) 23 | 24 | **Note:** Version bump only for package root 25 | 26 | 27 | 28 | 29 | 30 | ## [2.1.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.1.0...v2.1.1) (2021-07-29) 31 | 32 | **Note:** Version bump only for package root 33 | 34 | 35 | 36 | 37 | 38 | # [2.1.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.0.1...v2.1.0) (2020-11-10) 39 | 40 | 41 | ### Features 42 | 43 | * **two:** new feature ??? ([7220391](https://github.com/azu/lerna-monorepo-github-actions-release/commit/72203912af4604d9f9beda4fc00a8e5cf8296ae9)) 44 | 45 | 46 | 47 | 48 | 49 | ## 2.0.1 (2020-04-28) 50 | 51 | **Note:** Version bump only for package root 52 | 53 | 54 | 55 | 56 | 57 | # [2.0.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.4...v2.0.0) (2020-04-28) 58 | 59 | 60 | ### Features 61 | 62 | * **two:** major feature ([39e6688](https://github.com/azu/lerna-monorepo-github-actions-release/commit/39e66888cf84e988868e9ad044bc8c4fd0c879d4)) 63 | 64 | 65 | ### BREAKING CHANGES 66 | 67 | * **two:** update new feature with breaking 68 | 69 | 70 | 71 | 72 | 73 | ## [1.6.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.4) (2020-03-16) 74 | 75 | **Note:** Version bump only for package root 76 | 77 | 78 | 79 | 80 | 81 | ## [1.6.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.3) (2020-03-16) 82 | 83 | **Note:** Version bump only for package root 84 | 85 | 86 | 87 | 88 | 89 | ## [1.6.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.2) (2020-03-16) 90 | 91 | **Note:** Version bump only for package root 92 | 93 | 94 | 95 | 96 | 97 | ## [1.6.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.1) (2020-03-16) 98 | 99 | **Note:** Version bump only for package root 100 | 101 | 102 | 103 | 104 | 105 | # [1.6.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.5.0...v1.6.0) (2020-03-11) 106 | 107 | **Note:** Version bump only for package root 108 | 109 | 110 | 111 | 112 | 113 | # [1.5.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.4.1...v1.5.0) (2020-03-11) 114 | 115 | **Note:** Version bump only for package root 116 | 117 | 118 | 119 | 120 | 121 | ## [1.4.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.1) (2020-03-11) 122 | 123 | 124 | ### Bug Fixes 125 | 126 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 127 | 128 | 129 | ### Features 130 | 131 | * **three:** update feature ([79d0e2c](https://github.com/azu/lerna-monorepo-github-actions-release/commit/79d0e2c730f6371b6f518d38a049efa367b1fd7b)) 132 | 133 | 134 | 135 | 136 | 137 | # [1.4.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.0) (2020-03-11) 138 | 139 | 140 | ### Bug Fixes 141 | 142 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 143 | 144 | 145 | ### Features 146 | 147 | * **three:** update feature ([79d0e2c](https://github.com/azu/lerna-monorepo-github-actions-release/commit/79d0e2c730f6371b6f518d38a049efa367b1fd7b)) 148 | 149 | 150 | 151 | 152 | 153 | ## [1.3.5](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.5) (2020-03-11) 154 | 155 | 156 | ### Bug Fixes 157 | 158 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 159 | 160 | 161 | 162 | 163 | 164 | ## [1.3.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.4) (2020-03-11) 165 | 166 | 167 | ### Bug Fixes 168 | 169 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 170 | 171 | 172 | 173 | 174 | 175 | ## [1.3.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.3) (2020-03-11) 176 | 177 | 178 | ### Bug Fixes 179 | 180 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 181 | 182 | 183 | 184 | 185 | 186 | ## [1.3.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.2) (2020-03-11) 187 | 188 | 189 | ### Bug Fixes 190 | 191 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 192 | 193 | 194 | 195 | 196 | 197 | ## [1.3.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.1) (2020-03-11) 198 | 199 | 200 | ### Bug Fixes 201 | 202 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 203 | 204 | 205 | 206 | 207 | 208 | # 1.3.0 (2020-03-11) 209 | 210 | **Note:** Version bump only for package root 211 | 212 | 213 | 214 | 215 | 216 | # [1.3.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.2...v1.3.0) (2020-03-11) 217 | 218 | 219 | ### Features 220 | 221 | * **one:** new feature ([24762ef](https://github.com/azu/lerna-monorepo-github-actions-release/commit/24762ef2e818f84a105a1bb4c09e6f30bd7bd410)) 222 | 223 | 224 | 225 | 226 | 227 | ## 1.2.2 (2020-03-11) 228 | 229 | **Note:** Version bump only for package root 230 | 231 | 232 | 233 | 234 | 235 | ## 1.2.2 (2020-03-11) 236 | 237 | **Note:** Version bump only for package root 238 | 239 | 240 | 241 | 242 | 243 | ## [1.2.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.0...v1.2.2) (2020-03-11) 244 | 245 | 246 | ### Bug Fixes 247 | 248 | * **two:** add one ([bed0701](https://github.com/azu/lerna-monorepo-github-actions-release/commit/bed070168f3ff0194a9e6da739b18b6f86eca4f8)) 249 | 250 | 251 | 252 | 253 | 254 | ## [1.2.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.0...v1.2.1) (2020-03-11) 255 | 256 | 257 | ### Bug Fixes 258 | 259 | * **two:** add one ([bed0701](https://github.com/azu/lerna-monorepo-github-actions-release/commit/bed070168f3ff0194a9e6da739b18b6f86eca4f8)) 260 | 261 | 262 | 263 | 264 | 265 | # 1.2.0 (2020-03-11) 266 | 267 | **Note:** Version bump only for package root 268 | 269 | 270 | 271 | 272 | 273 | # [1.2.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.1.1...v1.2.0) (2020-03-11) 274 | 275 | 276 | ### Features 277 | 278 | * **one:** add one ([2348f6a](https://github.com/azu/lerna-monorepo-github-actions-release/commit/2348f6aede39c9c649f941deee9f4a6705367c08)) 279 | 280 | 281 | 282 | 283 | 284 | ## 1.1.1 (2020-03-11) 285 | 286 | **Note:** Version bump only for package root 287 | 288 | 289 | 290 | 291 | 292 | ## 1.1.1 (2020-03-11) 293 | 294 | **Note:** Version bump only for package root 295 | 296 | 297 | 298 | 299 | 300 | ## [1.1.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.1.0...v1.1.1) (2020-03-11) 301 | 302 | **Note:** Version bump only for package root 303 | 304 | 305 | 306 | 307 | 308 | # 1.1.0 (2020-03-11) 309 | 310 | **Note:** Version bump only for package root 311 | 312 | 313 | 314 | 315 | 316 | # 1.1.0 (2020-03-11) 317 | 318 | **Note:** Version bump only for package root 319 | 320 | 321 | 322 | 323 | 324 | # [1.1.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.0.1...v1.1.0) (2020-03-11) 325 | 326 | 327 | ### Features 328 | 329 | * **three:** add dependencies ([46b6f15](https://github.com/azu/lerna-monorepo-github-actions-release/commit/46b6f15eefbc767c786b1c6799bbd26a87b1633e)) 330 | 331 | 332 | 333 | 334 | 335 | ## 1.0.1 (2020-03-11) 336 | 337 | **Note:** Version bump only for package root 338 | 339 | 340 | 341 | 342 | 343 | ## 1.0.1 (2020-03-11) 344 | 345 | **Note:** Version bump only for package root 346 | 347 | 348 | 349 | 350 | 351 | ## [1.0.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.0.0...v1.0.1) (2020-03-11) 352 | 353 | **Note:** Version bump only for package root 354 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 azu 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **Edit**: I moved to following workflow. 2 | 3 | - [azu/monorepo-github-releases: monorepo release flow: lerna + GitHub Release's Automatically generated release notes](https://github.com/azu/monorepo-github-releases) 4 | 5 | # Lerna + monorepo +GitHub Actions Release Flow 6 | 7 | This repository is an example of monorepo release flow. 8 | 9 | ## Purposes 10 | 11 | - User can control packages versions 12 | - Publish tag and packages from CI 13 | - Does not support independent mode 14 | 15 | ## Roles and Works 16 | 17 | 1. [Person] Develop and Submit Release Pull Request 18 | 2. [Team] Review Release Pull Request 19 | 3. [CI] Publish 20 | 21 | ## Release Flow 22 | 23 | 0. [Local] Checkout release branch: `git checkout release/` 24 | 1. [Local] Run `yarn run versionup` 25 | - Update CHANGELOG.md and `package.json`'s `version`, and `lerna.json`'s `version` 26 | - It does not git tag 27 | 2. [Local] Submit to Release Pull Request 28 | 3. [GitHub] Review Release Pull Request 29 | 4. [GitHub] Write Release Note into the Release Pull Request's body 30 | 4. [GitHub] Merge Release Pull Request 31 | 5. [CI] Create git tag && Create GitHub Release && publish to npm(GitHub Package Registry) 32 | - :memo: The GitHub Release's body is copied from Release Pull Request's body 33 | 34 | ## Changelog 35 | 36 | See [Releases page](https://github.com/azu/lerna-monorepo-github-actions-release/releases). 37 | 38 | ## Running tests 39 | 40 | Install devDependencies and Run `npm test`: 41 | 42 | npm test 43 | 44 | ## Contributing 45 | 46 | Pull requests and stars are always welcome. 47 | 48 | For bugs and feature requests, [please create an issue](https://github.com/azu/lerna-monorepo-github-actions-release/issues). 49 | 50 | 1. Fork it! 51 | 2. Create your feature branch: `git checkout -b my-new-feature` 52 | 3. Commit your changes: `git commit -am 'Add some feature'` 53 | 4. Push to the branch: `git push origin my-new-feature` 54 | 5. Submit a pull request :D 55 | 56 | ## Author 57 | 58 | - [github/azu](https://github.com/azu) 59 | - [twitter/azu_re](https://twitter.com/azu_re) 60 | 61 | ## License 62 | 63 | MIT © azu 64 | -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [ 3 | "packages/*" 4 | ], 5 | "version": "2.1.4", 6 | "includeMergedTags": true, 7 | "command": { 8 | "publish": { 9 | "registry": "https://npm.pkg.github.com" 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "name": "root", 4 | "version": "1.0.0", 5 | "description": "Root", 6 | "homepage": "https://github.com/azu/lerna-monorepo-github-actions-release", 7 | "bugs": { 8 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release/issues" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release.git" 13 | }, 14 | "license": "MIT", 15 | "author": "azu", 16 | "workspaces": { 17 | "packages": [ 18 | "packages/*" 19 | ] 20 | }, 21 | "scripts": { 22 | "versionup": "lerna version --conventional-commits --no-git-tag-version", 23 | "versionup:patch": "lerna version patch --conventional-commits --no-git-tag-version", 24 | "versionup:minor": "lerna version minor --conventional-commits --no-git-tag-version", 25 | "versionup:major": "lerna version major --conventional-commits --no-git-tag-version", 26 | "postversionup": "npm run commit-version", 27 | "postversionup:patch": "npm run commit-version", 28 | "postversionup:minor": "npm run commit-version", 29 | "postversionup:major": "npm run commit-version", 30 | "commit-version": "git add . && git commit -m \"chore(release): publish `node -p 'require(\"./lerna.json\").version'`\"", 31 | "release": "lerna publish from-package", 32 | "release:canary": "lerna publish --canary --preid next --dist-tag next --force-publish='*' --no-push --no-git-tag-version --yes" 33 | }, 34 | "devDependencies": { 35 | "lerna": "^3.20.2" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /packages/mono-one/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | 6 | ## 2.1.4 (2021-07-29) 7 | 8 | **Note:** Version bump only for package @azu/mono-one 9 | 10 | 11 | 12 | 13 | 14 | ## 2.1.3 (2021-07-29) 15 | 16 | **Note:** Version bump only for package @azu/mono-one 17 | 18 | 19 | 20 | 21 | 22 | ## 2.1.2 (2021-07-29) 23 | 24 | **Note:** Version bump only for package @azu/mono-one 25 | 26 | 27 | 28 | 29 | 30 | ## [2.1.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.1.0...v2.1.1) (2021-07-29) 31 | 32 | **Note:** Version bump only for package @azu/mono-one 33 | 34 | 35 | 36 | 37 | 38 | # [2.1.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.0.1...v2.1.0) (2020-11-10) 39 | 40 | **Note:** Version bump only for package @azu/mono-one 41 | 42 | 43 | 44 | 45 | 46 | ## 2.0.1 (2020-04-28) 47 | 48 | **Note:** Version bump only for package @azu/mono-one 49 | 50 | 51 | 52 | 53 | 54 | # [2.0.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.4...v2.0.0) (2020-04-28) 55 | 56 | **Note:** Version bump only for package @azu/mono-one 57 | 58 | 59 | 60 | 61 | 62 | ## [1.6.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.4) (2020-03-16) 63 | 64 | **Note:** Version bump only for package @azu/mono-one 65 | 66 | 67 | 68 | 69 | 70 | ## [1.6.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.3) (2020-03-16) 71 | 72 | **Note:** Version bump only for package @azu/mono-one 73 | 74 | 75 | 76 | 77 | 78 | ## [1.6.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.2) (2020-03-16) 79 | 80 | **Note:** Version bump only for package @azu/mono-one 81 | 82 | 83 | 84 | 85 | 86 | ## [1.6.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.1) (2020-03-16) 87 | 88 | **Note:** Version bump only for package @azu/mono-one 89 | 90 | 91 | 92 | 93 | 94 | # [1.6.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.5.0...v1.6.0) (2020-03-11) 95 | 96 | **Note:** Version bump only for package @azu/mono-one 97 | 98 | 99 | 100 | 101 | 102 | # [1.5.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.4.1...v1.5.0) (2020-03-11) 103 | 104 | **Note:** Version bump only for package @azu/mono-one 105 | 106 | 107 | 108 | 109 | 110 | ## [1.4.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.1) (2020-03-11) 111 | 112 | 113 | ### Bug Fixes 114 | 115 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 116 | 117 | 118 | 119 | 120 | 121 | # [1.4.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.0) (2020-03-11) 122 | 123 | 124 | ### Bug Fixes 125 | 126 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 127 | 128 | 129 | 130 | 131 | 132 | ## [1.3.5](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.5) (2020-03-11) 133 | 134 | 135 | ### Bug Fixes 136 | 137 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 138 | 139 | 140 | 141 | 142 | 143 | ## [1.3.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.4) (2020-03-11) 144 | 145 | 146 | ### Bug Fixes 147 | 148 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 149 | 150 | 151 | 152 | 153 | 154 | ## [1.3.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.3) (2020-03-11) 155 | 156 | 157 | ### Bug Fixes 158 | 159 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 160 | 161 | 162 | 163 | 164 | 165 | ## [1.3.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.2) (2020-03-11) 166 | 167 | 168 | ### Bug Fixes 169 | 170 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 171 | 172 | 173 | 174 | 175 | 176 | ## [1.3.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.1) (2020-03-11) 177 | 178 | 179 | ### Bug Fixes 180 | 181 | * **one:** add one ([a0ac376](https://github.com/azu/lerna-monorepo-github-actions-release/commit/a0ac3764ed5165745b5651fdcc4648108787c164)) 182 | 183 | 184 | 185 | 186 | 187 | # 1.3.0 (2020-03-11) 188 | 189 | **Note:** Version bump only for package @azu/mono-one 190 | 191 | 192 | 193 | 194 | 195 | # [1.3.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.2...v1.3.0) (2020-03-11) 196 | 197 | 198 | ### Features 199 | 200 | * **one:** new feature ([24762ef](https://github.com/azu/lerna-monorepo-github-actions-release/commit/24762ef2e818f84a105a1bb4c09e6f30bd7bd410)) 201 | 202 | 203 | 204 | 205 | 206 | ## 1.2.2 (2020-03-11) 207 | 208 | **Note:** Version bump only for package @azu/mono-one 209 | 210 | 211 | 212 | 213 | 214 | ## 1.2.2 (2020-03-11) 215 | 216 | **Note:** Version bump only for package @azu/mono-one 217 | 218 | 219 | 220 | 221 | 222 | ## 1.2.1 (2020-03-11) 223 | 224 | **Note:** Version bump only for package @azu/mono-one 225 | 226 | 227 | 228 | 229 | 230 | # 1.2.0 (2020-03-11) 231 | 232 | **Note:** Version bump only for package @azu/mono-one 233 | 234 | 235 | 236 | 237 | 238 | # [1.2.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.1.1...v1.2.0) (2020-03-11) 239 | 240 | 241 | ### Features 242 | 243 | * **one:** add one ([2348f6a](https://github.com/azu/lerna-monorepo-github-actions-release/commit/2348f6aede39c9c649f941deee9f4a6705367c08)) 244 | 245 | 246 | 247 | 248 | 249 | ## 1.1.1 (2020-03-11) 250 | 251 | **Note:** Version bump only for package @azu/mono-one 252 | 253 | 254 | 255 | 256 | 257 | ## 1.1.1 (2020-03-11) 258 | 259 | **Note:** Version bump only for package @azu/mono-one 260 | 261 | 262 | 263 | 264 | 265 | # 1.1.0 (2020-03-11) 266 | 267 | **Note:** Version bump only for package @azu/mono-one 268 | 269 | 270 | 271 | 272 | 273 | # 1.1.0 (2020-03-11) 274 | 275 | **Note:** Version bump only for package @azu/mono-one 276 | 277 | 278 | 279 | 280 | 281 | ## 1.0.1 (2020-03-11) 282 | 283 | **Note:** Version bump only for package @azu/mono-one 284 | 285 | 286 | 287 | 288 | 289 | ## 1.0.1 (2020-03-11) 290 | 291 | **Note:** Version bump only for package @azu/mono-one 292 | 293 | 294 | 295 | 296 | 297 | ## [1.0.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.0.0...v1.0.1) (2020-03-11) 298 | 299 | **Note:** Version bump only for package @azu/mono-one 300 | -------------------------------------------------------------------------------- /packages/mono-one/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 azu 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /packages/mono-one/README.md: -------------------------------------------------------------------------------- 1 | # @azu/mono-one 2 | 3 | One  4 | 5 | ## Install 6 | 7 | Install with [npm](https://www.npmjs.com/): 8 | 9 | npm install @azu/mono-one 10 | 11 | ## Usage 12 | 13 | - [ ] Write usage instructions 14 | 15 | ## Changelog 16 | 17 | See [Releases page](https://github.com/azu/lerna-monorepo-github-actions-release/releases). 18 | 19 | ## Running tests 20 | 21 | Install devDependencies and Run `npm test`: 22 | 23 | npm test 24 | 25 | ## Contributing 26 | 27 | Pull requests and stars are always welcome. 28 | 29 | For bugs and feature requests, [please create an issue](https://github.com/azu/lerna-monorepo-github-actions-release/issues). 30 | 31 | 1. Fork it! 32 | 2. Create your feature branch: `git checkout -b my-new-feature` 33 | 3. Commit your changes: `git commit -am 'Add some feature'` 34 | 4. Push to the branch: `git push origin my-new-feature` 35 | 5. Submit a pull request :D 36 | 37 | ## Author 38 | 39 | - [github/azu](https://github.com/azu) 40 | - [twitter/azu_re](https://twitter.com/azu_re) 41 | 42 | ## License 43 | 44 | MIT © azu 45 | -------------------------------------------------------------------------------- /packages/mono-one/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = "one"; 2 | -------------------------------------------------------------------------------- /packages/mono-one/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@azu/mono-one", 3 | "version": "2.1.4", 4 | "description": "", 5 | "homepage": "https://github.com/azu/lerna-monorepo-github-actions-release/tree/master/packages/mono-one/", 6 | "bugs": { 7 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release/issues" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release.git", 12 | "directory": "packages/mono-one" 13 | }, 14 | "license": "MIT", 15 | "author": "azu", 16 | "files": [ 17 | "bin/", 18 | "lib/", 19 | "src/" 20 | ], 21 | "main": "lib/index.js", 22 | "directories": { 23 | "lib": "lib", 24 | "test": "test" 25 | }, 26 | "scripts": {}, 27 | "publishConfig": { 28 | "access": "public" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /packages/mono-three/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | 6 | ## 2.1.4 (2021-07-29) 7 | 8 | **Note:** Version bump only for package @azu/mono-three 9 | 10 | 11 | 12 | 13 | 14 | ## 2.1.3 (2021-07-29) 15 | 16 | **Note:** Version bump only for package @azu/mono-three 17 | 18 | 19 | 20 | 21 | 22 | ## 2.1.2 (2021-07-29) 23 | 24 | **Note:** Version bump only for package @azu/mono-three 25 | 26 | 27 | 28 | 29 | 30 | ## [2.1.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.1.0...v2.1.1) (2021-07-29) 31 | 32 | **Note:** Version bump only for package @azu/mono-three 33 | 34 | 35 | 36 | 37 | 38 | # [2.1.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.0.1...v2.1.0) (2020-11-10) 39 | 40 | 41 | ### Features 42 | 43 | * **two:** new feature ??? ([7220391](https://github.com/azu/lerna-monorepo-github-actions-release/commit/72203912af4604d9f9beda4fc00a8e5cf8296ae9)) 44 | 45 | 46 | 47 | 48 | 49 | ## 2.0.1 (2020-04-28) 50 | 51 | **Note:** Version bump only for package @azu/mono-three 52 | 53 | 54 | 55 | 56 | 57 | # [2.0.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.4...v2.0.0) (2020-04-28) 58 | 59 | **Note:** Version bump only for package @azu/mono-three 60 | 61 | 62 | 63 | 64 | 65 | ## [1.6.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.4) (2020-03-16) 66 | 67 | **Note:** Version bump only for package @azu/mono-three 68 | 69 | 70 | 71 | 72 | 73 | ## [1.6.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.3) (2020-03-16) 74 | 75 | **Note:** Version bump only for package @azu/mono-three 76 | 77 | 78 | 79 | 80 | 81 | ## [1.6.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.2) (2020-03-16) 82 | 83 | **Note:** Version bump only for package @azu/mono-three 84 | 85 | 86 | 87 | 88 | 89 | ## [1.6.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.1) (2020-03-16) 90 | 91 | **Note:** Version bump only for package @azu/mono-three 92 | 93 | 94 | 95 | 96 | 97 | # [1.6.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.5.0...v1.6.0) (2020-03-11) 98 | 99 | **Note:** Version bump only for package @azu/mono-three 100 | 101 | 102 | 103 | 104 | 105 | # [1.5.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.4.1...v1.5.0) (2020-03-11) 106 | 107 | **Note:** Version bump only for package @azu/mono-three 108 | 109 | 110 | 111 | 112 | 113 | ## [1.4.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.1) (2020-03-11) 114 | 115 | 116 | ### Features 117 | 118 | * **three:** update feature ([79d0e2c](https://github.com/azu/lerna-monorepo-github-actions-release/commit/79d0e2c730f6371b6f518d38a049efa367b1fd7b)) 119 | 120 | 121 | 122 | 123 | 124 | # [1.4.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.0) (2020-03-11) 125 | 126 | 127 | ### Features 128 | 129 | * **three:** update feature ([79d0e2c](https://github.com/azu/lerna-monorepo-github-actions-release/commit/79d0e2c730f6371b6f518d38a049efa367b1fd7b)) 130 | 131 | 132 | 133 | 134 | 135 | ## [1.3.5](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.5) (2020-03-11) 136 | 137 | **Note:** Version bump only for package @azu/mono-three 138 | 139 | 140 | 141 | 142 | 143 | ## [1.3.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.4) (2020-03-11) 144 | 145 | **Note:** Version bump only for package @azu/mono-three 146 | 147 | 148 | 149 | 150 | 151 | ## [1.3.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.3) (2020-03-11) 152 | 153 | **Note:** Version bump only for package @azu/mono-three 154 | 155 | 156 | 157 | 158 | 159 | ## [1.3.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.2) (2020-03-11) 160 | 161 | **Note:** Version bump only for package @azu/mono-three 162 | 163 | 164 | 165 | 166 | 167 | ## [1.3.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.1) (2020-03-11) 168 | 169 | **Note:** Version bump only for package @azu/mono-three 170 | 171 | 172 | 173 | 174 | 175 | # 1.3.0 (2020-03-11) 176 | 177 | **Note:** Version bump only for package @azu/mono-three 178 | 179 | 180 | 181 | 182 | 183 | # [1.3.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.2...v1.3.0) (2020-03-11) 184 | 185 | **Note:** Version bump only for package @azu/mono-three 186 | 187 | 188 | 189 | 190 | 191 | ## 1.2.2 (2020-03-11) 192 | 193 | **Note:** Version bump only for package @azu/mono-three 194 | 195 | 196 | 197 | 198 | 199 | ## 1.2.2 (2020-03-11) 200 | 201 | **Note:** Version bump only for package @azu/mono-three 202 | 203 | 204 | 205 | 206 | 207 | ## [1.2.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.0...v1.2.2) (2020-03-11) 208 | 209 | **Note:** Version bump only for package @azu/mono-three 210 | 211 | 212 | 213 | 214 | 215 | ## [1.2.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.0...v1.2.1) (2020-03-11) 216 | 217 | **Note:** Version bump only for package @azu/mono-three 218 | 219 | 220 | 221 | 222 | 223 | # 1.2.0 (2020-03-11) 224 | 225 | **Note:** Version bump only for package @azu/mono-three 226 | 227 | 228 | 229 | 230 | 231 | # [1.2.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.1.1...v1.2.0) (2020-03-11) 232 | 233 | **Note:** Version bump only for package @azu/mono-three 234 | 235 | 236 | 237 | 238 | 239 | ## 1.1.1 (2020-03-11) 240 | 241 | **Note:** Version bump only for package @azu/mono-three 242 | 243 | 244 | 245 | 246 | 247 | ## 1.1.1 (2020-03-11) 248 | 249 | **Note:** Version bump only for package @azu/mono-three 250 | 251 | 252 | 253 | 254 | 255 | ## [1.1.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.1.0...v1.1.1) (2020-03-11) 256 | 257 | **Note:** Version bump only for package @azu/mono-three 258 | 259 | 260 | 261 | 262 | 263 | # 1.1.0 (2020-03-11) 264 | 265 | **Note:** Version bump only for package @azu/mono-three 266 | 267 | 268 | 269 | 270 | 271 | # 1.1.0 (2020-03-11) 272 | 273 | **Note:** Version bump only for package @azu/mono-three 274 | 275 | 276 | 277 | 278 | 279 | # [1.1.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.0.1...v1.1.0) (2020-03-11) 280 | 281 | 282 | ### Features 283 | 284 | * **three:** add dependencies ([46b6f15](https://github.com/azu/lerna-monorepo-github-actions-release/commit/46b6f15eefbc767c786b1c6799bbd26a87b1633e)) 285 | 286 | 287 | 288 | 289 | 290 | ## 1.0.1 (2020-03-11) 291 | 292 | **Note:** Version bump only for package @azu/mono-three 293 | 294 | 295 | 296 | 297 | 298 | ## 1.0.1 (2020-03-11) 299 | 300 | **Note:** Version bump only for package @azu/mono-three 301 | 302 | 303 | 304 | 305 | 306 | ## [1.0.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.0.0...v1.0.1) (2020-03-11) 307 | 308 | **Note:** Version bump only for package @azu/mono-three 309 | -------------------------------------------------------------------------------- /packages/mono-three/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 azu 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /packages/mono-three/README.md: -------------------------------------------------------------------------------- 1 | # @azu/mono-three 2 | 3 | deps + 4 | 5 | - one 6 | - two 7 | 8 | ## Install 9 | 10 | Install with [npm](https://www.npmjs.com/): 11 | 12 | npm install @azu/mono-three 13 | 14 | ## Usage 15 | 16 | - [ ] Write usage instructions 17 | 18 | ## Changelog 19 | 20 | See [Releases page](https://github.com/azu/lerna-monorepo-github-actions-release/releases). 21 | 22 | ## Running tests 23 | 24 | Install devDependencies and Run `npm test`: 25 | 26 | npm test 27 | 28 | ## Contributing 29 | 30 | Pull requests and stars are always welcome. 31 | 32 | For bugs and feature requests, [please create an issue](https://github.com/azu/lerna-monorepo-github-actions-release/issues). 33 | 34 | 1. Fork it! 35 | 2. Create your feature branch: `git checkout -b my-new-feature` 36 | 3. Commit your changes: `git commit -am 'Add some feature'` 37 | 4. Push to the branch: `git push origin my-new-feature` 38 | 5. Submit a pull request :D 39 | 40 | ## Author 41 | 42 | - [github/azu](https://github.com/azu) 43 | - [twitter/azu_re](https://twitter.com/azu_re) 44 | 45 | ## License 46 | 47 | MIT © azu 48 | -------------------------------------------------------------------------------- /packages/mono-three/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = "three"; 2 | -------------------------------------------------------------------------------- /packages/mono-three/major: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/e33436f422b9aec0630bb9028a48b0513e3675ac/packages/mono-three/major -------------------------------------------------------------------------------- /packages/mono-three/major2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/e33436f422b9aec0630bb9028a48b0513e3675ac/packages/mono-three/major2 -------------------------------------------------------------------------------- /packages/mono-three/minor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/e33436f422b9aec0630bb9028a48b0513e3675ac/packages/mono-three/minor -------------------------------------------------------------------------------- /packages/mono-three/minor2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/e33436f422b9aec0630bb9028a48b0513e3675ac/packages/mono-three/minor2 -------------------------------------------------------------------------------- /packages/mono-three/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@azu/mono-three", 3 | "version": "2.1.4", 4 | "description": "", 5 | "homepage": "https://github.com/azu/lerna-monorepo-github-actions-release/tree/master/packages/mono-three/", 6 | "bugs": { 7 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release/issues" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release.git", 12 | "directory": "packages/mono-three" 13 | }, 14 | "license": "MIT", 15 | "author": "azu", 16 | "files": [ 17 | "bin/", 18 | "lib/", 19 | "src/" 20 | ], 21 | "main": "lib/index.js", 22 | "directories": { 23 | "lib": "lib", 24 | "test": "test" 25 | }, 26 | "scripts": {}, 27 | "dependencies": { 28 | "@azu/mono-one": "^2.1.4", 29 | "@azu/mono-two": "^2.1.4" 30 | }, 31 | "publishConfig": { 32 | "access": "public" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /packages/mono-two/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | 6 | ## 2.1.4 (2021-07-29) 7 | 8 | **Note:** Version bump only for package @azu/mono-two 9 | 10 | 11 | 12 | 13 | 14 | ## 2.1.3 (2021-07-29) 15 | 16 | **Note:** Version bump only for package @azu/mono-two 17 | 18 | 19 | 20 | 21 | 22 | ## 2.1.2 (2021-07-29) 23 | 24 | **Note:** Version bump only for package @azu/mono-two 25 | 26 | 27 | 28 | 29 | 30 | ## [2.1.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.1.0...v2.1.1) (2021-07-29) 31 | 32 | **Note:** Version bump only for package @azu/mono-two 33 | 34 | 35 | 36 | 37 | 38 | # [2.1.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v2.0.1...v2.1.0) (2020-11-10) 39 | 40 | **Note:** Version bump only for package @azu/mono-two 41 | 42 | 43 | 44 | 45 | 46 | ## 2.0.1 (2020-04-28) 47 | 48 | **Note:** Version bump only for package @azu/mono-two 49 | 50 | 51 | 52 | 53 | 54 | # [2.0.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.4...v2.0.0) (2020-04-28) 55 | 56 | 57 | ### Features 58 | 59 | * **two:** major feature ([39e6688](https://github.com/azu/lerna-monorepo-github-actions-release/commit/39e66888cf84e988868e9ad044bc8c4fd0c879d4)) 60 | 61 | 62 | ### BREAKING CHANGES 63 | 64 | * **two:** update new feature with breaking 65 | 66 | 67 | 68 | 69 | 70 | ## [1.6.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.4) (2020-03-16) 71 | 72 | **Note:** Version bump only for package @azu/mono-two 73 | 74 | 75 | 76 | 77 | 78 | ## [1.6.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.2...v1.6.3) (2020-03-16) 79 | 80 | **Note:** Version bump only for package @azu/mono-two 81 | 82 | 83 | 84 | 85 | 86 | ## [1.6.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.2) (2020-03-16) 87 | 88 | **Note:** Version bump only for package @azu/mono-two 89 | 90 | 91 | 92 | 93 | 94 | ## [1.6.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.6.0...v1.6.1) (2020-03-16) 95 | 96 | **Note:** Version bump only for package @azu/mono-two 97 | 98 | 99 | 100 | 101 | 102 | # [1.6.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.5.0...v1.6.0) (2020-03-11) 103 | 104 | **Note:** Version bump only for package @azu/mono-two 105 | 106 | 107 | 108 | 109 | 110 | # [1.5.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.4.1...v1.5.0) (2020-03-11) 111 | 112 | **Note:** Version bump only for package @azu/mono-two 113 | 114 | 115 | 116 | 117 | 118 | ## [1.4.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.1) (2020-03-11) 119 | 120 | **Note:** Version bump only for package @azu/mono-two 121 | 122 | 123 | 124 | 125 | 126 | # [1.4.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.4.0) (2020-03-11) 127 | 128 | **Note:** Version bump only for package @azu/mono-two 129 | 130 | 131 | 132 | 133 | 134 | ## [1.3.5](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.5) (2020-03-11) 135 | 136 | **Note:** Version bump only for package @azu/mono-two 137 | 138 | 139 | 140 | 141 | 142 | ## [1.3.4](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.4) (2020-03-11) 143 | 144 | **Note:** Version bump only for package @azu/mono-two 145 | 146 | 147 | 148 | 149 | 150 | ## [1.3.3](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.3) (2020-03-11) 151 | 152 | **Note:** Version bump only for package @azu/mono-two 153 | 154 | 155 | 156 | 157 | 158 | ## [1.3.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.2) (2020-03-11) 159 | 160 | **Note:** Version bump only for package @azu/mono-two 161 | 162 | 163 | 164 | 165 | 166 | ## [1.3.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.3.0...v1.3.1) (2020-03-11) 167 | 168 | **Note:** Version bump only for package @azu/mono-two 169 | 170 | 171 | 172 | 173 | 174 | # 1.3.0 (2020-03-11) 175 | 176 | **Note:** Version bump only for package @azu/mono-two 177 | 178 | 179 | 180 | 181 | 182 | # [1.3.0](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.2...v1.3.0) (2020-03-11) 183 | 184 | **Note:** Version bump only for package @azu/mono-two 185 | 186 | 187 | 188 | 189 | 190 | ## 1.2.2 (2020-03-11) 191 | 192 | **Note:** Version bump only for package @azu/mono-two 193 | 194 | 195 | 196 | 197 | 198 | ## 1.2.2 (2020-03-11) 199 | 200 | **Note:** Version bump only for package @azu/mono-two 201 | 202 | 203 | 204 | 205 | 206 | ## [1.2.2](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.0...v1.2.2) (2020-03-11) 207 | 208 | 209 | ### Bug Fixes 210 | 211 | * **two:** add one ([bed0701](https://github.com/azu/lerna-monorepo-github-actions-release/commit/bed070168f3ff0194a9e6da739b18b6f86eca4f8)) 212 | 213 | 214 | 215 | 216 | 217 | ## [1.2.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.2.0...v1.2.1) (2020-03-11) 218 | 219 | 220 | ### Bug Fixes 221 | 222 | * **two:** add one ([bed0701](https://github.com/azu/lerna-monorepo-github-actions-release/commit/bed070168f3ff0194a9e6da739b18b6f86eca4f8)) 223 | 224 | 225 | 226 | 227 | 228 | # 1.2.0 (2020-03-11) 229 | 230 | **Note:** Version bump only for package @azu/mono-two 231 | 232 | 233 | 234 | 235 | 236 | ## 1.1.1 (2020-03-11) 237 | 238 | **Note:** Version bump only for package @azu/mono-two 239 | 240 | 241 | 242 | 243 | 244 | ## 1.1.1 (2020-03-11) 245 | 246 | **Note:** Version bump only for package @azu/mono-two 247 | 248 | 249 | 250 | 251 | 252 | # 1.1.0 (2020-03-11) 253 | 254 | **Note:** Version bump only for package @azu/mono-two 255 | 256 | 257 | 258 | 259 | 260 | # 1.1.0 (2020-03-11) 261 | 262 | **Note:** Version bump only for package @azu/mono-two 263 | 264 | 265 | 266 | 267 | 268 | ## 1.0.1 (2020-03-11) 269 | 270 | **Note:** Version bump only for package @azu/mono-two 271 | 272 | 273 | 274 | 275 | 276 | ## 1.0.1 (2020-03-11) 277 | 278 | **Note:** Version bump only for package @azu/mono-two 279 | 280 | 281 | 282 | 283 | 284 | ## [1.0.1](https://github.com/azu/lerna-monorepo-github-actions-release/compare/v1.0.0...v1.0.1) (2020-03-11) 285 | 286 | **Note:** Version bump only for package @azu/mono-two 287 | -------------------------------------------------------------------------------- /packages/mono-two/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 azu 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /packages/mono-two/README.md: -------------------------------------------------------------------------------- 1 | # @azu/mono-two 2 | 3 | Deps 4 | 5 | - one 6 | 7 | ## Install 8 | 9 | Install with [npm](https://www.npmjs.com/): 10 | 11 | npm install @azu/mono-two 12 | 13 | ## Usage 14 | 15 | - [ ] Write usage instructions 16 | 17 | ## Changelog 18 | 19 | See [Releases page](https://github.com/azu/lerna-monorepo-github-actions-release/releases). 20 | 21 | ## Running tests 22 | 23 | Install devDependencies and Run `npm test`: 24 | 25 | npm test 26 | 27 | ## Contributing 28 | 29 | Pull requests and stars are always welcome. 30 | 31 | For bugs and feature requests, [please create an issue](https://github.com/azu/lerna-monorepo-github-actions-release/issues). 32 | 33 | 1. Fork it! 34 | 2. Create your feature branch: `git checkout -b my-new-feature` 35 | 3. Commit your changes: `git commit -am 'Add some feature'` 36 | 4. Push to the branch: `git push origin my-new-feature` 37 | 5. Submit a pull request :D 38 | 39 | ## Author 40 | 41 | - [github/azu](https://github.com/azu) 42 | - [twitter/azu_re](https://twitter.com/azu_re) 43 | 44 | ## License 45 | 46 | MIT © azu 47 | -------------------------------------------------------------------------------- /packages/mono-two/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = "two"; 2 | -------------------------------------------------------------------------------- /packages/mono-two/major: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/e33436f422b9aec0630bb9028a48b0513e3675ac/packages/mono-two/major -------------------------------------------------------------------------------- /packages/mono-two/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@azu/mono-two", 3 | "version": "2.1.4", 4 | "description": "", 5 | "homepage": "https://github.com/azu/lerna-monorepo-github-actions-release/tree/master/packages/mono-two/", 6 | "bugs": { 7 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release/issues" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/azu/lerna-monorepo-github-actions-release.git", 12 | "directory": "packages/mono-two" 13 | }, 14 | "license": "MIT", 15 | "author": "azu", 16 | "files": [ 17 | "bin/", 18 | "lib/", 19 | "src/" 20 | ], 21 | "main": "lib/index.js", 22 | "directories": { 23 | "lib": "lib", 24 | "test": "test" 25 | }, 26 | "scripts": {}, 27 | "dependencies": { 28 | "@azu/mono-one": "^2.1.4" 29 | }, 30 | "publishConfig": { 31 | "access": "public" 32 | } 33 | } 34 | --------------------------------------------------------------------------------