-
Notifications
You must be signed in to change notification settings - Fork 8
36 lines (34 loc) · 1 KB
/
stellarium.yml
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
name: stellarium
on:
pull_request: # Automatic test
types: [opened, reopened, synchronize]
branches: [master]
paths:
- .github/workflows/.common.yml
- .github/workflows/stellarium.yml
- stellarium/**
- Common.ps1
- test_all.ps1
- update_vars.ps1
schedule:
- cron: 0 4 * * * # Scheduled test
- cron: 5 2-23/6 * * * # Scheduled update
workflow_dispatch: # Manual run
inputs:
type:
description: Type
type: choice
required: true
default: Test
options:
- Force update
- Test
- Update
jobs:
job:
name: ${{ inputs.type || (github.event_name == 'pull_request' || github.event.schedule == '0 4 * * *') && 'Test' || 'Update' }}
uses: ./.github/workflows/.common.yml
with:
test: ${{ github.event_name == 'pull_request' || github.event.schedule == '0 4 * * *' || inputs.type == 'Test' }}
force: ${{ inputs.type == 'Force update' }}
secrets: inherit