Skip to content

Commit 1fdc1c2

Browse files
authored
ci: optimize triggers for check mov files job (#1373)
## 📜 Description Don't trigger `Check MOV files` for every commit. ## 💡 Motivation and Context We should run that job ONLY if we added new `.mov` files. So I updated paths to avoid unnecessary runs 🤞 ## 📢 Changelog <!-- High level overview of important changes --> <!-- For example: fixed status bar manipulation; added new types declarations; --> <!-- If your changes don't affect one of platform/language below - then remove this platform/language --> ### CI - add paths to `check-mov-files` job; ## 🤔 How Has This Been Tested? Will be tested in subsequent PRs. ## 📝 Checklist - [x] CI successfully passed - [x] I added new mocks and corresponding unit-tests if library API was changed
1 parent 5ae72b6 commit 1fdc1c2

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/check-mov-files.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ on:
44
push:
55
branches:
66
- main
7+
paths:
8+
- "**.mov"
9+
- ".github/workflows/check-mov-files.yml"
710
pull_request:
811
branches:
912
- main
13+
paths:
14+
- "**.mov"
15+
- ".github/workflows/check-mov-files.yml"
1016

1117
jobs:
1218
check-mov:

0 commit comments

Comments
 (0)