-
Greetings, I currently have a webhook based autoscaling setup. It works beautifully for actions triggered by users. However, it does not work when dependabot triggers it for version and security updates. Dependabot actions are only run when an action is triggered by a user, which a runner is then created and it runs the action from dependabot instead of the user triggered action. May I know what I've done wrong? Cheers Config---
apiVersion: actions.summerwind.dev/v1alpha1
kind: RunnerDeployment
metadata:
name: runner
namespace: runner
spec:
template:
spec:
enterprise: keyute
labels:
- dependabot
---
apiVersion: actions.summerwind.dev/v1alpha1
kind: HorizontalRunnerAutoscaler
metadata:
name: runner
namespace: runner
spec:
minReplicas: 0
maxReplicas: 10
scaleTargetRef:
kind: RunnerDeployment
name: runner
scaleUpTriggers:
- githubEvent:
workflowJob: {}
duration: 30m Logs
|
Beta Was this translation helpful? Give feedback.
Answered by
keyute
Aug 28, 2022
Replies: 1 comment 1 reply
-
Fixed by adding explicit labels |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
keyute
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fixed by adding explicit labels