Skip to content

Commit 5a50e0f

Browse files
pdp2121realonbebeto
authored andcommitted
fix: add workflows to main push (XRPLF#315)
## High Level Overview of Change <!-- Please include a summary/list of the changes. If too broad, please consider splitting into multiple PRs. If a relevant Asana task, please link it here. --> Currently unit_test, build_and_lint, quality_checks are not executed on main branch after a PR is merged. This PR would fix this issue. ### Type of Change <!-- Please check relevant options, delete irrelevant ones. --> - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Refactor (non-breaking change that only restructures code) - [ ] Tests (You added tests for code that already exists, or your new feature included in this PR) - [ ] Documentation Updates - [ ] Release
1 parent 1c26377 commit 5a50e0f

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/build_and_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
branches:
4-
- dev
4+
- main
55
pull_request:
66
branches:
77
- main

.github/workflows/integration_test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ on:
22
push:
33
branches:
44
- main
5-
- dev
65
pull_request:
76
branches:
87
- main

.github/workflows/quality_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
on:
22
push:
33
branches:
4-
- dev
4+
- main
55
pull_request:
66
branches:
77
- main
88
- dev
99
schedule:
10-
- cron: '0 0 * * *'
10+
- cron: "0 0 * * *"
1111

1212
name: Quality Check
1313

.github/workflows/unit_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
branches:
4-
- dev
4+
- main
55
pull_request:
66
branches:
77
- main

0 commit comments

Comments
 (0)