generated from finos/standards-project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 40
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
f7e93b4
commit e9c54b3
Showing
50 changed files
with
869 additions
and
694 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
extends: relaxed | ||
|
||
ignore: | ||
- .config | ||
- .gitvote.yml | ||
|
||
rules: | ||
indentation: | ||
level: error | ||
spaces: 2 # Enforce 2 spaces for indentation | ||
line-length: | ||
level: error | ||
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
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,12 +46,12 @@ 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 | ||
filename=$(basename "$md_file" .md) | ||
# Check if the filename contains "release-notes" | ||
if [[ $filename != *"release_notes"* ]]; then | ||
echo "Converting $md_file to $filename.pdf" | ||
|
@@ -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.