-
Notifications
You must be signed in to change notification settings - Fork 74
42 lines (42 loc) · 1.24 KB
/
dev_meeting_reports.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
name : create meeting report
#on:
# schedule:
# - cron: '*/40 7 * * 2' # Test. In general, create at 8 am on Friday (0 7 * * 5)
on:
push:
branches:
- master
jobs:
get_repo:
runs-on: ubuntu-latest
continue-on-error: true
steps :
- name: echo test
run: |
echo "start test"
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: do action checkout
uses: actions/checkout@v2
- name: get github repository
env:
SECRET2: ${{ secrets.SECRET2 }}
run: |
python -m pip install --upgrade setuptools wheel
python -m pip install numpy==1.24.2
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python scripts/create_dev_meetings_report.py
- name: check for changes
run: git status
- name: stage changed files
run: git add .
- name: email config
run: |
git config --global user.name "Hanna Stapel"
git config --global user.email "[email protected]"
- name: commit changed files
run: git commit -m 'auto create meeting report'
- name: push changes
run: git push