File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2424 git fetch origin
2525 # Get the diff from the push
2626 # Get only the changed lines from the diff
27- DIFF="$(git diff -U0 ${{github.event.before}} ${{github.event.after}} -- source/locale/en/*.dic | grep '^[+-]')"
27+ DIFF="$(git diff -U0 master beta -- source/locale/en/*.dic | grep '^[+-]')"
2828 DOUBLE_SPACED_DIFF=$(echo "$DIFF" | sed G)
2929 # Store diff in multi-line environment variable
3030 echo "DIFF<<EOF"$'\n'"$DIFF"$'\n'EOF >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 44
55complexSymbols:
66# identifier regexp
7+ # Sentence endings.
78. sentence ending (?<=[^\s.])\.(?=[\"'”’)\s]|$)
89! sentence ending (?<=[^\s!])\!(?=[\"'”’)\s]|$)
910? sentence ending (?<=[^\s?])\?(?=[\"'”’)\s]|$)
10- # Sentence endings.
1111# Phrase endings.
1212; phrase ending (?<=[^\s;]);(?=\s|$)
1313: phrase ending (?<=[^\s:]):(?=\s|$)
1414# Series of dots used for visual presentation, e.g. in table of contents
15- multiples . \.{4,}
15+ multiple . \.{4,}
1616# Others
1717decimal point (?<![^\d -])\.(?=\d)
1818in-word ' (?<=[^\W_])['’]
You can’t perform that action at this time.
0 commit comments