├── .github ├── release-drafter.yml └── workflows │ └── release-management.yml ├── .gitignore ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── action.rb ├── action.yml └── entrypoint.sh /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## What’s Changed 3 | $CHANGES 4 | -------------------------------------------------------------------------------- /.github/workflows/release-management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/.github/workflows/release-management.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/README.md -------------------------------------------------------------------------------- /action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/action.rb -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdougie/variables-in-markdown/HEAD/entrypoint.sh --------------------------------------------------------------------------------