We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce85c82 commit 23ef462Copy full SHA for 23ef462
.github/workflows/composer_install.yml
@@ -57,7 +57,11 @@ jobs:
57
env:
58
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
run: |
60
- cat modules.txt | reviewdog -efm="::%l:%c:%t:%m" \
+ while read module; do
61
+ echo "composer.json:1:1:info:New module added: $module"
62
+ done < modules.txt > reviewdog.log
63
+
64
+ cat reviewdog.log | reviewdog -efm="%f:%l:%c:%t:%m" \
65
-name="COMPOSER MODULES INSTALLATION" \
66
-reporter=github-pr-review \
67
-level=info
0 commit comments