From 483c897a3bd1d97ecb69977f15d9bb5f5cf4f3ae Mon Sep 17 00:00:00 2001 From: Cirrus Gai Date: Tue, 3 Sep 2024 10:09:53 +0800 Subject: [PATCH] Add contributing and release process docs (#22) --- .github/workflows/publish.yml | 3 +-- CONTRIBUTING.md | 5 +++++ RELEASE_PROCESS.md | 5 +++++ 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 CONTRIBUTING.md create mode 100644 RELEASE_PROCESS.md diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6569746..5f27a46 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,7 +4,6 @@ on: push: branches: - 'main' - - 'dev' tags: - '*' @@ -15,7 +14,7 @@ jobs: install-dependencies-command: 'sudo apt-get install libzmq3-dev' run-unit-tests: true run-integration-tests: true - + docker_pipeline: needs: ["lint_test"] uses: babylonlabs-io/.github/.github/workflows/reusable_docker_pipeline.yml@v0.1.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..47cd4aa --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,5 @@ +# Contributing + +Staking-indexer repository follows the same contributing rules as +[Babylon node](https://github.com/babylonlabs-io/babylon/blob/main/CONTRIBUTING.md) +repository. diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md new file mode 100644 index 0000000..100e08a --- /dev/null +++ b/RELEASE_PROCESS.md @@ -0,0 +1,5 @@ +# Release Process + +Staking-indexer repository follows the same release process rules as +[Babylon node](https://github.com/babylonlabs-io/babylon/blob/main/RELEASE_PROCESS.md) +repository.