Check WCSLIB release #205
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 WCSLIB 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_wcslib: | |
name: Open issue if new release found | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check release | |
uses: pllim/actions-check_wcslib_release@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |