update workflow config

This commit is contained in:
sebthom 2024-04-02 18:57:12 +02:00
parent 9d7ba80551
commit 632b6fb6c7
3 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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'

View File

@ -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/