From 324b8a73c2710ce83a58cf6b80109e2e17cc32d5 Mon Sep 17 00:00:00 2001 From: Nick Misasi Date: Fri, 26 Sep 2025 13:20:42 -0400 Subject: [PATCH 1/3] Add enterprise-advanced license option to update command docs --- server/command_update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/command_update.go b/server/command_update.go index 18fb606..fa44777 100644 --- a/server/command_update.go +++ b/server/command_update.go @@ -13,7 +13,7 @@ import ( func getUpdateFlagSet() *flag.FlagSet { updateFlagSet := flag.NewFlagSet("update", flag.ContinueOnError) updateFlagSet.String("version", "", "Mattermost version to run, e.g. '9.1.0'") - updateFlagSet.String("license", "", "The enterprise license to use. Can be 'enterprise', 'professional', 'e20', 'e10', or 'te'") + updateFlagSet.String("license", "", "The enterprise license to use. Can be 'enterprise-advanced', 'enterprise', 'professional', 'e20', 'e10', or 'te'") updateFlagSet.String("size", "", "Size of the Mattermost installation e.g. 'miniSingleton' or 'miniHA'") updateFlagSet.String("image", "", fmt.Sprintf("Docker image repository, can be %s", strings.Join(dockerRepoWhitelist, ", "))) updateFlagSet.StringSlice("env", []string{}, "Environment variables in form: ENV1=test,ENV2=test") From 14d3c2de88dc83331ab60c96e174ffd4aabaaeb1 Mon Sep 17 00:00:00 2001 From: Nick Misasi Date: Fri, 3 Oct 2025 09:38:23 -0400 Subject: [PATCH 2/3] Update server/command_update.go --- server/command_update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/command_update.go b/server/command_update.go index fa44777..b3cad61 100644 --- a/server/command_update.go +++ b/server/command_update.go @@ -13,7 +13,7 @@ import ( func getUpdateFlagSet() *flag.FlagSet { updateFlagSet := flag.NewFlagSet("update", flag.ContinueOnError) updateFlagSet.String("version", "", "Mattermost version to run, e.g. '9.1.0'") - updateFlagSet.String("license", "", "The enterprise license to use. Can be 'enterprise-advanced', 'enterprise', 'professional', 'e20', 'e10', or 'te'") + updateFlagSet.String("license", "", "The Enterprise license to use. Can be 'enterprise-advanced', 'enterprise', 'professional', 'e20', 'e10', or 'te'") updateFlagSet.String("size", "", "Size of the Mattermost installation e.g. 'miniSingleton' or 'miniHA'") updateFlagSet.String("image", "", fmt.Sprintf("Docker image repository, can be %s", strings.Join(dockerRepoWhitelist, ", "))) updateFlagSet.StringSlice("env", []string{}, "Environment variables in form: ENV1=test,ENV2=test") From f393534702a2030bd3986055a3c170a5d01b13c0 Mon Sep 17 00:00:00 2001 From: Andre Leite Date: Fri, 3 Oct 2025 19:06:11 -0300 Subject: [PATCH 3/3] add write permission as requested by the reusable workflow --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c05ae6..270f2ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ on: permissions: contents: read + id-token: write jobs: plugin-ci: