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
7 changes: 5 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ on:
tags: '*'
pull_request:

# Prevent simultaneous gh-pages deployments (tag + branch race condition).
# PR previews each get their own group and cancel on new pushes.
# All other deploys (main, tags) share one group and queue instead of cancel.
concurrency:
group: docs-deploy
cancel-in-progress: false
group: ${{ github.event_name == 'pull_request' && format('docs-pr-{0}', github.event.pull_request.number) || 'docs-deploy' }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions src/PowerOperationsModels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,7 @@ export ActiveRangeICConstraint
export NodalBalanceActiveConstraint
export ReferenceBusConstraint
export VoltageMagnitudeConstraint
export ReactivePowerFlowControlConstraint
export RegulatedVoltageMagnitudeConstraint
export CurrentLimitConstraint
export AngleDifferenceConstraint
Expand Down
Loading
Loading