Skip to content

Commit

Permalink
chore: Only trigger release workflow on meaningful changes
Browse files Browse the repository at this point in the history
This change modifies the snapshot workflow to only trigger on significant code or configuration changes.

The following file paths are now ignored when determining if a snapshot workflow should be triggered:

- 'assets/**'
- '**.md'
- 'LICENSE'
- '**.gitignore'

This ensures that trivial updates to these files, such as README changes or asset updates, do not unnecessarily trigger a snapshot build.
  • Loading branch information
Sanlorng committed Nov 8, 2024
1 parent 4b2bb04 commit 346a600
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/multiplatform_snapshot_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
push:
branches:
- dev
paths-ignore:
- 'assets/**'
- '**.md'
- 'LICENSE'
- '**.gitignore'

pull_request_review:
types: submitted
Expand Down

0 comments on commit 346a600

Please sign in to comment.