From 8dccc5203506d9b818b13c68f12cf3a4d5d47419 Mon Sep 17 00:00:00 2001 From: Helder Moreira Date: Thu, 14 May 2020 14:47:43 +0100 Subject: [PATCH] Merge PR #6220: qa: add action to update qa page --- .github/workflows/update-qa.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/update-qa.yml diff --git a/.github/workflows/update-qa.yml b/.github/workflows/update-qa.yml new file mode 100644 index 0000000000..2f608a49cf --- /dev/null +++ b/.github/workflows/update-qa.yml @@ -0,0 +1,17 @@ +name: Update QA + +on: + schedule: + - cron: "0 */12 * * *" + +jobs: + build_deploy: + name: Update qa page + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v1 + - name: Generate and upload golangci-lint results + uses: cosmos/tools/gh-actions/update-cosmos-qa@master + with: + github_token: ${{ secrets.TENDERBOT_TOKEN }}