Check CFITSIO release #219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check CFITSIO release | |
on: | |
workflow_dispatch: | |
schedule: | |
# Weekly Tuesday 6 AM build. | |
# * is a special character in YAML so you have to quote this string. | |
- cron: '0 6 * * 2' | |
jobs: | |
check_cfitsio: | |
name: Open issue if new release found | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check release | |
uses: pllim/actions-check_cfitsio_release@main | |
with: | |
CFITSIO_CHECK_N_DAYS: 7 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |