Skip to content

Commit f600251

Browse files
committed
chore: add branch filtering for workflow triggers
This commit adds branch filtering to the "Details Check" and "Update Check" workflows. Now, these workflows will only be triggered on the "develop" branch. This change ensures that the workflows are executed in a controlled environment and reduces unnecessary executions on other branches.
1 parent 8e9493b commit f600251

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/details-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Details Check
33
on:
44
workflow_dispatch:
55
push:
6+
branches:
7+
- develop
68

79
concurrency:
810
group: details-check-${{ github.ref_name }}

.github/workflows/update-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Update Check
33
on:
44
workflow_dispatch:
55
push:
6+
branches:
7+
- develop
68

79
concurrency:
810
group: update-check-${{ github.ref_name }}

0 commit comments

Comments
 (0)