Skip to content

Fetch and no checkin #1339

Fetch and no checkin

Fetch and no checkin #1339

# This is a basic workflow to help you get started with Actions
name: Fetch and no checkin
# Controls when the action will run.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
# I want to run this a few hours before the real job, in case there are errors, so I have time to fix them.
- cron: '39 1 * * *'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "fetch"
fetch:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Run a shell script which fetches the data, and builds the website.
run: |
bash -x fetch_no_checkin.sh