-
Notifications
You must be signed in to change notification settings - Fork 8
49 lines (44 loc) · 904 Bytes
/
main.yml
File metadata and controls
49 lines (44 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Main
on:
schedule:
- cron: '0 4 * * 1,2,3,4,5'
push:
branches:
- master
- main
- releases/*
tags:
- v*
pull_request:
branches:
- master
- main
- releases/*
workflow_dispatch:
inputs:
skip-test:
description: 'Skip test'
type: choice
required: true
default: 'false'
options:
- "true"
- "false"
kestra-version:
description: 'Kestra version'
required: false
type: string
default: ''
permissions:
contents: write
checks: write
actions: read
pull-requests: write
packages: read
jobs:
check:
uses: kestra-io/actions/.github/workflows/plugins.yml@main
with:
skip-test: ${{ github.event.inputs.skip-test == 'true' }}
kestra-version: ${{ github.event.inputs.kestra-version }}
secrets: inherit