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 24
24
git fetch origin
25
25
# Get the diff from the push
26
26
# 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 '^[+-]')"
28
28
DOUBLE_SPACED_DIFF=$(echo "$DIFF" | sed G)
29
29
# Store diff in multi-line environment variable
30
30
echo "DIFF<<EOF"$'\n'"$DIFF"$'\n'EOF >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 4
4
5
5
complexSymbols:
6
6
# identifier regexp
7
+ # Sentence endings.
7
8
. sentence ending (?<=[^\s.])\.(?=[\"'”’)\s]|$)
8
9
! sentence ending (?<=[^\s!])\!(?=[\"'”’)\s]|$)
9
10
? sentence ending (?<=[^\s?])\?(?=[\"'”’)\s]|$)
10
- # Sentence endings.
11
11
# Phrase endings.
12
12
; phrase ending (?<=[^\s;]);(?=\s|$)
13
13
: phrase ending (?<=[^\s:]):(?=\s|$)
14
14
# Series of dots used for visual presentation, e.g. in table of contents
15
- multiples . \.{4,}
15
+ multiple . \.{4,}
16
16
# Others
17
17
decimal point (?<![^\d -])\.(?=\d)
18
18
in-word ' (?<=[^\W_])['’]
You can’t perform that action at this time.
0 commit comments