Skip to content

pymake rtd

pymake rtd #479

Workflow file for this run

name: pymake rtd
on:
schedule:
- cron: '0 3 * * 3' # run at 3 AM UTC every Wednesday
push:
pull_request:
branches:
- master
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pymake_rtd:
name: pymake rtd
runs-on: ubuntu-latest
if:
github.event_name == 'push'
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Trigger RTDs build
if: github.ref == 'refs/heads/master'
uses: dfm/rtds-action@v1
with:
webhook_url: ${{ secrets.RTDS_WEBHOOK_URL }}
webhook_token: ${{ secrets.RTDS_WEBHOOK_TOKEN }}
commit_ref: ${{ github.ref }}