mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-08 22:08:03 -05:00
## CHANGES - Pass version parameter to changelog generation workflow - Update ProcessIncomingPRs method to accept version string - Add commit SHA tracking to prevent duplicate entries - Modify process-prs flag to require version parameter - Improve changelog formatting with proper spacing - Update configuration to use ProcessPRsVersion string field - Enhance direct commit filtering with SHA exclusion - Update documentation to reflect version parameter requirement
20 lines
411 B
Go
20 lines
411 B
Go
package config
|
|
|
|
type Config struct {
|
|
RepoPath string
|
|
OutputFile string
|
|
Limit int
|
|
Version string
|
|
SaveData bool
|
|
CacheFile string
|
|
NoCache bool
|
|
RebuildCache bool
|
|
GitHubToken string
|
|
ForcePRSync bool
|
|
EnableAISummary bool
|
|
IncomingPR int
|
|
ProcessPRsVersion string
|
|
IncomingDir string
|
|
Push bool
|
|
}
|