Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ on:
paths:
- src/fundus/publishers/**
- scripts/generate_tables.py
types:
- ready_for_review
- opened
- reopened
- synchronize

workflow_dispatch:

Expand All @@ -34,6 +39,7 @@ jobs:

permissions:
contents: write
pull-requests: write

steps:
- name: Set up Git repository
Expand Down Expand Up @@ -61,6 +67,12 @@ jobs:
- name: Generate 'supported_publishers.md'
run: python scripts/generate_tables.py

- name: Convert PR to draft
env:
GH_TOKEN: ${{ github. token }}
run: |
gh pr ready ${{ github.event.pull_request.number }} --undo

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
push:
branches: [ master ]
pull_request:
types:
- ready_for_review
- opened
- reopened
- synchronize
workflow_call:

jobs:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
push:
branches: [ master ]
pull_request:
types:
- ready_for_review
- opened
- reopened
- synchronize
workflow_call:

jobs:
Expand Down