Merge branch 'main' into feature/SIENTIAPDE-1478

This commit is contained in:
vitor-aignosi
2026-01-19 08:22:47 -03:00
committed by GitHub

View File

@@ -5,12 +5,21 @@ on:
types: [closed]
branches:
- main
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: false
type: string
jobs:
release:
if: github.event.pull_request.merged == true
if: |
(github.event_name == 'pull_request' && github.event.pull_request.merged == true) ||
github.event_name == 'workflow_dispatch'
uses: Aignosi/github_workflow_templates/.github/workflows/dataops-module-release.yml@main
permissions: write-all
with:
project_name: 'laborious'
version: ${{ github.event.inputs.version || '' }}
secrets: inherit