From 7253e2e3fd594acc110e6b1c302c735ddad11925 Mon Sep 17 00:00:00 2001 From: cenevan <92879012+cenevan@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:31:09 -0700 Subject: [PATCH 1/6] Update readme-reusable-lint-go-workflow.md --- .../utility/readme-reusable-lint-go-workflow.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/utility/readme-reusable-lint-go-workflow.md b/docs/utility/readme-reusable-lint-go-workflow.md index e69de29..43d5b51 100644 --- a/docs/utility/readme-reusable-lint-go-workflow.md +++ b/docs/utility/readme-reusable-lint-go-workflow.md @@ -0,0 +1,17 @@ +# Workflow Configuration + +## Name + +Reusable go linting workflow + +## Triggers + + - Workflow call + +## Inputs + +- Go Version (string): required, version of Go to lint + +## Secrets + + - N/A From 28fde7ec21e20cbcfe2dea01e0c2dacc2541fe8b Mon Sep 17 00:00:00 2001 From: cenevan <92879012+cenevan@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:33:18 -0700 Subject: [PATCH 2/6] Update readme-reusable-timestamp.md --- docs/utility/readme-reusable-timestamp.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/utility/readme-reusable-timestamp.md b/docs/utility/readme-reusable-timestamp.md index e69de29..22113a1 100644 --- a/docs/utility/readme-reusable-timestamp.md +++ b/docs/utility/readme-reusable-timestamp.md @@ -0,0 +1,18 @@ +# Workflow Configuration + +## Name + +Reusable timestamp workflow + +## Triggers + + - Workflow call + +## Inputs + +- Timezone (string): required, timezone of workflow, default is LA/America +- Workflow input #2 (type): + +## Secrets + +- N/A From ff7c885a9e15e18aba4db095b82d9c5574eba360 Mon Sep 17 00:00:00 2001 From: cenevan <92879012+cenevan@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:33:37 -0700 Subject: [PATCH 3/6] Update readme-reusable-timestamp.md --- docs/utility/readme-reusable-timestamp.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/utility/readme-reusable-timestamp.md b/docs/utility/readme-reusable-timestamp.md index 22113a1..65deb29 100644 --- a/docs/utility/readme-reusable-timestamp.md +++ b/docs/utility/readme-reusable-timestamp.md @@ -11,7 +11,6 @@ Reusable timestamp workflow ## Inputs - Timezone (string): required, timezone of workflow, default is LA/America -- Workflow input #2 (type): ## Secrets From 85b1d88e842077f98e422517c07cd9e508020be6 Mon Sep 17 00:00:00 2001 From: cenevan <92879012+cenevan@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:47:04 -0700 Subject: [PATCH 4/6] Update readme-reusable-secrets-scanning.md --- .../readme-reusable-secrets-scanning.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/security/readme-reusable-secrets-scanning.md b/docs/security/readme-reusable-secrets-scanning.md index e69de29..73eb142 100644 --- a/docs/security/readme-reusable-secrets-scanning.md +++ b/docs/security/readme-reusable-secrets-scanning.md @@ -0,0 +1,19 @@ +# Workflow Configuration + +## Name + +Reusable secret scanning workflow + +## Triggers + + - Workflow Call + +## Inputs + +- Branch (string): required +- Depth (number): required, default is 2 + +## Secrets + +- SLACK_BOT_TOKEN (required) +- SLACK_CHANNEL_ID_GITHUB_NOTIFICATION (required) From 3bdfc13186bf680652831057cbb2ef24dd462c96 Mon Sep 17 00:00:00 2001 From: cenevan <92879012+cenevan@users.noreply.github.com> Date: Wed, 3 Jul 2024 12:19:14 -0700 Subject: [PATCH 5/6] Update reusable-create-release --- .github/workflows/reusable-create-release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/reusable-create-release.yml b/.github/workflows/reusable-create-release.yml index 9aae947..01fa896 100644 --- a/.github/workflows/reusable-create-release.yml +++ b/.github/workflows/reusable-create-release.yml @@ -7,6 +7,10 @@ on: type: string required: true description: 'Version to be published' + tag_to_publish: + type: string + required: false + description: 'Tag name to be published' permissions: contents: write @@ -51,4 +55,5 @@ jobs: uses: mikepenz/action-gh-release@v0.2.0-a03 #softprops/action-gh-release with: tag_name: v${{ inputs.version_to_publish }} + name: '${{ inputs.tag_to_publish }} v${{ inputs.version_to_publish }}' body: ${{ steps.build_changelog.outputs.changelog }} From 70a4393de65900086b437f1cb3de12ff7a77f176 Mon Sep 17 00:00:00 2001 From: cenevan <92879012+cenevan@users.noreply.github.com> Date: Wed, 3 Jul 2024 17:28:44 -0700 Subject: [PATCH 6/6] update release name --- .github/workflows/reusable-create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-create-release.yml b/.github/workflows/reusable-create-release.yml index 01fa896..068d35f 100644 --- a/.github/workflows/reusable-create-release.yml +++ b/.github/workflows/reusable-create-release.yml @@ -55,5 +55,5 @@ jobs: uses: mikepenz/action-gh-release@v0.2.0-a03 #softprops/action-gh-release with: tag_name: v${{ inputs.version_to_publish }} - name: '${{ inputs.tag_to_publish }} v${{ inputs.version_to_publish }}' + name: '${{ inputs.tag_to_publish }}@{${{ inputs.version_to_publish }}}' body: ${{ steps.build_changelog.outputs.changelog }}