Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: Documentation

on:
# Only PRs targeting master (base branch = master) and pushes to master.
# PRs into either long-lived branch, and pushes to master. `branches` filters
# on the PR's base, and almost every PR is opened against develop, so master
# alone meant the build first saw a docs change in the release batch.
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [master]
branches: [master, develop]
paths:
- "docs/**"
- "rocketpy/**" # docstrings feed the autodoc API reference
Expand Down
Loading