-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (30 loc) · 1.3 KB
/
post-sofa-dev-template.yml
File metadata and controls
37 lines (30 loc) · 1.3 KB
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
name: Post - SOFA dev meeting report template
on:
workflow_dispatch:
schedule:
- cron: '0 6 * * 4' # 7:00 am UTC+1 on Thursdays
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install pip packages
run: |
pip install python-graphql-client
pip install python-dateutil
pip install requests
pip install PyGithub
working-directory: ${{ github.workspace }}
- name: Run script SOFA-dev-meeting-template.py
if: github.event.schedule != '0 0 15 * *'
run: |
python SOFA-dev-meeting/SOFA-dev-meeting-template.py sofa SofaPython3 BeamAdapter doc ci SofaGLFW Regression Sofa.Qt SofaMJEDFEM CGALPlugin Registration PluginExample SofaSphFluid CSparseSolvers Sofa.Metis SofaDefrost/Cosserat SofaDefrost/SoftRobots SofaDefrost/SoftRobots.Inverse SofaDefrost/ModelOrderReduction SofaDefrost/SofaViscoElastic SofaDefrost/SofaCUDALinearSolver SofaDefrost/SOFA.VTK
working-directory: ${{ github.workspace }}
env:
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_SOFADEV_WEBHOOK_URL }}
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}