File: romanisim_data.yml

package info (click to toggle)
gwcs 0.26.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,352 kB
  • sloc: python: 9,462; makefile: 121
file content (18 lines) | stat: -rw-r--r-- 459 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: download and cache romanisim data

on:
  schedule:
    - cron: "42 4 * * 3"
  workflow_dispatch:
    inputs:
      stpsf_minimal:
        description: minimal STPSF dataset
        type: boolean
        required: false
        default: true

jobs:
  download_romanisim_data:
    uses: spacetelescope/romanisim/.github/workflows/data.yml@main
    with:
      stpsf_minimal: ${{ github.event_name != 'workflow_dispatch' && true || inputs.stpsf_minimal }}