From 5e6d84c6149abad9fd81884a432fc76e120a3cb3 Mon Sep 17 00:00:00 2001 From: ishakun Date: Fri, 21 Feb 2025 15:50:36 -0600 Subject: [PATCH 1/3] TECH-17407: add catalog-info.yaml --- catalog-info.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 catalog-info.yaml diff --git a/catalog-info.yaml b/catalog-info.yaml new file mode 100644 index 0000000..eeea7c2 --- /dev/null +++ b/catalog-info.yaml @@ -0,0 +1,33 @@ +# This file is partially auto-generated by the invoca-backstage-tools gem +# The following fields should not be edited manually as they are auto-generated +# based on the contents of the repo: +# - metadata.name +# - metadata.title +# - metadata.description +# - annotations.github.com/project-slug +# - invoca.com/version-repository-location +# - invoca.com/version-repository-name +# - spec.type +# - spec.owner +--- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: xlsxtream-gem + title: Xlsxtream + description: This gem allows very efficient writing of CSV style data to XLSX with + multiple worksheets. + tags: + - ruby + - gem + - public + annotations: + buildkite.com/project-slug: invoca/xlsxtream + github.com/project-slug: invoca/xlsxtream + invoca.com/version-repository-location: gemfury + invoca.com/version-repository-name: xlsxtream +spec: + type: library + lifecycle: production + owner: octothorpe + dependsOn: [] From 068615b3787307bfdb9568de9948d9f55519c004 Mon Sep 17 00:00:00 2001 From: ishakun Date: Fri, 21 Feb 2025 16:00:06 -0600 Subject: [PATCH 2/3] TECH-17407: add CI --- .github/workflows/pipeline.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/pipeline.yml diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml new file mode 100644 index 0000000..926b187 --- /dev/null +++ b/.github/workflows/pipeline.yml @@ -0,0 +1,9 @@ +name: Pipeline +on: + push: + schedule: + - cron: '0 1 * * 1' # Every Monday at 1AM UTC +jobs: + tests: + uses: Invoca/ruby-test-matrix-workflow/.github/workflows/ruby-test-matrix.yml@main + test-command: "bundle exec rake test" From 40e5525270874855c0cdad439bcbaca644b6e639 Mon Sep 17 00:00:00 2001 From: ishakun Date: Fri, 21 Feb 2025 16:01:47 -0600 Subject: [PATCH 3/3] TECH-17407: fix syntax in the pipeline --- .github/workflows/pipeline.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 926b187..2389d7f 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -6,4 +6,5 @@ on: jobs: tests: uses: Invoca/ruby-test-matrix-workflow/.github/workflows/ruby-test-matrix.yml@main - test-command: "bundle exec rake test" + with: + test-command: "bundle exec rake test"