Skip to content

Commit 3fc1ceb

Browse files
committed
Make workflows run on opened and edited PRs
1 parent 6b73ea8 commit 3fc1ceb

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

.github/workflows/build_ffmpeg.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
paths:
1616
- packaging/build_ffmpeg.sh
1717
- .github/workflows/build_ffmpeg.yaml # self reference
18+
types: [created, edited]
1819
schedule:
1920
- cron: '0 0 * * 0' # on sunday
2021

.github/workflows/cpp_tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- src/torchcodec/*
99
- test/*
1010
- .github/workflows/cpp_tests.yaml # self reference
11+
types: [created, edited]
1112

1213
concurrency:
1314
group: unit-test${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}

.github/workflows/docs.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- src/torchcodec/*
99
- docs/*
1010
- .github/workflows/docs.yaml # self reference
11+
types: [created, edited]
1112

1213
permissions:
1314
id-token: write

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- packaging/*
99
- test/*
1010
- .github/workflows/linux_cuda_wheel.yaml # self reference
11+
types: [created, edited]
1112
push:
1213
branches:
1314
- nightly

.github/workflows/linux_wheel.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- packaging/*
88
- test/*
99
- .github/workflows/linux_wheel.yaml # self reference
10+
types: [created, edited]
1011
push:
1112
branches:
1213
- nightly

.github/workflows/macos_wheel.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- packaging/*
88
- test/*
99
- .github/workflows/macos_wheel.yaml # self reference
10+
types: [created, edited]
1011
push:
1112
branches:
1213
- nightly

.github/workflows/reference_resources.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
paths:
77
- test/generate_reference_resources.sh
88
- .github/workflows/reference_resources.yaml # self reference
9+
types: [created, edited]
910
schedule:
1011
- cron: '0 0 * * 0' # on sunday
1112

0 commit comments

Comments
 (0)