update workflow config
This commit is contained in:
parent
9d7ba80551
commit
632b6fb6c7
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -10,15 +10,14 @@ 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)
|
||||
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'
|
||||
|
|
|
|||
|
|
@ -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/
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue