-
Notifications
You must be signed in to change notification settings - Fork 11
41 lines (36 loc) · 1.01 KB
/
fetch-SZ.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: "fetch-SZ"
on:
workflow_dispatch:
schedule:
- cron: "30 8,9,10,11,12,13,14,22 * * *"
jobs:
fetch-SZ:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: python3 -m pip install pandas
- name: Fetch SZ
run: python3 ./code/fetch_nowcasts/fetch-SZ.py
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUBTOKEN }}
commit-message: Update nowcasts (SZ)
committer: GitHub <[email protected]>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: false
branch: fetch-SZ
delete-branch: true
title: 'Update nowcasts (SZ)'
body: |
Update nowcasts
labels: |
automated pr
reviewers: jbracher