From 02a6f2e88e46c6d7c1a1d6186dee452598cfd13c Mon Sep 17 00:00:00 2001 From: web3-bot <81333946+web3-bot@users.noreply.github.com> Date: Fri, 29 Oct 2021 05:07:32 -0400 Subject: [PATCH] sync: update CI config files (#144) --- .github/workflows/release-check.yml | 12 ++++++++++++ .github/workflows/releaser.yml | 12 ++++++++++++ .github/workflows/tagpush.yml | 12 ++++++++++++ version.json | 3 +++ 4 files changed, 39 insertions(+) create mode 100644 .github/workflows/release-check.yml create mode 100644 .github/workflows/releaser.yml create mode 100644 .github/workflows/tagpush.yml create mode 100644 version.json 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 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 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 diff --git a/version.json b/version.json new file mode 100644 index 0000000..372b6ea --- /dev/null +++ b/version.json @@ -0,0 +1,3 @@ +{ + "version": "v0.4.0" +}