white-kite-45517
01/17/2025, 9:59 PMmicroscopic-river-74022
01/17/2025, 9:59 PMmicroscopic-river-74022
01/17/2025, 9:59 PMtriggers
field in the workflow configuration to specify when the workflow should run.
Here's an example of how you can configure a workflow to trigger on pull requests from feature/*
branches:
yaml
kind: Workflow
name: my-workflow
steps:
- ...
triggers:
- environment: local
events: [pull-request]
branches: [feature/*]
This configuration will trigger the workflow when a pull request is made from any branch starting with feature/
.
For more detailed information on configuring triggers and workflows, you can refer to the [Workflows documentation]().
It's important to note that this feature is available in Garden Cloud, which can monitor your project repository for updates and trigger workflows automatically on events like PR and branch updates.
If you need more specific information about triggering actions based on individual file changes, the provided knowledge sources don't contain enough detailed information to answer that particular aspect of your question.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------microscopic-river-74022
01/17/2025, 9:59 PM