-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.84 KB
/
hitide_repos.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
42
43
44
45
46
47
48
49
50
51
52
53
54
name: HiTIDE Repos Update
# Controls when the workflow will run
on:
schedule:
- cron: '10 10 * * *' # Set the cron schedule for 1 am PST
workflow_dispatch:
jobs:
build:
name: Refresh HiTIDE Repos Google Sheet
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
#########################################################################
# Environment Setup
#########################################################################
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
uses: abatilo/actions-poetry@v3.0.0
with:
poetry-version: 1.8.3
#########################################################################
# Install & Run Pylint & Flake
#########################################################################
- name: Poetry Steps
run: |
poetry install
#########################################################################
# Setup Token for GSpread
#########################################################################
- name: Setup Token
env:
GOOGLE_TOKEN: ${{ secrets.GOOGLE_TOKEN }}
run: |
mkdir -p ~/.config/gspread
echo "$GOOGLE_TOKEN" > ~/.config/gspread/service_account.json
#########################################################################
# Start the Repo Status Updater
#########################################################################
- name: Update HiTIDE Repos Google Sheet
working-directory: hitide_repos
env:
SPREADSHEET_ID: ${{ secrets.HITIDE_AWS_SHEET_ID }}
GITHUB_TOKEN: ${{ secrets.GH_READ_TOKEN }}
run: |
poetry run python hitide_repos.py