Merge pull request #94265 from zowoq/actions
github actions: update and add to codeowners
This commit is contained in:
commit
99acd4c77d
|
@ -10,6 +10,12 @@
|
||||||
# This file
|
# This file
|
||||||
/.github/CODEOWNERS @edolstra
|
/.github/CODEOWNERS @edolstra
|
||||||
|
|
||||||
|
# GitHub actions
|
||||||
|
/.github/workflows @Mic92 @zowoq
|
||||||
|
|
||||||
|
# EditorConfig
|
||||||
|
/.editorconfig @Mic92 @zowoq
|
||||||
|
|
||||||
# Libraries
|
# Libraries
|
||||||
/lib @edolstra @nbp @infinisil
|
/lib @edolstra @nbp @infinisil
|
||||||
/lib/systems @nbp @ericson2314 @matthewbauer
|
/lib/systems @nbp @ericson2314 @matthewbauer
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name: actions
|
name: "Checking EditorConfig"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
@ -6,14 +6,14 @@ on:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
editorconfig:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: technote-space/get-diff-action@v2.0.2
|
- uses: technote-space/get-diff-action@v2.0.2
|
||||||
- name: editorconfig check
|
- name: Checking EditorConfig
|
||||||
env:
|
env:
|
||||||
VERSION: "2.0.4"
|
VERSION: "2.1.0"
|
||||||
OS: "linux"
|
OS: "linux"
|
||||||
ARCH: "amd64"
|
ARCH: "amd64"
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue