├── .github ├── renovate.json └── workflows │ ├── release.yml │ └── reviewdog.yml ├── LICENSE ├── README.md ├── action.yml └── script.sh /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haya14busa/action-update-semver/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haya14busa/action-update-semver/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haya14busa/action-update-semver/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haya14busa/action-update-semver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haya14busa/action-update-semver/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haya14busa/action-update-semver/HEAD/action.yml -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haya14busa/action-update-semver/HEAD/script.sh --------------------------------------------------------------------------------