From 2c2e64a041237b340aef8c0ce270ee0d13cacb99 Mon Sep 17 00:00:00 2001 From: Nina Polshakova Date: Mon, 25 Oct 2021 16:30:40 -0400 Subject: [PATCH 01/17] skip ci label added when present in changelog --- changelog/v0.21.24/skip-ci-label-support.yaml | 5 +++++ changelogutils/changelog.go | 10 ++++++++++ 2 files changed, 15 insertions(+) create mode 100644 changelog/v0.21.24/skip-ci-label-support.yaml diff --git a/changelog/v0.21.24/skip-ci-label-support.yaml b/changelog/v0.21.24/skip-ci-label-support.yaml new file mode 100644 index 00000000..a8f5224e --- /dev/null +++ b/changelog/v0.21.24/skip-ci-label-support.yaml @@ -0,0 +1,5 @@ +changelog: + - type: NEW_FEATURE + description: Allow skipping ci when label is added to changelog. + issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 + resolvesIssue: false \ No newline at end of file diff --git a/changelogutils/changelog.go b/changelogutils/changelog.go index fb31b43d..c3e27936 100644 --- a/changelogutils/changelog.go +++ b/changelogutils/changelog.go @@ -24,8 +24,10 @@ type ChangelogEntry struct { DependencyRepo string `json:"dependencyRepo,omitempty"` DependencyTag string `json:"dependencyTag,omitempty"` ResolvesIssue *bool `json:"resolvesIssue,omitempty"` + SkipCI *bool `json:"skipCI,omitempty"` } +// default true func (c *ChangelogEntry) GetResolvesIssue() bool { if c.ResolvesIssue == nil { return true @@ -33,6 +35,14 @@ func (c *ChangelogEntry) GetResolvesIssue() bool { return *c.ResolvesIssue } +// default false +func (c *ChangelogEntry) GetSkipCI() bool { + if c.SkipCI == nil { + return false + } + return *c.SkipCI +} + type ChangelogFile struct { Entries []*ChangelogEntry `json:"changelog,omitempty"` ReleaseStableApi *bool `json:"releaseStableApi,omitempty"` From 0dee2629308a25f703d184a61b042105862f6180 Mon Sep 17 00:00:00 2001 From: Nina Polshakova Date: Mon, 25 Oct 2021 16:38:43 -0400 Subject: [PATCH 02/17] fmt --- changelogutils/changelog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogutils/changelog.go b/changelogutils/changelog.go index c3e27936..37e42e3a 100644 --- a/changelogutils/changelog.go +++ b/changelogutils/changelog.go @@ -24,7 +24,7 @@ type ChangelogEntry struct { DependencyRepo string `json:"dependencyRepo,omitempty"` DependencyTag string `json:"dependencyTag,omitempty"` ResolvesIssue *bool `json:"resolvesIssue,omitempty"` - SkipCI *bool `json:"skipCI,omitempty"` + SkipCI *bool `json:"skipCI,omitempty"` } // default true From 9f7a39aa4e1d0364cf07bc9b1c14d57b549d00f5 Mon Sep 17 00:00:00 2001 From: Nina Polshakova Date: Mon, 25 Oct 2021 16:49:27 -0400 Subject: [PATCH 03/17] test --- changelogutils/changelog_test.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/changelogutils/changelog_test.go b/changelogutils/changelog_test.go index 89c3f20d..716090a8 100644 --- a/changelogutils/changelog_test.go +++ b/changelogutils/changelog_test.go @@ -76,11 +76,14 @@ var _ = Describe("ChangelogTest", func() { - type: FIX description: foo issueLink: bar - resolvesIssue: false` + resolvesIssue: false + skipCI: true` err := yaml.Unmarshal([]byte(contents), &clf) Expect(err).NotTo(HaveOccurred()) boolValue := new(bool) *boolValue = false + skipCIValue := new(bool) + *skipCIValue = false expected := changelogutils.ChangelogFile{ Entries: []*changelogutils.ChangelogEntry{ { @@ -88,6 +91,7 @@ var _ = Describe("ChangelogTest", func() { Description: "foo", IssueLink: "bar", ResolvesIssue: boolValue, + SkipCI: skipCIValue, }, }, } From 9dd18f8093bd26f7f7e2ddcedcb348f6cb97b921 Mon Sep 17 00:00:00 2001 From: Nina Polshakova Date: Mon, 25 Oct 2021 16:56:33 -0400 Subject: [PATCH 04/17] test skipci --- changelogutils/changelog_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogutils/changelog_test.go b/changelogutils/changelog_test.go index 716090a8..cc8ece87 100644 --- a/changelogutils/changelog_test.go +++ b/changelogutils/changelog_test.go @@ -83,7 +83,7 @@ var _ = Describe("ChangelogTest", func() { boolValue := new(bool) *boolValue = false skipCIValue := new(bool) - *skipCIValue = false + *skipCIValue = true expected := changelogutils.ChangelogFile{ Entries: []*changelogutils.ChangelogEntry{ { From d822ec724bd807834985199a65bd7358988e6c1a Mon Sep 17 00:00:00 2001 From: Nina Polshakova Date: Tue, 26 Oct 2021 09:45:35 -0400 Subject: [PATCH 05/17] docs type in changelog --- changelogutils/changelog.go | 2 +- changelogutils/changelog_test.go | 5 +++++ changelogutils/entrytype.go | 5 ++++- changelogutils/markdown.go | 24 ++++++++++++++++++++++++ changelogutils/reader.go | 2 +- 5 files changed, 35 insertions(+), 3 deletions(-) diff --git a/changelogutils/changelog.go b/changelogutils/changelog.go index 37e42e3a..3e274cf3 100644 --- a/changelogutils/changelog.go +++ b/changelogutils/changelog.go @@ -228,7 +228,7 @@ func ReadChangelogFile(fs afero.Fs, path string) (*ChangelogFile, error) { } for _, entry := range changelog.Entries { - if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP { + if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP && entry.Type != DOCS { if entry.IssueLink == "" { return nil, eris.Errorf("Changelog entries must have an issue link") } diff --git a/changelogutils/changelog_test.go b/changelogutils/changelog_test.go index cc8ece87..3d9af434 100644 --- a/changelogutils/changelog_test.go +++ b/changelogutils/changelog_test.go @@ -348,6 +348,7 @@ var _ = Describe("ChangelogTest", func() { It("can render changelog", func() { changelog := getChangelog("v0.0.1", "blah", "closing", getChangelogFile( + getEntry(changelogutils.DOCS, "docs for foo", "foo docs"), getEntry(changelogutils.FIX, "fixes foo ", " foo "), // testing trim space getEntry(changelogutils.BREAKING_CHANGE, "fixes bar", "bar"), getEntry(changelogutils.NEW_FEATURE, "adds baz", "baz")), @@ -369,6 +370,10 @@ var _ = Describe("ChangelogTest", func() { - fixes foo (foo) - fixes foo2 (foo2) +**Docs** + +- docs for foo (foo docs) + closing ` diff --git a/changelogutils/entrytype.go b/changelogutils/entrytype.go index 5864e3c9..bc56adf2 100644 --- a/changelogutils/entrytype.go +++ b/changelogutils/entrytype.go @@ -15,6 +15,7 @@ const ( DEPENDENCY_BUMP HELM UPGRADE + DOCS ) var ( @@ -26,6 +27,7 @@ var ( "DEPENDENCY_BUMP": DEPENDENCY_BUMP, "HELM": HELM, "UPGRADE": UPGRADE, + "DOCS": DOCS, } _ChangelogEntryValueToType = map[ChangelogEntryType]string{ @@ -36,11 +38,12 @@ var ( DEPENDENCY_BUMP: "DEPENDENCY_BUMP", HELM: "HELM", UPGRADE: "UPGRADE", + DOCS: "DOCS", } ) func (clt ChangelogEntryType) String() string { - return [...]string{"BREAKING_CHANGE", "FIX", "NEW_FEATURE", "NON_USER_FACING", "DEPENDENCY_BUMP", "HELM", "UPGRADE"}[clt] + return [...]string{"BREAKING_CHANGE", "FIX", "NEW_FEATURE", "NON_USER_FACING", "DEPENDENCY_BUMP", "HELM", "UPGRADE", "DOCS"}[clt] } func (clt ChangelogEntryType) BreakingChange() bool { diff --git a/changelogutils/markdown.go b/changelogutils/markdown.go index 62e9f138..bd8a201d 100644 --- a/changelogutils/markdown.go +++ b/changelogutils/markdown.go @@ -112,6 +112,11 @@ func GenerateChangelogMarkdown(changelog *Changelog) string { output = output + "**Fixes**\n\n" + fixes + "\n" } + docs := renderDocsEntries(changelog) + if docs != "" { + output = output + "**Docs**\n\n" + docs + "\n" + } + if changelog.Closing != "" { output = output + changelog.Closing + "\n\n" } @@ -134,6 +139,25 @@ func renderDependencyBumps(changelog *Changelog) string { return output } +func renderDocsEntries(changelog *Changelog) string { + output := "" + for _, file := range changelog.Files { + for _, entry := range file.Entries { + if entry.Type == DOCS { + description := strings.TrimSpace(entry.Description) + // optional link + if entry.IssueLink != "" { + link := strings.TrimSpace(entry.IssueLink) + output = output + "- " + description + "(" + link + ")" + "\n" + } else { + output = output + "- " + description + "\n" + } + } + } + } + return output +} + func renderChangelogEntries(changelog *Changelog, entryType ChangelogEntryType) string { output := "" for _, file := range changelog.Files { diff --git a/changelogutils/reader.go b/changelogutils/reader.go index dc2f871b..0da9741b 100644 --- a/changelogutils/reader.go +++ b/changelogutils/reader.go @@ -110,7 +110,7 @@ func (c *changelogReader) ReadChangelogFile(ctx context.Context, path string) (* } for _, entry := range changelog.Entries { - if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP { + if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP && entry.Type != DOCS { if entry.IssueLink == "" { return nil, MissingIssueLinkError } From cf82741d9727b5ff36ce9b6e56ed8d9c1158beb8 Mon Sep 17 00:00:00 2001 From: Nina Polshakova Date: Tue, 26 Oct 2021 17:59:04 -0400 Subject: [PATCH 06/17] revert adding docs type --- changelogutils/changelog.go | 2 +- changelogutils/changelog_test.go | 5 ----- changelogutils/entrytype.go | 7 ++----- changelogutils/markdown.go | 24 ------------------------ changelogutils/reader.go | 2 +- 5 files changed, 4 insertions(+), 36 deletions(-) diff --git a/changelogutils/changelog.go b/changelogutils/changelog.go index 3e274cf3..37e42e3a 100644 --- a/changelogutils/changelog.go +++ b/changelogutils/changelog.go @@ -228,7 +228,7 @@ func ReadChangelogFile(fs afero.Fs, path string) (*ChangelogFile, error) { } for _, entry := range changelog.Entries { - if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP && entry.Type != DOCS { + if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP { if entry.IssueLink == "" { return nil, eris.Errorf("Changelog entries must have an issue link") } diff --git a/changelogutils/changelog_test.go b/changelogutils/changelog_test.go index 3d9af434..cc8ece87 100644 --- a/changelogutils/changelog_test.go +++ b/changelogutils/changelog_test.go @@ -348,7 +348,6 @@ var _ = Describe("ChangelogTest", func() { It("can render changelog", func() { changelog := getChangelog("v0.0.1", "blah", "closing", getChangelogFile( - getEntry(changelogutils.DOCS, "docs for foo", "foo docs"), getEntry(changelogutils.FIX, "fixes foo ", " foo "), // testing trim space getEntry(changelogutils.BREAKING_CHANGE, "fixes bar", "bar"), getEntry(changelogutils.NEW_FEATURE, "adds baz", "baz")), @@ -370,10 +369,6 @@ var _ = Describe("ChangelogTest", func() { - fixes foo (foo) - fixes foo2 (foo2) -**Docs** - -- docs for foo (foo docs) - closing ` diff --git a/changelogutils/entrytype.go b/changelogutils/entrytype.go index bc56adf2..ea75f40c 100644 --- a/changelogutils/entrytype.go +++ b/changelogutils/entrytype.go @@ -15,7 +15,6 @@ const ( DEPENDENCY_BUMP HELM UPGRADE - DOCS ) var ( @@ -27,7 +26,6 @@ var ( "DEPENDENCY_BUMP": DEPENDENCY_BUMP, "HELM": HELM, "UPGRADE": UPGRADE, - "DOCS": DOCS, } _ChangelogEntryValueToType = map[ChangelogEntryType]string{ @@ -38,12 +36,11 @@ var ( DEPENDENCY_BUMP: "DEPENDENCY_BUMP", HELM: "HELM", UPGRADE: "UPGRADE", - DOCS: "DOCS", } ) func (clt ChangelogEntryType) String() string { - return [...]string{"BREAKING_CHANGE", "FIX", "NEW_FEATURE", "NON_USER_FACING", "DEPENDENCY_BUMP", "HELM", "UPGRADE", "DOCS"}[clt] + return [...]string{"BREAKING_CHANGE", "FIX", "NEW_FEATURE", "NON_USER_FACING", "DEPENDENCY_BUMP", "HELM", "UPGRADE"}[clt] } func (clt ChangelogEntryType) BreakingChange() bool { @@ -76,4 +73,4 @@ func (clt *ChangelogEntryType) UnmarshalJSON(data []byte) error { } *clt = v return nil -} +} \ No newline at end of file diff --git a/changelogutils/markdown.go b/changelogutils/markdown.go index bd8a201d..62e9f138 100644 --- a/changelogutils/markdown.go +++ b/changelogutils/markdown.go @@ -112,11 +112,6 @@ func GenerateChangelogMarkdown(changelog *Changelog) string { output = output + "**Fixes**\n\n" + fixes + "\n" } - docs := renderDocsEntries(changelog) - if docs != "" { - output = output + "**Docs**\n\n" + docs + "\n" - } - if changelog.Closing != "" { output = output + changelog.Closing + "\n\n" } @@ -139,25 +134,6 @@ func renderDependencyBumps(changelog *Changelog) string { return output } -func renderDocsEntries(changelog *Changelog) string { - output := "" - for _, file := range changelog.Files { - for _, entry := range file.Entries { - if entry.Type == DOCS { - description := strings.TrimSpace(entry.Description) - // optional link - if entry.IssueLink != "" { - link := strings.TrimSpace(entry.IssueLink) - output = output + "- " + description + "(" + link + ")" + "\n" - } else { - output = output + "- " + description + "\n" - } - } - } - } - return output -} - func renderChangelogEntries(changelog *Changelog, entryType ChangelogEntryType) string { output := "" for _, file := range changelog.Files { diff --git a/changelogutils/reader.go b/changelogutils/reader.go index 0da9741b..dc2f871b 100644 --- a/changelogutils/reader.go +++ b/changelogutils/reader.go @@ -110,7 +110,7 @@ func (c *changelogReader) ReadChangelogFile(ctx context.Context, path string) (* } for _, entry := range changelog.Entries { - if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP && entry.Type != DOCS { + if entry.Type != NON_USER_FACING && entry.Type != DEPENDENCY_BUMP { if entry.IssueLink == "" { return nil, MissingIssueLinkError } From 7055a6bc26e08245c357a613c42d0e0a5137b799 Mon Sep 17 00:00:00 2001 From: Nina Polshakova Date: Tue, 26 Oct 2021 18:00:58 -0400 Subject: [PATCH 07/17] fmt --- changelogutils/changelog_test.go | 2 +- changelogutils/entrytype.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/changelogutils/changelog_test.go b/changelogutils/changelog_test.go index cc8ece87..a97ae950 100644 --- a/changelogutils/changelog_test.go +++ b/changelogutils/changelog_test.go @@ -91,7 +91,7 @@ var _ = Describe("ChangelogTest", func() { Description: "foo", IssueLink: "bar", ResolvesIssue: boolValue, - SkipCI: skipCIValue, + SkipCI: skipCIValue, }, }, } diff --git a/changelogutils/entrytype.go b/changelogutils/entrytype.go index ea75f40c..5864e3c9 100644 --- a/changelogutils/entrytype.go +++ b/changelogutils/entrytype.go @@ -73,4 +73,4 @@ func (clt *ChangelogEntryType) UnmarshalJSON(data []byte) error { } *clt = v return nil -} \ No newline at end of file +} From 7beea14e038c397fcc27868e9175f6ccf9ee147f Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Fri, 12 Nov 2021 23:05:40 +0000 Subject: [PATCH 08/17] Adding changelog file to new location --- changelog/v0.21.25/skip-ci-label-support.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelog/v0.21.25/skip-ci-label-support.yaml diff --git a/changelog/v0.21.25/skip-ci-label-support.yaml b/changelog/v0.21.25/skip-ci-label-support.yaml new file mode 100644 index 00000000..a8f5224e --- /dev/null +++ b/changelog/v0.21.25/skip-ci-label-support.yaml @@ -0,0 +1,5 @@ +changelog: + - type: NEW_FEATURE + description: Allow skipping ci when label is added to changelog. + issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 + resolvesIssue: false \ No newline at end of file From 6bab5d15822bfbc61069b7e04b79429aa5f7656d Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Fri, 12 Nov 2021 23:05:40 +0000 Subject: [PATCH 09/17] Deleting changelog file from old location --- changelog/v0.21.24/skip-ci-label-support.yaml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 changelog/v0.21.24/skip-ci-label-support.yaml diff --git a/changelog/v0.21.24/skip-ci-label-support.yaml b/changelog/v0.21.24/skip-ci-label-support.yaml deleted file mode 100644 index a8f5224e..00000000 --- a/changelog/v0.21.24/skip-ci-label-support.yaml +++ /dev/null @@ -1,5 +0,0 @@ -changelog: - - type: NEW_FEATURE - description: Allow skipping ci when label is added to changelog. - issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 - resolvesIssue: false \ No newline at end of file From 16e9b6325d25a90a431755f7d4cddbfa0df014f1 Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Mon, 25 Apr 2022 22:27:49 +0000 Subject: [PATCH 10/17] Adding changelog file to new location --- changelog/v0.21.26/skip-ci-label-support.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelog/v0.21.26/skip-ci-label-support.yaml diff --git a/changelog/v0.21.26/skip-ci-label-support.yaml b/changelog/v0.21.26/skip-ci-label-support.yaml new file mode 100644 index 00000000..a8f5224e --- /dev/null +++ b/changelog/v0.21.26/skip-ci-label-support.yaml @@ -0,0 +1,5 @@ +changelog: + - type: NEW_FEATURE + description: Allow skipping ci when label is added to changelog. + issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 + resolvesIssue: false \ No newline at end of file From e96ff547241ddc6bf5ce48c9d64ced1aabec49c9 Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Mon, 25 Apr 2022 22:27:49 +0000 Subject: [PATCH 11/17] Deleting changelog file from old location --- changelog/v0.21.25/skip-ci-label-support.yaml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 changelog/v0.21.25/skip-ci-label-support.yaml diff --git a/changelog/v0.21.25/skip-ci-label-support.yaml b/changelog/v0.21.25/skip-ci-label-support.yaml deleted file mode 100644 index a8f5224e..00000000 --- a/changelog/v0.21.25/skip-ci-label-support.yaml +++ /dev/null @@ -1,5 +0,0 @@ -changelog: - - type: NEW_FEATURE - description: Allow skipping ci when label is added to changelog. - issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 - resolvesIssue: false \ No newline at end of file From 2516187a0f8f1d527dc7972605ca783391ab7dbe Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Tue, 10 May 2022 13:24:48 +0000 Subject: [PATCH 12/17] Adding changelog file to new location --- changelog/v0.21.27/skip-ci-label-support.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelog/v0.21.27/skip-ci-label-support.yaml diff --git a/changelog/v0.21.27/skip-ci-label-support.yaml b/changelog/v0.21.27/skip-ci-label-support.yaml new file mode 100644 index 00000000..a8f5224e --- /dev/null +++ b/changelog/v0.21.27/skip-ci-label-support.yaml @@ -0,0 +1,5 @@ +changelog: + - type: NEW_FEATURE + description: Allow skipping ci when label is added to changelog. + issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 + resolvesIssue: false \ No newline at end of file From ca22642437a3ba6cf947233391ff34e079a16099 Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Tue, 10 May 2022 13:24:49 +0000 Subject: [PATCH 13/17] Deleting changelog file from old location --- changelog/v0.21.26/skip-ci-label-support.yaml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 changelog/v0.21.26/skip-ci-label-support.yaml diff --git a/changelog/v0.21.26/skip-ci-label-support.yaml b/changelog/v0.21.26/skip-ci-label-support.yaml deleted file mode 100644 index a8f5224e..00000000 --- a/changelog/v0.21.26/skip-ci-label-support.yaml +++ /dev/null @@ -1,5 +0,0 @@ -changelog: - - type: NEW_FEATURE - description: Allow skipping ci when label is added to changelog. - issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 - resolvesIssue: false \ No newline at end of file From 5d3d58095f973bc5eddf59ef2136e7a04bd1d658 Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Mon, 11 Jul 2022 19:31:18 +0000 Subject: [PATCH 14/17] Adding changelog file to new location --- changelog/v0.21.28/skip-ci-label-support.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelog/v0.21.28/skip-ci-label-support.yaml diff --git a/changelog/v0.21.28/skip-ci-label-support.yaml b/changelog/v0.21.28/skip-ci-label-support.yaml new file mode 100644 index 00000000..a8f5224e --- /dev/null +++ b/changelog/v0.21.28/skip-ci-label-support.yaml @@ -0,0 +1,5 @@ +changelog: + - type: NEW_FEATURE + description: Allow skipping ci when label is added to changelog. + issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 + resolvesIssue: false \ No newline at end of file From 4eb01c951dbcf673fa57eefb8919b5a446e3925a Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Mon, 11 Jul 2022 19:31:18 +0000 Subject: [PATCH 15/17] Deleting changelog file from old location --- changelog/v0.21.27/skip-ci-label-support.yaml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 changelog/v0.21.27/skip-ci-label-support.yaml diff --git a/changelog/v0.21.27/skip-ci-label-support.yaml b/changelog/v0.21.27/skip-ci-label-support.yaml deleted file mode 100644 index a8f5224e..00000000 --- a/changelog/v0.21.27/skip-ci-label-support.yaml +++ /dev/null @@ -1,5 +0,0 @@ -changelog: - - type: NEW_FEATURE - description: Allow skipping ci when label is added to changelog. - issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 - resolvesIssue: false \ No newline at end of file From 63d373c35809b87ac171d72686057266ebdcb3f8 Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Tue, 26 Jul 2022 16:51:19 +0000 Subject: [PATCH 16/17] Adding changelog file to new location --- changelog/v0.21.29/skip-ci-label-support.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelog/v0.21.29/skip-ci-label-support.yaml diff --git a/changelog/v0.21.29/skip-ci-label-support.yaml b/changelog/v0.21.29/skip-ci-label-support.yaml new file mode 100644 index 00000000..a8f5224e --- /dev/null +++ b/changelog/v0.21.29/skip-ci-label-support.yaml @@ -0,0 +1,5 @@ +changelog: + - type: NEW_FEATURE + description: Allow skipping ci when label is added to changelog. + issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 + resolvesIssue: false \ No newline at end of file From 9483ededcfecd4b90f455d0f5403b24bd0dab135 Mon Sep 17 00:00:00 2001 From: changelog-bot Date: Tue, 26 Jul 2022 16:51:19 +0000 Subject: [PATCH 17/17] Deleting changelog file from old location --- changelog/v0.21.28/skip-ci-label-support.yaml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 changelog/v0.21.28/skip-ci-label-support.yaml diff --git a/changelog/v0.21.28/skip-ci-label-support.yaml b/changelog/v0.21.28/skip-ci-label-support.yaml deleted file mode 100644 index a8f5224e..00000000 --- a/changelog/v0.21.28/skip-ci-label-support.yaml +++ /dev/null @@ -1,5 +0,0 @@ -changelog: - - type: NEW_FEATURE - description: Allow skipping ci when label is added to changelog. - issueLink: https://github.com/solo-io/gloo-mesh-enterprise/issues/1127 - resolvesIssue: false \ No newline at end of file