Skip to content

Commit

Permalink
ci: add new ep v0.6 branch to github workflows (#27)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
huaweigu authored Oct 22, 2024
1 parent afa4a4d commit 7ef2651
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Continuous Integration
on:
pull_request:
push:
branches: [master]
branches: [master, entry-point-v0.6]

jobs:
lint_and_test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Coverage
on:
pull_request:
push:
branches: [master]
branches: [master, entry-point-v0.6]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: PR Lint and Release

on:
pull_request:
branches: [master]
branches: [master, entry-point-v0.6]
push:
branches: [master]
branches: [master, entry-point-v0.6]

jobs:
pr_lint_and_release:
Expand Down

0 comments on commit 7ef2651

Please sign in to comment.