diff --git a/.github/repolinter.yaml b/.github/repolinter.yaml new file mode 100644 index 0000000..0099259 --- /dev/null +++ b/.github/repolinter.yaml @@ -0,0 +1,2 @@ +extends: https://raw.githubusercontent.com/todogroup/.github/master/repolinter-rules/default.yaml +# Add custom repolinter rules here. Learn more at https://github.com/todogroup/repolinter diff --git a/.github/workflows/repolinter.yaml b/.github/workflows/repolinter.yaml new file mode 100644 index 0000000..ea04f89 --- /dev/null +++ b/.github/workflows/repolinter.yaml @@ -0,0 +1,11 @@ +name: repolinter +on: [push, pull_request] + +jobs: + repolinter: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: todogroup/repolinter-action@v1 + with: + config_file: .github/repolinter.yaml