From 632b6fb6c79660197d966448cb279445e1f043e7 Mon Sep 17 00:00:00 2001 From: sebthom Date: Tue, 2 Apr 2024 18:57:12 +0200 Subject: [PATCH] update workflow config --- .github/dependabot.yml | 11 ++++++----- .github/workflows/build.yml | 5 ++--- .github/workflows/stale.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7135646..f2838e2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,4 +1,4 @@ -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file version: 2 updates: - package-ecosystem: github-actions @@ -6,11 +6,12 @@ updates: schedule: interval: weekly day: monday - time: "09:00" + time: "10:00" commit-message: - prefix: fix - prefix-development: chore + prefix: ci + prefix-development: ci include: scope labels: - - gha + - pinned - dependencies + - gha diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1914fff..3251ef6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,16 +9,15 @@ name: Build on: push: branches-ignore: # build all branches except: - - 'dependabot/**' # prevent GHA triggered twice (once for commit to the branch and once for opening/syncing the PR) - - 'dependencies/pdm' # prevent GHA triggered twice (once for commit to the branch and once for opening/syncing the PR) + - 'dependabot/**' # prevent GHA triggered twice (once for commit to the branch and once for opening/syncing the PR) tags-ignore: # don't build tags - '**' paths-ignore: - '**/*.md' - '.editorconfig' - '.git*' - - '.github/workflows/stale.yml' - '.github/*.yml' + - '.github/workflows/stale.yml' schedule: # https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows - cron: '0 17 * * 3' diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d1be5a3..545e172 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -3,7 +3,7 @@ name: Stale issues on: schedule: - - cron: '0 16 * * *' + - cron: '0 16 * * 1' workflow_dispatch: # https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/