mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Merge contrib.yml into checks.yml
This commit is contained in:
parent
0e6cddb3ae
commit
cde8be654f
2 changed files with 10 additions and 12 deletions
10
.github/workflows/checks.yml
vendored
10
.github/workflows/checks.yml
vendored
|
@ -19,6 +19,16 @@ jobs:
|
||||||
echo "::set-output name=is_tagged::"
|
echo "::set-output name=is_tagged::"
|
||||||
fi
|
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:
|
tests:
|
||||||
needs:
|
needs:
|
||||||
- check_tag
|
- check_tag
|
||||||
|
|
12
.github/workflows/contrib.yml
vendored
12
.github/workflows/contrib.yml
vendored
|
@ -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
|
|
Loading…
Reference in a new issue