Skip to content

Commit f34e9fb

Browse files
committed
chore: update GitHub Actions workflows to trigger on specific branches (main, dev) for push events
1 parent ac23b67 commit f34e9fb

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/ruff.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Ruff
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [main, dev]
6+
pull_request:
47

58
permissions:
69
contents: write

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Test
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [main, dev]
6+
pull_request:
47

58
jobs:
69
test:

0 commit comments

Comments
 (0)