Skip to content

Commit 0935a2a

Browse files
committed
Update workflow triggers to only run push event on main branch. Addionally build workflows release and dispatch events have been removed
1 parent 9a83516 commit 0935a2a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ name: build
22

33
on:
44
push:
5+
branches: [ main ]
56
pull_request:
67
types: [ opened, reopened, synchronize ]
7-
release:
8-
types: [ published ]
9-
workflow_dispatch:
108

119
permissions:
1210
contents: read

.github/workflows/lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: lint
22

33
on:
44
push:
5+
branches: [ main ]
56
pull_request:
67
types: [ opened, reopened, synchronize ]
78

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ name: test
55

66
on:
77
push:
8+
branches: [ main ]
89
pull_request:
910
types: [opened, reopened]
1011
workflow_dispatch:

0 commit comments

Comments
 (0)