forked from finos/common-cloud-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffd03cb
commit b97c0e3
Showing
19 changed files
with
250 additions
and
227 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
extends: default | ||
extends: relaxed | ||
|
||
ignore: | ||
- .config | ||
- .gitvote.yml | ||
|
||
rules: | ||
indentation: | ||
spaces: 2 # Enforce 2 spaces for indentation | ||
line-length: | ||
max: 120 # Allow up to 120 characters per line | ||
new-lines: | ||
type: unix |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: Lint Check | ||
|
||
on: | ||
workflow_call: | ||
push: | ||
|
||
jobs: | ||
markdown-lint: | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ on: | |
workflow_dispatch: | ||
inputs: | ||
build_target: | ||
description: 'Build Target (e.g storage/object)' | ||
description: "Build Target (e.g storage/object)" | ||
required: true | ||
tag: | ||
description: 'Tag for this release' | ||
description: "Tag for this release" | ||
required: true | ||
|
||
# TODO: Add in pre-release tag to distinguish whether or not we want to have an official release | ||
|
@@ -27,13 +27,13 @@ jobs: | |
|
||
- name: Install dependencies | ||
run: go mod download | ||
|
||
- name: Get Build Target | ||
id: process_target | ||
run: | | ||
# Read the input for a single build target | ||
build_target="${{ github.event.inputs.build_target }}" | ||
# Print and save the build target | ||
echo "Build target: $build_target" | ||
echo "target=$build_target" >> $GITHUB_OUTPUT | ||
|
@@ -46,7 +46,7 @@ jobs: | |
go run . "yaml" --build-target $build_target | ||
go run . "md" --build-target $build_target | ||
go run . "release-notes" --build-target $build_target | ||
# Create PDF files from MD files | ||
echo "Converting MD file to PDF" | ||
for md_file in ./artifacts/*.md; do | ||
|
@@ -61,7 +61,6 @@ jobs: | |
fi | ||
done | ||
- name: Upload Artifacts | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -104,4 +103,4 @@ jobs: | |
-H "Content-Type: application/octet-stream" \ | ||
--data-binary @"$file" \ | ||
"${{ steps.create_release.outputs.upload_url }}=$filename&label=$filename" | ||
done | ||
done |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: TODO Checker | ||
|
||
on: | ||
workflow_call: | ||
workflow_call: | ||
|
||
jobs: | ||
find-todos: | ||
|
@@ -11,8 +11,7 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for TODOs in services directory | ||
- name: Check for TODOs in services directory | ||
uses: damienjburks/[email protected] | ||
with: | ||
with: | ||
path: "./services" | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ profiles: | |
periodic_status_check: null | ||
|
||
# Close vote on passing | ||
close_on_passing: true | ||
close_on_passing: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ controls: | |
- tlp_clear | ||
- tlp_green | ||
- tlp_amber | ||
- tlp_red | ||
- tlp_red |
This file contains 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
This file contains 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
Oops, something went wrong.