Skip to content

Commit 021803e

Browse files
authored
Merge pull request #1283 from jku/build-on-push-to-develop-only
CI: Limit build-on-push to develop branch only
2 parents ac8525a + 7c5416d commit 021803e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Run TUF tests and linter
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
pull_request:
8+
workflow_dispatch:
49

510
jobs:
611
build:

0 commit comments

Comments
 (0)