Skip to content

Commit

Permalink
chore: allow forks with synchronize event (#46)
Browse files Browse the repository at this point in the history
Signed-off-by: Michele Dolfi <[email protected]>
  • Loading branch information
dolfim-ibm authored Oct 18, 2024
1 parent d76d24c commit 836571a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
# Nightly build at 3:42 A.M.
- cron: "42 3 */1 * *"
pull_request:
types: [opened, reopened]
types: [opened, reopened, synchronize]
push:
branches:
- "**"
Expand All @@ -18,9 +18,12 @@ env:

jobs:
code-checks:
if: ${{ github.event_name == 'push' || (github.event.pull_request.head.repo.full_name != 'DS4SD/docling-parse' && github.event.pull_request.head.repo.full_name != 'ds4sd/docling-parse') }}
uses: ./.github/workflows/checks.yml
build-wheels:
if: ${{ github.event_name == 'push' || (github.event.pull_request.head.repo.full_name != 'DS4SD/docling-parse' && github.event.pull_request.head.repo.full_name != 'ds4sd/docling-parse') }}
uses: ./.github/workflows/wheels.yml
rhel-build:
if: ${{ github.event_name == 'push' || (github.event.pull_request.head.repo.full_name != 'DS4SD/docling-parse' && github.event.pull_request.head.repo.full_name != 'ds4sd/docling-parse') }}
uses: ./.github/workflows/rhel.yml

0 comments on commit 836571a

Please sign in to comment.