@@ -67,6 +67,8 @@ import kotlin.collections.toTypedArray
6767 * @param randSeed Provide your own seeding string for the randomness
6868 * @param removeDuplicates Allows you to remove duplicate blog posts from multiple sources
6969 * @param skipCommit Skips committing the changes to repo
70+ * @param dummyCommitMessage Dummy commit message, This is when the workflow is doing automated
71+ * commits to keep the repository active
7072 * @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
7173 * the binding
7274 * @param _customVersion Allows overriding action's version, for example to use a specific minor
@@ -202,6 +204,11 @@ public data class BlogPostWorkflowV1 private constructor(
202204 * Skips committing the changes to repo
203205 */
204206 public val skipCommit : Boolean? = null ,
207+ /* *
208+ * Dummy commit message, This is when the workflow is doing automated commits to keep the
209+ * repository active
210+ */
211+ public val dummyCommitMessage : String? = null ,
205212 /* *
206213 * Type-unsafe map where you can put any inputs that are not yet supported by the binding
207214 */
@@ -246,6 +253,7 @@ public data class BlogPostWorkflowV1 private constructor(
246253 randSeed: String? = null ,
247254 removeDuplicates: Boolean? = null ,
248255 skipCommit: Boolean? = null ,
256+ dummyCommitMessage: String? = null ,
249257 _customInputs : Map <String , String > = mapOf (),
250258 _customVersion : String? = null ,
251259 ) : this (ghToken= ghToken, readmePath= readmePath, maxPostCount= maxPostCount, feedList= feedList,
@@ -259,7 +267,8 @@ public data class BlogPostWorkflowV1 private constructor(
259267 retryCount= retryCount, retryWaitTime= retryWaitTime, feedNames= feedNames,
260268 disableHtmlEncoding= disableHtmlEncoding, categoriesTemplate= categoriesTemplate,
261269 disableItemValidation= disableItemValidation, filterDates= filterDates, randSeed= randSeed,
262- removeDuplicates= removeDuplicates, skipCommit= skipCommit, _customInputs = _customInputs ,
270+ removeDuplicates= removeDuplicates, skipCommit= skipCommit,
271+ dummyCommitMessage= dummyCommitMessage, _customInputs = _customInputs ,
263272 _customVersion = _customVersion )
264273
265274 @Suppress(" SpreadOperator" )
@@ -296,6 +305,7 @@ public data class BlogPostWorkflowV1 private constructor(
296305 randSeed?.let { " rand_seed" to it },
297306 removeDuplicates?.let { " remove_duplicates" to it.toString() },
298307 skipCommit?.let { " skip_commit" to it.toString() },
308+ dummyCommitMessage?.let { " dummy_commit_message" to it },
299309 * _customInputs .toList().toTypedArray(),
300310 ).toTypedArray()
301311 )
0 commit comments