From 181dcf0a5a9434d5103ec090197d0cab4b212365 Mon Sep 17 00:00:00 2001 From: Juraj Date: Tue, 20 Jul 2021 14:41:53 +0100 Subject: [PATCH] chore(devops): adds hotfix backport --- .github/workflows/backport.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/backport.yml diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml new file mode 100644 index 000000000..dc8433b02 --- /dev/null +++ b/.github/workflows/backport.yml @@ -0,0 +1,20 @@ +name: Backport +on: + push: + branches: + - hotfix/* + pull_request: + types: + - opened + - closed + +jobs: + backport: + runs-on: ubuntu-18.04 + name: backport + steps: + - name: backport + uses: rsksmart/rif-marketplace-backport@v1 + with: + branches: develop,staging,testnet,mainnet + github_token: ${{ secrets.GITHUB_TOKEN }}