From 707f2a14a2b8efca1de16f7e61dad370592a96c5 Mon Sep 17 00:00:00 2001 From: utkuufuk Date: Sat, 27 Jun 2020 23:57:48 +0300 Subject: [PATCH] get rid of the super-linter --- .github/workflows/ci.yml | 3 --- README.md | 12 ++++++------ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd11301..c6a11d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,6 @@ jobs: - name: Check gofmt run: test -z "$(gofmt -s -d .)" - - name: Lint Code Base - uses: docker://github/super-linter:v2.2.0 - - name: Run go vet run: go vet ./... diff --git a/README.md b/README.md index 8ef9b45..390ac16 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Feel free to add new sources or improve the implementations of the existing ones Copy and rename `config.example.yml` as `config.yml`, then set your own values in `config.yml`. Most of the configuration parameters are self explanatory, so the following only covers some of them: ### Global Timeout -You can edit the `timeout_secs` config value in order to update global timeout (in seconds) for a single execution. +You can edit the `timeout_secs` config value in order to update global timeout (in seconds) for a single execution. The execution will not terminate until the timeout is reached, so it's important that the timeout is shorter than the cron job period. @@ -35,11 +35,11 @@ You need a Telegram token & a chat ID in order to enable the integration if you ### Data Sources Every data source must have the following configuration parameters under the `source_config` key: - * `name` - * `enabled` - * `strict` - * `label_id` - * `period` +* `name` +* `enabled` +* `strict` +* `label_id` +* `period` #### **`enabled`** In order to disable a source, just update the `enabled` flag to `false`. There's no need to remove/edit the other parameters for that source.