We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d565817 commit be416b3Copy full SHA for be416b3
1 file changed
.github/workflows/validate-reqs.yml
@@ -24,11 +24,11 @@ jobs:
24
# Check if requirements.txt was modified in last commit
25
if git diff --name-only HEAD~1 HEAD | grep -q "^requirements.txt$"; then
26
if [ "$AUTHOR" != "github-actions[bot]" ]; then
27
- echo "❌ ERROR: You may NOT edit 'requirements.txt'"
28
- echo "To pin dependencies, use 'poetry add <package-name>'."
29
- echo "Please remove your changes to requirements.txt, so robot can maintain it."
+ echo "::error::You may NOT edit 'requirements.txt'"
+ echo "::warning::Undo your changes to requirements.txt, so robot can maintain it."
+ echo "::notice::To pin dependencies, use 'poetry add <package-name>'."
30
exit 1
31
fi
32
33
34
- echo "✅ SUCCESS: `requirements.txt` not modified unexpectedly"
+ echo "`requirements.txt` unchanged"
0 commit comments