From cde8be654f1505ac0de1c33e9f9861cc9c7718d6 Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Thu, 30 Apr 2020 16:48:09 -0300 Subject: [PATCH] Merge contrib.yml into checks.yml --- .github/workflows/checks.yml | 10 ++++++++++ .github/workflows/contrib.yml | 12 ------------ 2 files changed, 10 insertions(+), 12 deletions(-) delete mode 100644 .github/workflows/contrib.yml diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 7370e1577..a098be123 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -19,6 +19,16 @@ jobs: echo "::set-output name=is_tagged::" fi + contrib: + name: Author in CONTRIBUTORS + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Check + run: | + set -x + .github/scripts/contrib.sh + tests: needs: - check_tag diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml deleted file mode 100644 index ad81e1895..000000000 --- a/.github/workflows/contrib.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Author in CONTRIBUTORS - -on: [push, pull_request] - -jobs: - check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Check - run: | - .github/scripts/contrib.sh