From 399ec5e4dbb0b81e71fc76e9b7837c7f36302904 Mon Sep 17 00:00:00 2001 From: Will Norris Date: Wed, 22 Sep 2021 10:45:39 -0700 Subject: [PATCH] ci: add github action for running repolinter (#7) --- .github/repolinter.yaml | 2 ++ .github/workflows/repolinter.yaml | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .github/repolinter.yaml create mode 100644 .github/workflows/repolinter.yaml 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