-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (43 loc) · 1.1 KB
/
trigger_renovate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Trigger Renovate
on:
issues:
# Dependency Dashboard
types: [edited]
pull_request_target:
types:
# rebaseLabel
- labeled
# stopUpdatingLabel
- unlabeled
# PrControls
- edited
# ignore update
- closed
# Edited/Blocked
- synchronize
branches: ['main']
push:
branches:
- 'main'
# https://docs.renovatebot.com/config-validation/#validation-of-renovate-config-change-prs
- 'renovate/reconfigure'
# This lets you dispatch a renovate job with different cache options if you want to reset or disable the cache manually.
workflow_dispatch:
inputs:
repoCache:
description: 'Reset or disable the cache?'
type: choice
default: enabled
options:
- enabled
- disabled
- reset
permissions: {}
jobs:
renovate:
uses: eoeo-org/renovate-workflow/.github/workflows/_renovate.yml@main
with:
repoCache: ${{ inputs.repoCache }}
secrets:
app-id: ${{ vars.EOEO_TRIGGER_APP_ID }}
private-key: ${{ secrets.EOEO_TRIGGER_PRIVATE_KEY }}