From 5018fd01783e6c29c2fec87ed86bca136154492f Mon Sep 17 00:00:00 2001 From: Stanislas Lange Date: Fri, 24 Jul 2020 12:58:08 +0200 Subject: [PATCH] Add dependabot and super linter --- .github/dependabot.yml | 18 ++++++++++++++++++ .github/workflows/linter.yml | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/linter.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..49660e2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: +- package-ecosystem: docker + directory: "/" + schedule: + interval: daily + assignees: + - "angristan" + reviewers: + - "angristan" +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + assignees: + - "angristan" + reviewers: + - "angristan" diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..d836d99 --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,17 @@ +--- +name: Lint Code Base +on: push + +jobs: + build: + name: Lint Code Base + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Lint Code Base + uses: docker://github/super-linter:v2.2.2 + env: + VALIDATE_ENV: false