Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches: # Allow list of deployable tags and branches. Note that all allow-listed branches cannot include any `/` characters
- next
- task-refactor

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Avoid enabling package publishing from task-refactor

For any push to task-refactor with changed packages, this new branch filter runs the entire deploy workflow, not just the documentation job; the existing publish-npm deploy step still publishes packages with --tag ${GITHUB_REF##*/} before the docs job is skipped. If the intent is only to prevent docs publishing outside next, this also opens NPM publishing, release tagging, PR comments, and Webex notifications from task-refactor, so either remove this trigger or add matching branch guards to the publishing/tagging jobs.

Useful? React with 👍 / 👎.


env:
rid: ${{ github.run_id }}-${{ github.run_number }}
Expand Down Expand Up @@ -157,6 +158,7 @@ jobs:
name: Publish - Documentation
needs: [publish-npm,analyze-changes]
runs-on: ubuntu-latest
if: github.ref_name == 'next'

steps:
- name: Documentation Deploy Steps
Expand Down
Loading