├── .dockerignore ├── .yamllint.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── action.yml └── bin └── tag-name.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/.dockerignore -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/action.yml -------------------------------------------------------------------------------- /bin/tag-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/composer-normalize-action/HEAD/bin/tag-name.sh --------------------------------------------------------------------------------