Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- main
- umee
- release/**

# This workflow makes amd64 and arm64 binaries for macOS and Linux.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on:
pull_request:
paths: ["**.go"]
branches:
- main
- umee
- release/**
push:
branches:
- main
- umee
- release/**
paths: ["**.go"]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linkchecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
paths: ["**.md"]
push:
branches:
- main
- umee
- release/**
paths: ["**.md"]

Expand All @@ -16,5 +16,5 @@ jobs:
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
check-modified-files-only: "yes"
base-branch: main
base-branch: umee
config-file: ".github/workflows/linkchecker.config.json"
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
push:
branches:
- main
- umee
- release/**

jobs:
Expand All @@ -28,7 +28,7 @@ jobs:
config: .revive.toml
exclude: "*.pb.go;*.pb.gw.go;*.pulsar.go;swagger/..."
path: "./..."
- name: golangci-lint main
- name: golangci-lint umee
uses: golangci/golangci-lint-action@v3
if: env.GIT_DIFF
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/price-feeder-release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# This workflow helps with creating docker images.
# This job will only be triggered when a tag (vX.X.x) is pushed
# This job will only be triggered when a tag (umee/vX.X.x) is pushed
name: Release price-feeder

on:
push:
tags:
- "v*.*.*"
- "umee/v*.*.*"

jobs:
goreleaser:
Expand All @@ -19,7 +19,7 @@ jobs:
go-version: 1.19
cache: true
cache-dependency-path: go.sum
# Parse 'v*.*.*' semantic version from 'v*.*.*' and save to
# Parse 'umee/v*.*.*' semantic version from 'umee/v*.*.*' and save to
# the $GITHUB_ENV environment variable.
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
push:
branches:
- main
- umee
- release/**

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ builds:
- -tags=badgerdb ledger netgo
- -trimpath
ldflags:
- -s -w -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X github.com/cosmos/cosmos-sdk/version.AppName=price-feeder -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }}
- -s -w -X umee.commit={{.Commit}} -X umee.date={{ .CommitDate }} -X github.com/cosmos/cosmos-sdk/version.AppName=price-feeder -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }}
goos:
- linux
goarch:
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pull_request_rules:
- name: Automatic merge on approval
conditions:
- "#approved-reviews-by>=1"
- base=main
- base=umee
- label=A:Automerge
actions:
queue:
Expand Down