From 86f467e36d5713bc913af846844748f157d30224 Mon Sep 17 00:00:00 2001 From: Alexande B Date: Sat, 27 Jul 2024 21:32:49 +0200 Subject: [PATCH] cimas: update configurations request-checks: true --- .github/workflows/rake.yml | 15 +++++++++++++++ .github/workflows/release.yml | 24 ++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .github/workflows/rake.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/rake.yml b/.github/workflows/rake.yml new file mode 100644 index 0000000..c541e88 --- /dev/null +++ b/.github/workflows/rake.yml @@ -0,0 +1,15 @@ +# Auto-generated by Cimas: Do not edit it manually! +# See https://github.com/metanorma/cimas +name: rake + +on: + push: + branches: [ master, main ] + tags: [ v* ] + pull_request: + +jobs: + rake: + uses: lutaml/support/.github/workflows/rake.yml@main + secrets: + pat_token: ${{ secrets.LUTAML_CI_PAT_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..eed1af8 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,24 @@ +# Auto-generated by Cimas: Do not edit it manually! +# See https://github.com/metanorma/cimas +name: release + +on: + workflow_dispatch: + inputs: + next_version: + description: | + Next release version. Possible values: x.y.z, major, minor, patch (or pre|rc|etc). + Also, you can pass 'skip' to skip 'git tag' and do 'gem push' for the current version + required: true + default: 'skip' + repository_dispatch: + types: [ do-release ] + + +jobs: + release: + uses: lutaml/support/.github/workflows/release.yml@main + with: + next_version: ${{ github.event.inputs.next_version }} + secrets: + rubygems-api-key: ${{ secrets.LUTAML_CI_RUBYGEMS_API_KEY }}