├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/.github/workflows/canary-release.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/.github/workflows/create-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @azu:registry="https://npm.pkg.github.com" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/README.md -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/package.json -------------------------------------------------------------------------------- /packages/mono-one/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-one/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mono-one/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-one/LICENSE -------------------------------------------------------------------------------- /packages/mono-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-one/README.md -------------------------------------------------------------------------------- /packages/mono-one/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = "one"; 2 | -------------------------------------------------------------------------------- /packages/mono-one/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-one/package.json -------------------------------------------------------------------------------- /packages/mono-three/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-three/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mono-three/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-three/LICENSE -------------------------------------------------------------------------------- /packages/mono-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-three/README.md -------------------------------------------------------------------------------- /packages/mono-three/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = "three"; 2 | -------------------------------------------------------------------------------- /packages/mono-three/major: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mono-three/major2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mono-three/minor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mono-three/minor2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mono-three/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-three/package.json -------------------------------------------------------------------------------- /packages/mono-two/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-two/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mono-two/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-two/LICENSE -------------------------------------------------------------------------------- /packages/mono-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-two/README.md -------------------------------------------------------------------------------- /packages/mono-two/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = "two"; 2 | -------------------------------------------------------------------------------- /packages/mono-two/major: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mono-two/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/packages/mono-two/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/lerna-monorepo-github-actions-release/HEAD/yarn.lock --------------------------------------------------------------------------------