Skip to content

chore(cicd): move to reusable workflows on github actions #799

chore(cicd): move to reusable workflows on github actions

chore(cicd): move to reusable workflows on github actions #799

Workflow file for this run

name: Main
on:
schedule:
- cron: '0 4 * * 1,2,3,4,5'
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master
workflow_dispatch:
inputs:
skip-test:
description: 'Skip test'
type: choice
required: true
default: 'false'
options:
- "true"
- "false"
jobs:
check:
uses: kestra-io/actions/.github/workflows/plugins.yml@main

Check failure on line 29 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Main

Invalid workflow file

The workflow is not valid. In .github/workflows/main.yml (Line: 29, Col: 11): Error from called workflow kestra-io/actions/.github/workflows/plugins.yml@main (Line: 14, Col: 18): Unexpected value 'true' .github/workflows/main.yml (Line: 29, Col: 11): Input sonatype-publish is required, but not provided while calling.

Check failure on line 29 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Main

Invalid workflow file

The workflow is not valid. In .github/workflows/main.yml (Line: 29, Col: 11): Error from called workflow kestra-io/actions/.github/workflows/plugins.yml@main (Line: 14, Col: 18): Unexpected value 'true'
with:
skip-test: ${{ github.event.inputs.skip-test == 'true' }}
secrets: inherit