Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added symfony/thanks #42

Merged
merged 1 commit into from Feb 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Expand Up @@ -7,7 +7,9 @@ ARG INPUT_GITHUB_TOKEN
ARG INPUT_EDITORCONFIG
ARG INPUT_DEPENDABOT

RUN composer global require dragon-code/codestyler
RUN composer global require \
dragon-code/codestyler \
symfony/thanks

COPY shell /shell
COPY entrypoint.sh /entrypoint.sh
Expand Down
2 changes: 2 additions & 0 deletions entrypoint.sh
Expand Up @@ -9,3 +9,5 @@ source /shell/editorconfig.sh
source /shell/dependabot.sh

source /shell/push.sh

source /shell/thanks.sh
7 changes: 7 additions & 0 deletions shell/thanks.sh
@@ -0,0 +1,7 @@
#!/bin/sh -l

composer global thanks

if [ -f "./composer.json" ]; then
composer thanks
fi