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 0dcf22a commit 468588bCopy full SHA for 468588b
.github/workflows/ci.yml
@@ -48,4 +48,10 @@ jobs:
48
- name: Fail when generated changes are not checked-in
49
run: |
50
git update-index --refresh
51
- git diff-index --quiet HEAD --
+ if ! git diff-index --quiet HEAD -- ; then
52
+ echo "The following files have changes that weren't committed:"
53
+ git diff --name-status
54
+ echo "\nDetailed diff for app/assets/javascripts/turbo files:"
55
+ git diff app/assets/javascripts/turbo*
56
+ exit 1
57
+ fi
0 commit comments