-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy path2-process.yml.disabled
46 lines (36 loc) · 1.05 KB
/
2-process.yml.disabled
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
name: Process Data
on:
schedule:
# at 02:15 on days 15-28 in second month of each quarter
- cron: '15 2 15-28 2,5,8,11 *'
workflow_dispatch:
jobs:
process:
runs-on: ubuntu-latest
# CC Technology team members:
# See cc-quantifying-bot GitHub entry in Bitwarden for information on
# BOT_ secrets
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_TOKEN }}
- name: Configure git
run: |
git config user.name "${{ secrets.BOT_NAME }}"
git config user.email "${{ secrets.BOT_EMAIL }}"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pipenv
pipenv sync --system
- name: Set PYTHONPATH
run: echo "PYTHONPATH=./scripts" >> $GITHUB_ENV
- name: Run process script
run: |
# ADD SCRIPT INVOCATION HERE
# vim: ft=yaml