feat: allow customization of report file name prefix with support for tokens - #742
Merged
Minituff merged 2 commits intoSep 7, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #742 +/- ##
==========================================
+ Coverage 92.29% 92.39% +0.10%
==========================================
Files 9 9
Lines 1129 1144 +15
==========================================
+ Hits 1042 1057 +15
Misses 87 87 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Minituff
deleted the
740-feature-request-allow-custom-names-for-backup-text-files
branch
September 7, 2026 18:45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Report File Name
Customize the prefix used for the report file's name. The date is always appended (the report file is always named
<prefix> - YYYY-MM-DD.txt), so this only changes the prefix — it will not disable daily-dated report files.This is most useful when running multiple Nautical instances against the same
DEST_LOCATION: by default, every instance writes to the sameBackup Report - YYYY-MM-DD.txt, so whichever instance runs last silently overwrites the others' report. Giving each instance a distinctREPORT_FILE_NAMEavoids this.Example 1
The
{PREFIX}token is replaced withLABEL_PREFIX, so the report file will be namednautical-backup.inst1 - 2024-04-05.txt— useful for multiple instances sharing oneDEST_LOCATION.Example 2
REPORT_FILE_NAME=server-1-backupA plain literal prefix. The report file will be named
server-1-backup - 2024-04-05.txt.