mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-23 00:17:25 +08:00
20 lines
440 B
YAML
20 lines
440 B
YAML
name: PR Build and Test
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
branches: [develop, release/**]
|
|
permissions: read-all
|
|
|
|
concurrency:
|
|
group: ${{ github.event.pull_request.number }}-${{ github.workflow }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
cancel:
|
|
name: Cancel PR Build and Test for ${{ github.event.pull_request.number }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cancel PR Build and Test
|
|
run: |
|
|
exit 0
|