├── .github └── workflows │ ├── ci.yaml │ └── codeql-analysis.yml ├── .gitignore ├── .releaserc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── disabled.travis.yml ├── jest.config.json ├── package.json ├── renovate.json ├── src ├── main │ ├── js │ │ ├── config.js │ │ ├── exec.js │ │ ├── git.js │ │ ├── hooks.js │ │ ├── index.js │ │ ├── legacy.js │ │ ├── log.js │ │ ├── path.js │ │ ├── postrelease.js │ │ └── store.js │ └── sh │ │ ├── add_tag.sh │ │ ├── count_all_packs.sh │ │ ├── create_release.sh │ │ ├── drop_last_tag.sh │ │ ├── get_last_tag.sh │ │ ├── get_last_tag_message.sh │ │ ├── get_last_tagged_commit_message.sh │ │ ├── get_modified_packs.sh │ │ ├── git_prepare_remote.sh │ │ └── index.js └── test │ └── js │ ├── config.js │ ├── exec.js │ ├── git.js │ └── index.js └── yarn.lock /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/.releaserc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/README.md -------------------------------------------------------------------------------- /disabled.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/disabled.travis.yml -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/renovate.json -------------------------------------------------------------------------------- /src/main/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/config.js -------------------------------------------------------------------------------- /src/main/js/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/exec.js -------------------------------------------------------------------------------- /src/main/js/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/git.js -------------------------------------------------------------------------------- /src/main/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/hooks.js -------------------------------------------------------------------------------- /src/main/js/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./legacy') 2 | -------------------------------------------------------------------------------- /src/main/js/legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/legacy.js -------------------------------------------------------------------------------- /src/main/js/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/log.js -------------------------------------------------------------------------------- /src/main/js/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/path.js -------------------------------------------------------------------------------- /src/main/js/postrelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/postrelease.js -------------------------------------------------------------------------------- /src/main/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/js/store.js -------------------------------------------------------------------------------- /src/main/sh/add_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/add_tag.sh -------------------------------------------------------------------------------- /src/main/sh/count_all_packs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/count_all_packs.sh -------------------------------------------------------------------------------- /src/main/sh/create_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/create_release.sh -------------------------------------------------------------------------------- /src/main/sh/drop_last_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/drop_last_tag.sh -------------------------------------------------------------------------------- /src/main/sh/get_last_tag.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(git describe --abbrev=0 --tags) 4 | -------------------------------------------------------------------------------- /src/main/sh/get_last_tag_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/get_last_tag_message.sh -------------------------------------------------------------------------------- /src/main/sh/get_last_tagged_commit_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/get_last_tagged_commit_message.sh -------------------------------------------------------------------------------- /src/main/sh/get_modified_packs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/get_modified_packs.sh -------------------------------------------------------------------------------- /src/main/sh/git_prepare_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/git_prepare_remote.sh -------------------------------------------------------------------------------- /src/main/sh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/main/sh/index.js -------------------------------------------------------------------------------- /src/test/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/test/js/config.js -------------------------------------------------------------------------------- /src/test/js/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/test/js/exec.js -------------------------------------------------------------------------------- /src/test/js/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/test/js/git.js -------------------------------------------------------------------------------- /src/test/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/src/test/js/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/semantic-release-monorepo-hooks/HEAD/yarn.lock --------------------------------------------------------------------------------