diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-10-12 07:47:33 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-12 07:47:33 +1100 |
commit | a89531972dbe1b686a50512d51ea87a7a020f8bc (patch) | |
tree | 35d2c4576cb0e7c21f83084ab03571696e916809 /buildSrc | |
parent | 19158f28ae6a2aaa005f150bfa5d1d6677c2a67a (diff) | |
download | skyhanni-a89531972dbe1b686a50512d51ea87a7a020f8bc.tar.gz skyhanni-a89531972dbe1b686a50512d51ea87a7a020f8bc.tar.bz2 skyhanni-a89531972dbe1b686a50512d51ea87a7a020f8bc.zip |
Fix: Verify Changelog not adding comment describing problem (Maybe) (#2723)
Diffstat (limited to 'buildSrc')
-rw-r--r-- | buildSrc/src/main/kotlin/skyhannibuildsystem/ChangelogVerification.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildSrc/src/main/kotlin/skyhannibuildsystem/ChangelogVerification.kt b/buildSrc/src/main/kotlin/skyhannibuildsystem/ChangelogVerification.kt index 422a62cb1..8ac54d6fc 100644 --- a/buildSrc/src/main/kotlin/skyhannibuildsystem/ChangelogVerification.kt +++ b/buildSrc/src/main/kotlin/skyhannibuildsystem/ChangelogVerification.kt @@ -45,6 +45,7 @@ abstract class ChangelogVerification : DefaultTask() { // Export errors so that they can be listed in the PR comment val errorFile = File(outputDirectory.get().asFile, "changelog_errors.txt") + println("saved error file to: ${errorFile.path}") errorFile.appendText("I have detected some issues with your pull request:\n\n") |