From 4c05da2aa31fde50aedbd04d694485c1c5fa2486 Mon Sep 17 00:00:00 2001 From: christian34 Date: Tue, 16 Sep 2025 16:17:18 +0000 Subject: [PATCH] [openalea-bot] synced local '.github/workflows/' with remote 'workflow-templates/' --- .github/workflows/conda-build.yml | 24 ---------------------- .github/workflows/openalea_ci.yml | 33 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 24 deletions(-) delete mode 100644 .github/workflows/conda-build.yml create mode 100644 .github/workflows/openalea_ci.yml diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml deleted file mode 100644 index 6714743..0000000 --- a/.github/workflows/conda-build.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: OpenAlea CI - -on: - push: - branches: - - main - - master - tags: - - 'v*' - pull_request: - types: - - opened - - synchronize - - reopened - release: - types: - - published - -jobs: - build: - uses: openalea/action-build-publish-anaconda/.github/workflows/openalea_ci.yml@main - secrets: - anaconda_token: ${{ secrets.ANACONDA_TOKEN }} - diff --git a/.github/workflows/openalea_ci.yml b/.github/workflows/openalea_ci.yml new file mode 100644 index 0000000..3d610de --- /dev/null +++ b/.github/workflows/openalea_ci.yml @@ -0,0 +1,33 @@ +name: OpenAlea CI + +on: + push: + branches: + - main + - master + tags: + - 'v*' + pull_request: + types: + - opened + - synchronize + - reopened + release: + types: + - published + workflow_dispatch: + inputs: + check_before_tag: + description: "Run OpenAlea CI pre-tag build" + required: false + default: "true" + type: boolean + +run-name: > + ${{ github.event_name == 'workflow_dispatch' && 'OpenAlea CI pre-tag build' || 'OpenAlea CI' }} + +jobs: + build: + uses: openalea/action-build-publish-anaconda/.github/workflows/openalea_ci.yml@main + secrets: + anaconda_token: ${{ secrets.ANACONDA_TOKEN }} \ No newline at end of file