-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (44 loc) · 1.41 KB
/
report.yaml
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
name: Report Update
on:
schedule:
- cron: "0 4 1 * *" # 1:00 AM UTC -3 on the first day of the month
workflow_dispatch:
inputs:
month:
description: 'Month to generate the report'
required: true
default: last_month
jobs:
generate-report:
name: "🚀 Report Generate"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Poetry install
run: poetry install --no-dev --no-root
- name: "🤫 Secret"
run: |
echo ${SERVICE_ACCOUNT_CREDENTIALS} > service_account.json
- name: Run report
run: |
poetry run python main.py ${{secrets.PROPERTY_ID}} $(bash calculate_dates.sh ${{ github.event.inputs.month }})
env:
SERVICE_ACCOUNT_CREDENTIALS: ${{ secrets.SERVICE_ACCOUNT_CREDENTIALS }}
PROPERTY_ID: ${{ secrets.PROPERTY_ID }}
- name: Commit and push changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "Codaqui Bot"
git add .
DATE=$(date +"%d-%m-%Y")
FIRST_DAY=$(date -d "-1 month" +%Y-%m-01)
git commit -m "Update report for $FIRST_DAY - $DATE"
git push origin HEAD:main