Skip to content

Cleanup

Cleanup #400

Workflow file for this run

name: Cleanup
on:
workflow_run:
workflows: ['Lint checks and build', 'Unit testing', 'Check for API changes']
types: ['requested']
jobs:
cancel-duplicate-workflow-runs:
name: 'Cancel duplicate workflow runs'
runs-on: ubuntu-latest
steps:
- uses: potiuk/cancel-workflow-runs@v4_7
name: 'Cancel duplicate workflow runs'
with:
cancelMode: duplicates
cancelFutureDuplicates: true
token: ${{ secrets.GITHUB_TOKEN }}
sourceRunId: ${{ github.event.workflow_run.id }}
notifyPRCancel: true
skipEventTypes: '["push", "schedule"]'