Skip to content

Commit

Permalink
Merge branch 'main' into BUX-705/Gitbook
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazarii-4chain authored Apr 11, 2024
2 parents 5d67d57 + add5738 commit 91e2e55
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
updates:
# Maintain dependencies for the core library
- package-ecosystem: "gomod"
target-branch: "master"
target-branch: "main"
directory: "/"
schedule:
interval: "weekly"
Expand All @@ -13,7 +13,7 @@ updates:
open-pull-requests-limit: 10

- package-ecosystem: "gomod"
target-branch: "master"
target-branch: "main"
directory: "/engine"
schedule:
interval: "weekly"
Expand All @@ -23,7 +23,7 @@ updates:
open-pull-requests-limit: 10

- package-ecosystem: "gomod"
target-branch: "master"
target-branch: "main"
directory: "/models"
schedule:
interval: "weekly"
Expand All @@ -34,7 +34,7 @@ updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
target-branch: "master"
target-branch: "main"
directory: "/"
schedule:
interval: "weekly"
Expand All @@ -45,7 +45,7 @@ updates:

# Maintain dependencies for Docker
- package-ecosystem: "docker"
target-branch: "master"
target-branch: "main"
directory: "/"
schedule:
interval: "weekly"
Expand All @@ -56,7 +56,7 @@ updates:

# Maintain dependencies for Docker
- package-ecosystem: "docker"
target-branch: "master"
target-branch: "main"
directory: "/release"
schedule:
interval: "weekly"
Expand Down
2 changes: 1 addition & 1 deletion .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ pull_request_rules:

- name: Close stale pull request
conditions:
- base=master
- base=main
- -closed
- updated-at<21 days ago
actions:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ name: "CodeQL"

on:
push:
branches: [master]
branches:
- master
- main
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
branches:
- master
- main
# schedule:
# - cron: '0 23 * * 0'

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- master
- main
paths:
- .github/labels.yml
jobs:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@


[![Release](https://img.shields.io/github/release-pre/bitcoin-sv/spv-wallet.svg?logo=github&style=flat&v=3)](https://github.com/bitcoin-sv/spv-wallet/releases)
[![Build Status](https://img.shields.io/github/actions/workflow/status/bitcoin-sv/spv-wallet/run-tests.yml?branch=master&v=3)](https://github.com/bitcoin-sv/spv-wallet/actions)
[![Build Status](https://img.shields.io/github/actions/workflow/status/bitcoin-sv/spv-wallet/run-tests.yml?branch=main&v=3)](https://github.com/bitcoin-sv/spv-wallet/actions)
[![Report](https://goreportcard.com/badge/github.com/bitcoin-sv/spv-wallet?style=flat&v=3)](https://goreportcard.com/report/github.com/bitcoin-sv/spv-wallet)
[![codecov](https://codecov.io/gh/bitcoin-sv/spv-wallet/branch/master/graph/badge.svg?v=3)](https://codecov.io/gh/bitcoin-sv/spv-wallet)
[![codecov](https://codecov.io/gh/bitcoin-sv/spv-wallet/branch/main/graph/badge.svg?v=3)](https://codecov.io/gh/bitcoin-sv/spv-wallet)
[![Mergify Status](https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/bitcoin-sv/spv-wallet&style=flat&v=3)](https://mergify.io)
<br>

Expand Down
4 changes: 2 additions & 2 deletions engine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# SPV Wallet Engine

[![Release](https://img.shields.io/github/release-pre/bitcoin-sv/spv-wallet/engine.svg?logo=github&style=flat&v=2)](https://github.com/bitcoin-sv/spv-wallet/engine/releases)
[![Build Status](https://img.shields.io/github/actions/workflow/status/bitcoin-sv/spv-wallet/engine/run-tests.yml?branch=master&v=2)](https://github.com/bitcoin-sv/spv-wallet/engine/actions)
[![Build Status](https://img.shields.io/github/actions/workflow/status/bitcoin-sv/spv-wallet/engine/run-tests.yml?branch=main&v=2)](https://github.com/bitcoin-sv/spv-wallet/engine/actions)
[![Report](https://goreportcard.com/badge/github.com/bitcoin-sv/spv-wallet/engine?style=flat&v=2)](https://goreportcard.com/report/github.com/bitcoin-sv/spv-wallet/engine)
[![codecov](https://codecov.io/gh/bitcoin-sv/spv-wallet/engine/branch/master/graph/badge.svg?v=2)](https://codecov.io/gh/bitcoin-sv/spv-wallet/engine)
[![codecov](https://codecov.io/gh/bitcoin-sv/spv-wallet/engine/branch/main/graph/badge.svg?v=2)](https://codecov.io/gh/bitcoin-sv/spv-wallet/engine)
[![Mergify Status](https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/bitcoin-sv/spv-wallet/engine&style=flat&v=2)](https://mergify.com)
<br>

Expand Down
2 changes: 1 addition & 1 deletion release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG version
ARG tag
ENV APP_BINARY=${project_name}
ENV VERSION=${version:-develop}
ENV TAG=${tag:-master}
ENV TAG=${tag:-main}
COPY ./release/entrypoint.sh .
RUN chmod +x entrypoint.sh

Expand Down

0 comments on commit 91e2e55

Please # to comment.