Step 7 - Add Jira custom fields to config
Using the field IDs you found in Step 6, add them to your config.yml under the jira: block so the agent knows which custom fields map to each required Hivel type.
jira:
required_hivel_types:
- STORY_POINTS
- SPRINT
- PRODUCT
- ALLOCATION
- EPIC
extra_fields:
- customfield_10016 - STORY_POINTS # replace with your actual field IDs
- customfield_10020 - SPRINT
- customfield_10042 - PRODUCT
- customfield_10044 - ALLOCATION
- customfield_10014 - EPICValidate the config:
./hivel-agent --config config.yml --env-file .env config checkLast updated