From e7c1e0c9c7b20c46e3266d2c364b305f6935e199 Mon Sep 17 00:00:00 2001 From: web3-bot Date: Fri, 29 Oct 2021 09:04:09 +0000 Subject: [PATCH 1/4] add version.json file --- version.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 version.json diff --git a/version.json b/version.json new file mode 100644 index 0000000..e0943d0 --- /dev/null +++ b/version.json @@ -0,0 +1,3 @@ +{ + "version": "v0.16.0" +} From 6b0f342e49d2accb6c6c8173c63db90c9536f750 Mon Sep 17 00:00:00 2001 From: web3-bot Date: Fri, 29 Oct 2021 09:04:10 +0000 Subject: [PATCH 2/4] add .github/workflows/releaser.yml --- .github/workflows/releaser.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/releaser.yml diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml new file mode 100644 index 0000000..51802c5 --- /dev/null +++ b/.github/workflows/releaser.yml @@ -0,0 +1,12 @@ +# File managed by web3-bot. DO NOT EDIT. +# See https://github.com/protocol/.github/ for details. + +name: Releaser +on: + push: + paths: [ 'version.json' ] + branches: [ master ] + +jobs: + releaser: + uses: protocol/.github/.github/workflows/releaser.yml@master From bf676e1a0460701ee682b1c836147e4615e5886e Mon Sep 17 00:00:00 2001 From: web3-bot Date: Fri, 29 Oct 2021 09:04:10 +0000 Subject: [PATCH 3/4] add .github/workflows/release-check.yml --- .github/workflows/release-check.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/release-check.yml diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml new file mode 100644 index 0000000..ed829b7 --- /dev/null +++ b/.github/workflows/release-check.yml @@ -0,0 +1,12 @@ +# File managed by web3-bot. DO NOT EDIT. +# See https://github.com/protocol/.github/ for details. + +name: Release Checker +on: + pull_request: + paths: [ 'version.json' ] + branches: [ master ] + +jobs: + release-check: + uses: protocol/.github/.github/workflows/release-check.yml@master From 9d8b321ddc78d39cc86a71e5b23aac66dd9f6f09 Mon Sep 17 00:00:00 2001 From: web3-bot Date: Fri, 29 Oct 2021 09:04:10 +0000 Subject: [PATCH 4/4] add .github/workflows/tagpush.yml --- .github/workflows/tagpush.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/tagpush.yml diff --git a/.github/workflows/tagpush.yml b/.github/workflows/tagpush.yml new file mode 100644 index 0000000..d849961 --- /dev/null +++ b/.github/workflows/tagpush.yml @@ -0,0 +1,12 @@ +# File managed by web3-bot. DO NOT EDIT. +# See https://github.com/protocol/.github/ for details. + +name: Tag Push Checker +on: + push: + tags: + - v* + +jobs: + releaser: + uses: protocol/.github/.github/workflows/tagpush.yml@master