Skip to content

Flat

Flat #40

Workflow file for this run

name: Flat
on:
push:
paths:
- .github/workflows/flat.yml # Only run a new workflow every time this file (flat.yaml) file changes
workflow_dispatch: # Required even though this is currently empty
schedule:
- cron: '*/5 * * * *' # Run this workflow every 5 minutes
jobs:
scheduled:
runs-on: ubuntu-latest
steps: # This workflow has 3 steps
# The first step is to check out the repository so it can read the files inside of it and do other operations
- name: Check out repo
uses: actions/checkout@v2
# This step installs Deno, which is a new Javascript runtime that improves on Node. We'll use it for postprocessing later
- name: Setup deno
uses: denoland/setup-deno@main
with:
deno-version: v1.x
# The third step is a Flat Action step. We fetch the data in the http_url and save it as downloaded_filename
- name: Fetch data
uses: githubocto/flat@v3
with:
http_url: https://www.ifixit.com/smartphone-repairability # The data to fetch every 5 minutes
downloaded_filename: smartphone-repairability.html # The http_url gets saved and renamed in our repository as smartphone-repairability.html
postprocess: postprocess.ts # A postprocessing javascript or typescript file written in Deno