Browse Source

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.
pull/4484/head
Daniel Gibbs 1 year ago
parent
commit
f600251816
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 2
      .github/workflows/details-check.yml
  2. 2
      .github/workflows/update-check.yml

2
.github/workflows/details-check.yml

@ -3,6 +3,8 @@ name: Details Check
on:
workflow_dispatch:
push:
branches:
- develop
concurrency:
group: details-check-${{ github.ref_name }}

2
.github/workflows/update-check.yml

@ -3,6 +3,8 @@ name: Update Check
on:
workflow_dispatch:
push:
branches:
- develop
concurrency:
group: update-check-${{ github.ref_name }}

Loading…
Cancel
Save