2hr timeout → 45m

This commit is contained in:
powe97 2024-03-01 12:48:20 -05:00 committed by GitHub
parent d03be03aeb
commit 997d3c16a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
name: Scrape transfer and update file
run-name: Scrape transfer and update file
env:
DEFAULT_TIMEOUT: 45
on:
# schedule:
# - cron: '*/15 * * * *'
@ -11,7 +13,7 @@ on:
description: "Timeout time"
required: true
type: number
default: 120
default: ${{ env.DEFAULT_TIMEOUT }}
concurrency:
group: transfer-scraper
@ -52,7 +54,7 @@ jobs:
mkdir new-data
rsync -avzh data/transfer.json new-data
rsync -avzh data/transfer_state.json new-data
python3 quatalog-scraping/transfer_scraper/main.py new-data/transfer.json new-data/transfer_state.json ${{ github.event.inputs.timeout }}
python3 quatalog-scraping/transfer_scraper/main.py new-data/transfer.json new-data/transfer_state.json ${{ github.event.inputs.timeout || env.DEFAULT_TIMEOUT }}
- name: Upload data to artifact
uses: actions/upload-artifact@v4