Post - SOFA dev meeting report template #82
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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/SOFA.VTK | |
| working-directory: ${{ github.workspace }} | |
| env: | |
| DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_SOFADEV_WEBHOOK_URL }} | |
| GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} |