[Iceberg v3] Deletion vector #52507
Workflow file for this run
This file contains hidden or 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: cleanup | |
| on: | |
| # Triggered on every PR merge or close (but with the code and workflow as present in the base of the merge instead of the merge commmit) | |
| pull_request_target: | |
| types: | |
| - closed | |
| # NOTE: Do not check out/execute code from the PR since a read-write token is present due to pull_request_target | |
| jobs: | |
| cancel: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: 'Cancel Runs For Closed PRs' | |
| uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1 | |
| with: | |
| # Cancel workflow when PR closed. https://github.com/styfle/cancel-workflow-action#advanced-ignore-sha | |
| ignore_sha: true | |
| # Note: workflow_id can be a Workflow ID (number) or Workflow File Name (string) or a comma-separated list of those. | |
| workflow_id: "ci.yml" | |
| access_token: ${{ github.token }} |