fixed github actions

This commit is contained in:
Mick Grove 2026-03-29 12:48:55 -07:00
commit 2b99c6a354
4 changed files with 9 additions and 16 deletions

View file

@ -32,7 +32,7 @@ rules:
method: GET
url: https://api.fullstory.com/me
headers:
Authorization: Basic {{ TOKEN | append: ':' | b64enc }}
Authorization: "Basic {{ TOKEN | append: ':' | b64enc }}"
Accept: application/json
response_matcher:
- report_response: true

View file

@ -51,7 +51,7 @@ rules:
extract:
AUTHORIZATION_ID:
type: Regex
pattern: '"id":"([^"]+)"(?:.|[\n\r]){0,2048}?"token":"{{ TOKEN }}"'
pattern: '"id":"([^"]+)"[^{}]{0,2048}?"token":"{{ TOKEN }}"'
- name: revoke_authorization
request:
method: DELETE
@ -108,7 +108,7 @@ rules:
extract:
AUTHORIZATION_ID:
type: Regex
pattern: '"id":"([^"]+)"(?:.|[\n\r]){0,2048}?"token":"{{ TOKEN }}"'
pattern: '"id":"([^"]+)"[^{}]{0,2048}?"token":"{{ TOKEN }}"'
- name: revoke_authorization
request:
method: DELETE

View file

@ -18,13 +18,3 @@ rules:
- webhook_url="https://hooks.zapier.com/hooks/catch/2929690/ztd17n/"
references:
- https://help.zapier.com/hc/en-us/articles/8496288690317-Trigger-Zaps-from-webhooks
validation:
type: Http
content:
request:
method: GET
url: '{{ TOKEN }}'
response_matcher:
- report_response: true
- type: StatusMatch
status: [200]

View file

@ -6,7 +6,10 @@ rules:
\b
(
[a-z0-9]
[a-z0-9-]{1,62}
(?:
[a-z0-9-]{0,61}
[a-z0-9]
)?
\.zendesk\.com
)
\b
@ -80,7 +83,7 @@ rules:
- https://developer.zendesk.com/api-reference/ticketing/account-configuration/current_user/
depends_on_rule:
- rule_id: kingfisher.zendesk.1
variable: ZENDESK_SUBDOMAIN
variable: ZENDESK_HOST
- rule_id: kingfisher.zendesk.2
variable: ZENDESK_EMAIL
validation:
@ -88,7 +91,7 @@ rules:
content:
request:
method: GET
url: 'https://{{ ZENDESK_SUBDOMAIN }}/api/v2/users/me.json'
url: 'https://{{ ZENDESK_HOST }}/api/v2/users/me.json'
headers:
Accept: application/json
Authorization: 'Basic {{ ZENDESK_EMAIL | append: "/token:" | append: TOKEN | b64enc }}'