From a4160e4cfd1ac30b0b91d6e2fef914bbdf64511e Mon Sep 17 00:00:00 2001 From: mahula Date: Tue, 3 Oct 2023 09:44:06 +0200 Subject: [PATCH 1/3] add dependabot for github actions and packages --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d17d3ec --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,20 @@ +version: 2 +updates: + +- package-ecosystem: "github-actions" + directory: "/" + rebase-strategy: "disabled" + schedule: + interval: weekly + day: "saturday" + timezone: "Europe/Berlin" + time: "03:00" + +- package-ecosystem: npm + directory: "/" + rebase-strategy: "disabled" + schedule: + interval: weekly + day: "saturday" + timezone: "Europe/Berlin" + time: "03:00" From de3c985e10909cea4ae93579ac461223149ae7f1 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 5 Oct 2023 10:46:24 +0200 Subject: [PATCH 2/3] fix lint problem --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a81544..b3e00b4 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ npm test ## Deploy -You can use the webhook template `webhook.conf.template` and the `deploy.sh` script in `.github/webhooks/` to implement an automatic deployment from a (github) webhook. +You can use the webhook template `webhook.conf.template` and the `deploy.sh` script in `.github/webhooks/` for an automatic deployment from a (github) webhook. For this to work follow these steps (using alpine): ```bash From 3b79eeb95b941605ae90560973d70479a015a9fa Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 5 Oct 2023 10:54:23 +0200 Subject: [PATCH 3/3] specify when to run the test workflows (only used target master before --- .github/workflows/lint_pr.yml | 1 - .github/workflows/test-build.yml | 2 +- .github/workflows/test-lint.yml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint_pr.yml b/.github/workflows/lint_pr.yml index cdcac20..4cf117c 100644 --- a/.github/workflows/lint_pr.yml +++ b/.github/workflows/lint_pr.yml @@ -1,7 +1,6 @@ name: "lint pull request CI" on: - #pull_request: pull_request_target: types: - opened diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 662b7e9..ea93015 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -1,6 +1,6 @@ name: build test CI -on: pull_request_target +on: push jobs: build-test: diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index e1d6812..24e97fe 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -1,6 +1,6 @@ name: lint test CI -on: pull_request_target +on: push jobs: build-test: