You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,8 @@ Tutorial to use with: https://github.com/andry81-devops/github-accum-stats</h4>
80
80
81
81
* The script can insert the time string in format `HH:MMZ` additionally after the date in each commit message (by default inserts only a date for shorter commit messages; `ENABLE_COMMIT_MESSAGE_DATE_WITH_TIME=1`)
82
82
83
+
* The script can insert the last changed date offset string additionally after the datetime in each commit message in format `-DDT` to note the closest changed date (`ENABLE_COMMIT_MESSAGE_DATE_TIME_WITH_LAST_CHANGED_DATE_OFFSET=1`)
84
+
83
85
# USAGE
84
86
85
87
> **Warning** You must replace all placeholder into respective values:
@@ -133,7 +135,8 @@ jobs:
133
135
# CONTINUE_ON_EMPTY_CHANGES=1
134
136
# CONTINUE_ON_RESIDUAL_CHANGES=1
135
137
# ENABLE_GENERATE_CHANGELOG_FILE=1
136
-
# ENABLE_COMMIT_MESSAGE_DATE_WITH_TIME=1
138
+
# ENABLE_COMMIT_MESSAGE_DATE_WITH_TIME=1 # insert the time string in format `HH:MMZ` additionally after the date in each commit message
139
+
# ENABLE_COMMIT_MESSAGE_DATE_TIME_WITH_LAST_CHANGED_DATE_OFFSET=1 # insert datetime suffix as offset to the last changed date in format `-DDT` to note the closest changed date
137
140
# CHANGELOG_FILE=changelog.txt
138
141
```
139
142
@@ -181,7 +184,8 @@ jobs:
181
184
# CONTINUE_ON_EMPTY_CHANGES=1
182
185
# CONTINUE_ON_RESIDUAL_CHANGES=1
183
186
# ENABLE_GENERATE_CHANGELOG_FILE=1
184
-
# ENABLE_COMMIT_MESSAGE_DATE_WITH_TIME=1
187
+
# ENABLE_COMMIT_MESSAGE_DATE_WITH_TIME=1 # insert the time string in format `HH:MMZ` additionally after the date in each commit message
188
+
# ENABLE_COMMIT_MESSAGE_DATE_TIME_WITH_LAST_CHANGED_DATE_OFFSET=1 # insert datetime suffix as offset to the last changed date in format `-DDT` to note the closest changed date
Copy file name to clipboardExpand all lines: action.yml
+2-1
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,8 @@ inputs:
78
78
# CONTINUE_ON_EMPTY_CHANGES=1
79
79
# CONTINUE_ON_RESIDUAL_CHANGES=1
80
80
# ENABLE_GENERATE_CHANGELOG_FILE=1
81
-
# ENABLE_COMMIT_MESSAGE_DATE_WITH_TIME=1 # insert the time string in format HH:MMZ additionally after the date in each commit message
81
+
# ENABLE_COMMIT_MESSAGE_DATE_WITH_TIME=1 # insert the time string in format `HH:MMZ` additionally after the date in each commit message
82
+
# ENABLE_COMMIT_MESSAGE_DATE_TIME_WITH_LAST_CHANGED_DATE_OFFSET=1 # insert datetime suffix as offset to the last changed date in format `-DDT` to note the closest changed date
0 commit comments