Skip to content

Commit

Permalink
fix(providers): change greenhouse api key validation (#3095)
Browse files Browse the repository at this point in the history
## Changes

- Fix greenhouse api key validation
It can contain a dash for some reason
https://support.greenhouse.io/hc/en-us/articles/115000521723-Manage-Harvest-API-key-permissions
  • Loading branch information
bodinsamuel authored Dec 2, 2024
1 parent 5e42eae commit 3c3a2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3030,7 +3030,7 @@ greenhouse-basic:
type: string
title: API key
description: The API Key of your Greenhouse account
pattern: '^[a-zA-Z0-9]+$'
pattern: '^[a-zA-Z0-9-]+$'
secret: true
password:
type: string
Expand Down

0 comments on commit 3c3a2ff

Please sign in to comment.