Last active
December 17, 2019 02:18
-
-
Save ethomson/c241fcd622172139ccaae0ab8088c75c to your computer and use it in GitHub Desktop.
This file contains hidden or 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: CI | |
on: | |
schedule: | |
- cron: 0 5 * * * | |
jobs: | |
build: | |
runs-on: [ubuntu-latest] | |
steps: | |
- run: echo "::set-env name=DAY_OF_WEEK::$( date +%a )" | |
- run: echo "Somebody has a case of the mondays!" | |
if: env.DAY_OF_WEEK == 'Mon' | |
- run: echo "This runs every day..." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment