We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f25760 commit 0e9e8abCopy full SHA for 0e9e8ab
.github/workflows/check-authors.yaml
@@ -0,0 +1,23 @@
1
+name: Authorship
2
+
3
+on:
4
+ workflow_call:
5
6
+jobs:
7
8
+ authors:
9
+ name: check authors
10
+ runs-on: ubuntu-latest
11
+ steps:
12
13
+ - name: Checkout
14
+ uses: actions/checkout@v3
15
16
+ - name: Install fish
17
+ run: |
18
+ sudo apt-get install -qy fish
19
20
+ - name: Check authors
21
22
+ git fetch origin ${{ github.base_ref }}
23
+ HEN_HOUSE/scripts/admin/check-authors.fish origin/${{ github.base_ref }}..HEAD
.github/workflows/check-build.yaml
@@ -19,6 +19,9 @@ jobs:
name: coding style
uses: ./.github/workflows/check-coding-style.yaml
+ name: authorship
+ uses: ./.github/workflows/check-authors.yaml
24
25
build:
26
27
strategy:
0 commit comments