mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
15 lines
439 B
YAML
15 lines
439 B
YAML
# https://github.com/styfle/cancel-workflow-action#user-content-advanced-canceling-other-workflows
|
|
name: Auto-cancel-outdated PR
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
jobs:
|
|
cancel:
|
|
name: Auto-cancel-outdated PR
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: styfle/cancel-workflow-action@0.10.0
|
|
with:
|
|
workflow_id: continuous-integration.yml
|
|
access_token: ${{ github.token }}
|