Skip to content

Commit 7ef2651

Browse files
authored
ci: add new ep v0.6 branch to github workflows (#27)
## Summary We didn't update github workflow files when we added this branch. This PR is going to fix that on [entry-point-v0.6](https://github.com/circlefin/buidl-wallet-contracts/tree/entry-point-v0.6). ## Detail ### Changeset * added `entry-point-v0.6` to ci, coverage and release flows ### Checklist - [ ] Did you add new tests and confirm all tests pass? (`yarn test`) - [ ] Did you update relevant docs? (docs are found in the `docs` folder) - [ ] Do your commits follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) standard? - [x] Does your PR title also follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) standard? - [ ] If you have a breaking change, is it [correctly reflected in your commit message](https://www.conventionalcommits.org/en/v1.0.0/#examples)? (e.g. `feat!: breaking change`) - [x] Did you run lint (`yarn lint`) and fix any issues? - [x] Did you run formatter (`yarn format:check`) and fix any issues (`yarn format:write`)? ## Testing * No tests impacted ## Documentation n/a
1 parent afa4a4d commit 7ef2651

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Continuous Integration
22
on:
33
pull_request:
44
push:
5-
branches: [master]
5+
branches: [master, entry-point-v0.6]
66

77
jobs:
88
lint_and_test:

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Coverage
22
on:
33
pull_request:
44
push:
5-
branches: [master]
5+
branches: [master, entry-point-v0.6]
66

77
concurrency:
88
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: PR Lint and Release
22

33
on:
44
pull_request:
5-
branches: [master]
5+
branches: [master, entry-point-v0.6]
66
push:
7-
branches: [master]
7+
branches: [master, entry-point-v0.6]
88

99
jobs:
1010
pr_lint_and_release:

0 commit comments

Comments
 (0)