fix: DH-18433: SourcePartitionedTable needs to check the size of pending locations even if there are no added or removed locations (#6570) #2176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create documentation ticket | |
on: | |
pull_request_target: | |
branches: | |
- main | |
- 'rc/v*' | |
types: | |
- closed | |
jobs: | |
create-docs-ticket: | |
# Only on merged PRs that contain the DocumentationNeeded flag | |
if: github.event.pull_request.merged && contains(github.event.pull_request.labels.*.name, 'DocumentationNeeded') | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create Issues | |
id: create-issues | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.DOCS_ISSUES_PAT }} | |
script: | | |
const script = require('.github/workflows/create-docs-issues.js'); | |
await script({github, context}); | |
- name: Slack Failure Message | |
uses: slackapi/[email protected] | |
id: slack-failure-message | |
if: failure() && github.ref == 'refs/heads/main' && github.repository_owner == 'deephaven' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_DEVREL }} | |
with: | |
payload: | | |
{ | |
"repository": "${{ github.repository }}", | |
"message": "${{ github.workflow }}/${{ github.job }} failure", | |
"link": "${{ github.event.pull_request.html_url }}" | |
} |