├── .github └── workflows │ ├── ci.yaml │ └── version-tag.yml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── renovate.json └── test ├── 40-start-fastcgi.sh ├── Dockerfile ├── cache ├── Makefile └── hoge-cache.yaml ├── default.conf ├── docker-compose.yaml └── repos ├── foo-release ├── README.md └── tracks.yaml ├── foo ├── CMakeLists.txt └── package.xml └── rosdistro ├── index-v4.yaml └── noetic └── distribution.yaml /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/version-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/.github/workflows/version-tag.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/renovate.json -------------------------------------------------------------------------------- /test/40-start-fastcgi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/40-start-fastcgi.sh -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/cache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/cache/Makefile -------------------------------------------------------------------------------- /test/cache/hoge-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/cache/hoge-cache.yaml -------------------------------------------------------------------------------- /test/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/default.conf -------------------------------------------------------------------------------- /test/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/docker-compose.yaml -------------------------------------------------------------------------------- /test/repos/foo-release/README.md: -------------------------------------------------------------------------------- 1 | # Release of foo 2 | -------------------------------------------------------------------------------- /test/repos/foo-release/tracks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/repos/foo-release/tracks.yaml -------------------------------------------------------------------------------- /test/repos/foo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/repos/foo/CMakeLists.txt -------------------------------------------------------------------------------- /test/repos/foo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/repos/foo/package.xml -------------------------------------------------------------------------------- /test/repos/rosdistro/index-v4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/repos/rosdistro/index-v4.yaml -------------------------------------------------------------------------------- /test/repos/rosdistro/noetic/distribution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-wat/bloom-release-action/HEAD/test/repos/rosdistro/noetic/distribution.yaml --------------------------------------------------------------------------------