[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sentry-sentry-create-alert":3,"mdc--6ncrqa-key":39,"related-org-sentry-sentry-create-alert":3569,"related-repo-sentry-sentry-create-alert":3749},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":27,"repoUrl":28,"updatedAt":29,"license":30,"forks":31,"topics":32,"repo":34,"sourceUrl":37,"mdContent":38},"sentry-create-alert","create and configure Sentry alerts","Create Sentry alerts using the workflow engine API. Use when asked to create alerts, set up notifications, configure issue priority alerts, or build workflow automations. Supports email, Slack, PagerDuty, Discord, and other notification actions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"sentry","Sentry","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsentry.png","getsentry",[13,17,20,23,24],{"name":14,"slug":15,"type":16},"Alerting","alerting","tag",{"name":18,"slug":19,"type":16},"Automation","automation",{"name":21,"slug":22,"type":16},"Slack","slack",{"name":9,"slug":8,"type":16},{"name":25,"slug":26,"type":16},"Email","email",19,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-agent-skills","2026-07-18T05:47:21.895881","Apache-2.0",2,[33],"tag-production",{"repoUrl":28,"stars":27,"forks":31,"topics":35,"description":36},[33],null,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-agent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fsentry-create-alert","---\nname: sentry-create-alert\ndescription: Create Sentry alerts using the workflow engine API. Use when asked to create alerts, set up notifications, configure issue priority alerts, or build workflow automations. Supports email, Slack, PagerDuty, Discord, and other notification actions.\nlicense: Apache-2.0\n---\n\n# Create Sentry Alert\n\nCreate alerts via Sentry's workflow engine API.\n\n**Note:** This API is currently in **beta** and may be subject to change. It is part of New Monitors and Alerts and may not be viewable in the legacy Alerts UI.\n\n## Invoke This Skill When\n\n- User asks to \"create a Sentry alert\" or \"set up notifications\"\n- User wants to be emailed or notified when issues match certain conditions\n- User mentions priority alerts, de-escalation alerts, or workflow automations\n- User wants to configure Slack, PagerDuty, or email notifications for Sentry issues\n\n## Prerequisites\n\n- `curl` available in shell\n- Sentry org auth token with `alerts:write` scope (also accepts `org:admin` or `org:write`)\n\n## Phase 1: Gather Configuration\n\nAsk the user for any missing details:\n\n| Detail | Required | Example |\n|--------|----------|---------|\n| Org slug | Yes | `sentry`, `my-org` |\n| Auth token | Yes | `sntryu_...` (needs `alerts:write` scope) |\n| Region | Yes (default: `us`) | `us` → `us.sentry.io`, `de` → `de.sentry.io` |\n| Alert name | Yes | `\"High Priority De-escalation Alert\"` |\n| Trigger events | Yes | Which issue events fire the workflow |\n| Conditions | Optional | Filter conditions before actions execute |\n| Action type | Yes | `email`, `slack`, or `pagerduty` |\n| Action target | Yes | User email, team, channel, or service |\n\n## Phase 2: Look Up IDs\n\nUse these API calls to resolve names to IDs as needed.\n\n```bash\nAPI=\"https:\u002F\u002F{region}.sentry.io\u002Fapi\u002F0\u002Forganizations\u002F{org}\"\nAUTH=\"Authorization: Bearer {token}\"\n\n# Find user ID by email\ncurl -s \"$API\u002Fmembers\u002F\" -H \"$AUTH\" | python3 -c \"\nimport json,sys\nfor m in json.load(sys.stdin):\n  if m.get('email')=='USER_EMAIL' or m.get('user',{}).get('email')=='USER_EMAIL':\n    print(m['user']['id']); break\"\n\n# List teams\ncurl -s \"$API\u002Fteams\u002F\" -H \"$AUTH\" | python3 -c \"\nimport json,sys\nfor t in json.load(sys.stdin):\n  print(t['id'], t['slug'])\"\n\n# List integrations (for Slack\u002FPagerDuty)\ncurl -s \"$API\u002Fintegrations\u002F\" -H \"$AUTH\" | python3 -c \"\nimport json,sys\nfor i in json.load(sys.stdin):\n  print(i['id'], i['provider']['key'], i['name'])\"\n```\n\n## Phase 3: Build Payload\n\n### Trigger Events\n\nPick which issue events fire the workflow. Use `logicType: \"any-short\"` (triggers must always use this).\n\n| Type | Fires when |\n|------|-----------|\n| `first_seen_event` | New issue created |\n| `regression_event` | Resolved issue recurs |\n| `reappeared_event` | Archived issue reappears |\n| `issue_resolved_trigger` | Issue is resolved |\n\n### Filter Conditions\n\nConditions that must pass before actions execute. Use `logicType: \"all\"`, `\"any-short\"`, or `\"none\"`.\n\n**The `comparison` field is polymorphic** — its shape depends on the condition `type`:\n\n| Type | `comparison` format | Description |\n|------|---------------------|-------------|\n| `issue_priority_greater_or_equal` | `75` (bare integer) | Priority >= Low(25)\u002FMedium(50)\u002FHigh(75) |\n| `issue_priority_deescalating` | `true` (bare boolean) | Priority dropped below peak |\n| `event_frequency_count` | `{\"value\": 100, \"interval\": \"1hr\"}` | Event count in time window |\n| `event_unique_user_frequency_count` | `{\"value\": 50, \"interval\": \"1hr\"}` | Affected users in time window |\n| `tagged_event` | `{\"key\": \"level\", \"match\": \"eq\", \"value\": \"error\"}` | Event tag matches |\n| `assigned_to` | `{\"targetType\": \"Member\", \"targetIdentifier\": 123}` | Issue assigned to target |\n| `level` | `{\"level\": 40, \"match\": \"gte\"}` | Event level (fatal=50, error=40, warning=30) |\n| `age_comparison` | `{\"time\": \"hour\", \"value\": 24, \"comparisonType\": \"older\"}` | Issue age |\n| `issue_category` | `{\"value\": 1}` | Category (1=Error, 6=Feedback) |\n| `issue_occurrences` | `{\"value\": 100}` | Total occurrence count |\n\n**Interval options:** `\"1min\"`, `\"5min\"`, `\"15min\"`, `\"1hr\"`, `\"1d\"`, `\"1w\"`, `\"30d\"`\n\n**Tag match types:** `\"co\"` (contains), `\"nc\"` (not contains), `\"eq\"`, `\"ne\"`, `\"sw\"` (starts with), `\"ew\"` (ends with), `\"is\"` (set), `\"ns\"` (not set)\n\nSet `conditionResult` to `false` to invert (fire when condition is NOT met).\n\n### Actions\n\n| Type | Key Config |\n|------|-----------|\n| `email` | `config.targetType`: `\"user\"` \u002F `\"team\"` \u002F `\"issue_owners\"`, `config.targetIdentifier`: `\u003Cid>` |\n| `slack` | `integrationId`: `\u003Cid>`, `config.targetDisplay`: `\"#channel-name\"` |\n| `pagerduty` | `integrationId`: `\u003Cid>`, `config.targetDisplay`: `\u003Cservice_name>`, `data.priority`: `\"critical\"` |\n| `discord` | `integrationId`: `\u003Cid>`, `data.tags`: tag list |\n| `msteams` | `integrationId`: `\u003Cid>`, `config.targetDisplay`: `\u003Cchannel>` |\n| `opsgenie` | `integrationId`: `\u003Cid>`, `data.priority`: `\"P1\"`-`\"P5\"` |\n| `jira` | `integrationId`: `\u003Cid>`, `data`: project\u002Fissue config |\n| `github` | `integrationId`: `\u003Cid>`, `data`: repo\u002Fissue config |\n\n### Full Payload Structure\n\n```json\n{\n  \"name\": \"\u003CAlert Name>\",\n  \"enabled\": true,\n  \"environment\": null,\n  \"config\": { \"frequency\": 30 },\n  \"triggers\": {\n    \"logicType\": \"any-short\",\n    \"conditions\": [\n      { \"type\": \"first_seen_event\", \"comparison\": true, \"conditionResult\": true }\n    ],\n    \"actions\": []\n  },\n  \"actionFilters\": [{\n    \"logicType\": \"all\",\n    \"conditions\": [\n      { \"type\": \"issue_priority_greater_or_equal\", \"comparison\": 75, \"conditionResult\": true },\n      { \"type\": \"event_frequency_count\", \"comparison\": {\"value\": 50, \"interval\": \"1hr\"}, \"conditionResult\": true }\n    ],\n    \"actions\": [{\n      \"type\": \"email\",\n      \"integrationId\": null,\n      \"data\": {},\n      \"config\": {\n        \"targetType\": \"user\",\n        \"targetIdentifier\": \"\u003Cuser_id>\",\n        \"targetDisplay\": null\n      },\n      \"status\": \"active\"\n    }]\n  }]\n}\n```\n\n`frequency`: minutes between repeated notifications. Allowed values: `0`, `5`, `10`, `30`, `60`, `180`, `720`, `1440`.\n\n**Structure note:** `triggers.actions` is always `[]` — actions live inside `actionFilters[].actions`.\n\n## Phase 4: Create the Alert\n\n```bash\ncurl -s -w \"\\n%{http_code}\" -X POST \\\n  \"https:\u002F\u002F{region}.sentry.io\u002Fapi\u002F0\u002Forganizations\u002F{org}\u002Fworkflows\u002F\" \\\n  -H \"Authorization: Bearer {token}\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{payload}'\n```\n\nExpect HTTP `201`. The response contains the workflow `id`.\n\n## Phase 5: Verify\n\nConfirm the alert was created and provide the UI link:\n\n```\nhttps:\u002F\u002F{org_slug}.sentry.io\u002Fmonitors\u002Falerts\u002F{workflow_id}\u002F\n```\n\nIf the org lacks the `workflow-engine-ui` feature flag, the alert appears at:\n\n```\nhttps:\u002F\u002F{org_slug}.sentry.io\u002Falerts\u002Frules\u002F\n```\n\n## Managing Alerts\n\n```bash\n# List all workflows\ncurl -s \"$API\u002Fworkflows\u002F\" -H \"$AUTH\"\n\n# Get one workflow\ncurl -s \"$API\u002Fworkflows\u002F{id}\u002F\" -H \"$AUTH\"\n\n# Update a workflow\ncurl -s -X PUT \"$API\u002Fworkflows\u002F{id}\u002F\" -H \"$AUTH\" -H \"Content-Type: application\u002Fjson\" -d '{payload}'\n\n# Delete a workflow\ncurl -s -X DELETE \"$API\u002Fworkflows\u002F{id}\u002F\" -H \"$AUTH\"\n# Expect 204\n```\n\n## Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| 401 Unauthorized | Token needs `alerts:write` scope |\n| 403 Forbidden | Token must belong to the target org |\n| 404 Not Found | Check org slug and region (`us` vs `de`) |\n| 400 Bad Request | Validate payload JSON structure, check required fields |\n| User ID not found | Verify email matches a member of the org |\n",{"data":40,"body":41},{"name":4,"description":6,"license":30},{"type":42,"children":43},"root",[44,53,59,77,84,109,115,159,165,170,419,425,430,846,852,859,872,962,968,995,1021,1316,1374,1445,1466,1472,1832,1838,2842,2908,2940,2946,3088,3108,3114,3119,3129,3142,3151,3157,3450,3456,3563],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"create-sentry-alert",[50],{"type":51,"value":52},"text","Create Sentry Alert",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Create alerts via Sentry's workflow engine API.",{"type":45,"tag":54,"props":60,"children":61},{},[62,68,70,75],{"type":45,"tag":63,"props":64,"children":65},"strong",{},[66],{"type":51,"value":67},"Note:",{"type":51,"value":69}," This API is currently in ",{"type":45,"tag":63,"props":71,"children":72},{},[73],{"type":51,"value":74},"beta",{"type":51,"value":76}," and may be subject to change. It is part of New Monitors and Alerts and may not be viewable in the legacy Alerts UI.",{"type":45,"tag":78,"props":79,"children":81},"h2",{"id":80},"invoke-this-skill-when",[82],{"type":51,"value":83},"Invoke This Skill When",{"type":45,"tag":85,"props":86,"children":87},"ul",{},[88,94,99,104],{"type":45,"tag":89,"props":90,"children":91},"li",{},[92],{"type":51,"value":93},"User asks to \"create a Sentry alert\" or \"set up notifications\"",{"type":45,"tag":89,"props":95,"children":96},{},[97],{"type":51,"value":98},"User wants to be emailed or notified when issues match certain conditions",{"type":45,"tag":89,"props":100,"children":101},{},[102],{"type":51,"value":103},"User mentions priority alerts, de-escalation alerts, or workflow automations",{"type":45,"tag":89,"props":105,"children":106},{},[107],{"type":51,"value":108},"User wants to configure Slack, PagerDuty, or email notifications for Sentry issues",{"type":45,"tag":78,"props":110,"children":112},{"id":111},"prerequisites",[113],{"type":51,"value":114},"Prerequisites",{"type":45,"tag":85,"props":116,"children":117},{},[118,130],{"type":45,"tag":89,"props":119,"children":120},{},[121,128],{"type":45,"tag":122,"props":123,"children":125},"code",{"className":124},[],[126],{"type":51,"value":127},"curl",{"type":51,"value":129}," available in shell",{"type":45,"tag":89,"props":131,"children":132},{},[133,135,141,143,149,151,157],{"type":51,"value":134},"Sentry org auth token with ",{"type":45,"tag":122,"props":136,"children":138},{"className":137},[],[139],{"type":51,"value":140},"alerts:write",{"type":51,"value":142}," scope (also accepts ",{"type":45,"tag":122,"props":144,"children":146},{"className":145},[],[147],{"type":51,"value":148},"org:admin",{"type":51,"value":150}," or ",{"type":45,"tag":122,"props":152,"children":154},{"className":153},[],[155],{"type":51,"value":156},"org:write",{"type":51,"value":158},")",{"type":45,"tag":78,"props":160,"children":162},{"id":161},"phase-1-gather-configuration",[163],{"type":51,"value":164},"Phase 1: Gather Configuration",{"type":45,"tag":54,"props":166,"children":167},{},[168],{"type":51,"value":169},"Ask the user for any missing details:",{"type":45,"tag":171,"props":172,"children":173},"table",{},[174,198],{"type":45,"tag":175,"props":176,"children":177},"thead",{},[178],{"type":45,"tag":179,"props":180,"children":181},"tr",{},[182,188,193],{"type":45,"tag":183,"props":184,"children":185},"th",{},[186],{"type":51,"value":187},"Detail",{"type":45,"tag":183,"props":189,"children":190},{},[191],{"type":51,"value":192},"Required",{"type":45,"tag":183,"props":194,"children":195},{},[196],{"type":51,"value":197},"Example",{"type":45,"tag":199,"props":200,"children":201},"tbody",{},[202,232,262,312,333,350,368,402],{"type":45,"tag":179,"props":203,"children":204},{},[205,211,216],{"type":45,"tag":206,"props":207,"children":208},"td",{},[209],{"type":51,"value":210},"Org slug",{"type":45,"tag":206,"props":212,"children":213},{},[214],{"type":51,"value":215},"Yes",{"type":45,"tag":206,"props":217,"children":218},{},[219,224,226],{"type":45,"tag":122,"props":220,"children":222},{"className":221},[],[223],{"type":51,"value":8},{"type":51,"value":225},", ",{"type":45,"tag":122,"props":227,"children":229},{"className":228},[],[230],{"type":51,"value":231},"my-org",{"type":45,"tag":179,"props":233,"children":234},{},[235,240,244],{"type":45,"tag":206,"props":236,"children":237},{},[238],{"type":51,"value":239},"Auth token",{"type":45,"tag":206,"props":241,"children":242},{},[243],{"type":51,"value":215},{"type":45,"tag":206,"props":245,"children":246},{},[247,253,255,260],{"type":45,"tag":122,"props":248,"children":250},{"className":249},[],[251],{"type":51,"value":252},"sntryu_...",{"type":51,"value":254}," (needs ",{"type":45,"tag":122,"props":256,"children":258},{"className":257},[],[259],{"type":51,"value":140},{"type":51,"value":261}," scope)",{"type":45,"tag":179,"props":263,"children":264},{},[265,270,282],{"type":45,"tag":206,"props":266,"children":267},{},[268],{"type":51,"value":269},"Region",{"type":45,"tag":206,"props":271,"children":272},{},[273,275,281],{"type":51,"value":274},"Yes (default: ",{"type":45,"tag":122,"props":276,"children":278},{"className":277},[],[279],{"type":51,"value":280},"us",{"type":51,"value":158},{"type":45,"tag":206,"props":283,"children":284},{},[285,290,292,298,299,305,306],{"type":45,"tag":122,"props":286,"children":288},{"className":287},[],[289],{"type":51,"value":280},{"type":51,"value":291}," → ",{"type":45,"tag":122,"props":293,"children":295},{"className":294},[],[296],{"type":51,"value":297},"us.sentry.io",{"type":51,"value":225},{"type":45,"tag":122,"props":300,"children":302},{"className":301},[],[303],{"type":51,"value":304},"de",{"type":51,"value":291},{"type":45,"tag":122,"props":307,"children":309},{"className":308},[],[310],{"type":51,"value":311},"de.sentry.io",{"type":45,"tag":179,"props":313,"children":314},{},[315,320,324],{"type":45,"tag":206,"props":316,"children":317},{},[318],{"type":51,"value":319},"Alert name",{"type":45,"tag":206,"props":321,"children":322},{},[323],{"type":51,"value":215},{"type":45,"tag":206,"props":325,"children":326},{},[327],{"type":45,"tag":122,"props":328,"children":330},{"className":329},[],[331],{"type":51,"value":332},"\"High Priority De-escalation Alert\"",{"type":45,"tag":179,"props":334,"children":335},{},[336,341,345],{"type":45,"tag":206,"props":337,"children":338},{},[339],{"type":51,"value":340},"Trigger events",{"type":45,"tag":206,"props":342,"children":343},{},[344],{"type":51,"value":215},{"type":45,"tag":206,"props":346,"children":347},{},[348],{"type":51,"value":349},"Which issue events fire the workflow",{"type":45,"tag":179,"props":351,"children":352},{},[353,358,363],{"type":45,"tag":206,"props":354,"children":355},{},[356],{"type":51,"value":357},"Conditions",{"type":45,"tag":206,"props":359,"children":360},{},[361],{"type":51,"value":362},"Optional",{"type":45,"tag":206,"props":364,"children":365},{},[366],{"type":51,"value":367},"Filter conditions before actions execute",{"type":45,"tag":179,"props":369,"children":370},{},[371,376,380],{"type":45,"tag":206,"props":372,"children":373},{},[374],{"type":51,"value":375},"Action type",{"type":45,"tag":206,"props":377,"children":378},{},[379],{"type":51,"value":215},{"type":45,"tag":206,"props":381,"children":382},{},[383,388,389,394,396],{"type":45,"tag":122,"props":384,"children":386},{"className":385},[],[387],{"type":51,"value":26},{"type":51,"value":225},{"type":45,"tag":122,"props":390,"children":392},{"className":391},[],[393],{"type":51,"value":22},{"type":51,"value":395},", or ",{"type":45,"tag":122,"props":397,"children":399},{"className":398},[],[400],{"type":51,"value":401},"pagerduty",{"type":45,"tag":179,"props":403,"children":404},{},[405,410,414],{"type":45,"tag":206,"props":406,"children":407},{},[408],{"type":51,"value":409},"Action target",{"type":45,"tag":206,"props":411,"children":412},{},[413],{"type":51,"value":215},{"type":45,"tag":206,"props":415,"children":416},{},[417],{"type":51,"value":418},"User email, team, channel, or service",{"type":45,"tag":78,"props":420,"children":422},{"id":421},"phase-2-look-up-ids",[423],{"type":51,"value":424},"Phase 2: Look Up IDs",{"type":45,"tag":54,"props":426,"children":427},{},[428],{"type":51,"value":429},"Use these API calls to resolve names to IDs as needed.",{"type":45,"tag":431,"props":432,"children":437},"pre",{"className":433,"code":434,"language":435,"meta":436,"style":436},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","API=\"https:\u002F\u002F{region}.sentry.io\u002Fapi\u002F0\u002Forganizations\u002F{org}\"\nAUTH=\"Authorization: Bearer {token}\"\n\n# Find user ID by email\ncurl -s \"$API\u002Fmembers\u002F\" -H \"$AUTH\" | python3 -c \"\nimport json,sys\nfor m in json.load(sys.stdin):\n  if m.get('email')=='USER_EMAIL' or m.get('user',{}).get('email')=='USER_EMAIL':\n    print(m['user']['id']); break\"\n\n# List teams\ncurl -s \"$API\u002Fteams\u002F\" -H \"$AUTH\" | python3 -c \"\nimport json,sys\nfor t in json.load(sys.stdin):\n  print(t['id'], t['slug'])\"\n\n# List integrations (for Slack\u002FPagerDuty)\ncurl -s \"$API\u002Fintegrations\u002F\" -H \"$AUTH\" | python3 -c \"\nimport json,sys\nfor i in json.load(sys.stdin):\n  print(i['id'], i['provider']['key'], i['name'])\"\n","bash","",[438],{"type":45,"tag":122,"props":439,"children":440},{"__ignoreMap":436},[441,475,500,510,520,591,600,609,618,631,639,648,709,717,726,739,747,756,817,824,833],{"type":45,"tag":442,"props":443,"children":446},"span",{"class":444,"line":445},"line",1,[447,453,459,464,470],{"type":45,"tag":442,"props":448,"children":450},{"style":449},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[451],{"type":51,"value":452},"API",{"type":45,"tag":442,"props":454,"children":456},{"style":455},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[457],{"type":51,"value":458},"=",{"type":45,"tag":442,"props":460,"children":461},{"style":455},[462],{"type":51,"value":463},"\"",{"type":45,"tag":442,"props":465,"children":467},{"style":466},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[468],{"type":51,"value":469},"https:\u002F\u002F{region}.sentry.io\u002Fapi\u002F0\u002Forganizations\u002F{org}",{"type":45,"tag":442,"props":471,"children":472},{"style":455},[473],{"type":51,"value":474},"\"\n",{"type":45,"tag":442,"props":476,"children":477},{"class":444,"line":31},[478,483,487,491,496],{"type":45,"tag":442,"props":479,"children":480},{"style":449},[481],{"type":51,"value":482},"AUTH",{"type":45,"tag":442,"props":484,"children":485},{"style":455},[486],{"type":51,"value":458},{"type":45,"tag":442,"props":488,"children":489},{"style":455},[490],{"type":51,"value":463},{"type":45,"tag":442,"props":492,"children":493},{"style":466},[494],{"type":51,"value":495},"Authorization: Bearer {token}",{"type":45,"tag":442,"props":497,"children":498},{"style":455},[499],{"type":51,"value":474},{"type":45,"tag":442,"props":501,"children":503},{"class":444,"line":502},3,[504],{"type":45,"tag":442,"props":505,"children":507},{"emptyLinePlaceholder":506},true,[508],{"type":51,"value":509},"\n",{"type":45,"tag":442,"props":511,"children":513},{"class":444,"line":512},4,[514],{"type":45,"tag":442,"props":515,"children":517},{"style":516},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[518],{"type":51,"value":519},"# Find user ID by email\n",{"type":45,"tag":442,"props":521,"children":523},{"class":444,"line":522},5,[524,529,534,539,544,549,553,558,562,567,571,576,581,586],{"type":45,"tag":442,"props":525,"children":527},{"style":526},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[528],{"type":51,"value":127},{"type":45,"tag":442,"props":530,"children":531},{"style":466},[532],{"type":51,"value":533}," -s",{"type":45,"tag":442,"props":535,"children":536},{"style":455},[537],{"type":51,"value":538}," \"",{"type":45,"tag":442,"props":540,"children":541},{"style":449},[542],{"type":51,"value":543},"$API",{"type":45,"tag":442,"props":545,"children":546},{"style":466},[547],{"type":51,"value":548},"\u002Fmembers\u002F",{"type":45,"tag":442,"props":550,"children":551},{"style":455},[552],{"type":51,"value":463},{"type":45,"tag":442,"props":554,"children":555},{"style":466},[556],{"type":51,"value":557}," -H",{"type":45,"tag":442,"props":559,"children":560},{"style":455},[561],{"type":51,"value":538},{"type":45,"tag":442,"props":563,"children":564},{"style":449},[565],{"type":51,"value":566},"$AUTH",{"type":45,"tag":442,"props":568,"children":569},{"style":455},[570],{"type":51,"value":463},{"type":45,"tag":442,"props":572,"children":573},{"style":455},[574],{"type":51,"value":575}," |",{"type":45,"tag":442,"props":577,"children":578},{"style":526},[579],{"type":51,"value":580}," python3",{"type":45,"tag":442,"props":582,"children":583},{"style":466},[584],{"type":51,"value":585}," -c",{"type":45,"tag":442,"props":587,"children":588},{"style":455},[589],{"type":51,"value":590}," \"\n",{"type":45,"tag":442,"props":592,"children":594},{"class":444,"line":593},6,[595],{"type":45,"tag":442,"props":596,"children":597},{"style":466},[598],{"type":51,"value":599},"import json,sys\n",{"type":45,"tag":442,"props":601,"children":603},{"class":444,"line":602},7,[604],{"type":45,"tag":442,"props":605,"children":606},{"style":466},[607],{"type":51,"value":608},"for m in json.load(sys.stdin):\n",{"type":45,"tag":442,"props":610,"children":612},{"class":444,"line":611},8,[613],{"type":45,"tag":442,"props":614,"children":615},{"style":466},[616],{"type":51,"value":617},"  if m.get('email')=='USER_EMAIL' or m.get('user',{}).get('email')=='USER_EMAIL':\n",{"type":45,"tag":442,"props":619,"children":621},{"class":444,"line":620},9,[622,627],{"type":45,"tag":442,"props":623,"children":624},{"style":466},[625],{"type":51,"value":626},"    print(m['user']['id']); break",{"type":45,"tag":442,"props":628,"children":629},{"style":455},[630],{"type":51,"value":474},{"type":45,"tag":442,"props":632,"children":634},{"class":444,"line":633},10,[635],{"type":45,"tag":442,"props":636,"children":637},{"emptyLinePlaceholder":506},[638],{"type":51,"value":509},{"type":45,"tag":442,"props":640,"children":642},{"class":444,"line":641},11,[643],{"type":45,"tag":442,"props":644,"children":645},{"style":516},[646],{"type":51,"value":647},"# List teams\n",{"type":45,"tag":442,"props":649,"children":651},{"class":444,"line":650},12,[652,656,660,664,668,673,677,681,685,689,693,697,701,705],{"type":45,"tag":442,"props":653,"children":654},{"style":526},[655],{"type":51,"value":127},{"type":45,"tag":442,"props":657,"children":658},{"style":466},[659],{"type":51,"value":533},{"type":45,"tag":442,"props":661,"children":662},{"style":455},[663],{"type":51,"value":538},{"type":45,"tag":442,"props":665,"children":666},{"style":449},[667],{"type":51,"value":543},{"type":45,"tag":442,"props":669,"children":670},{"style":466},[671],{"type":51,"value":672},"\u002Fteams\u002F",{"type":45,"tag":442,"props":674,"children":675},{"style":455},[676],{"type":51,"value":463},{"type":45,"tag":442,"props":678,"children":679},{"style":466},[680],{"type":51,"value":557},{"type":45,"tag":442,"props":682,"children":683},{"style":455},[684],{"type":51,"value":538},{"type":45,"tag":442,"props":686,"children":687},{"style":449},[688],{"type":51,"value":566},{"type":45,"tag":442,"props":690,"children":691},{"style":455},[692],{"type":51,"value":463},{"type":45,"tag":442,"props":694,"children":695},{"style":455},[696],{"type":51,"value":575},{"type":45,"tag":442,"props":698,"children":699},{"style":526},[700],{"type":51,"value":580},{"type":45,"tag":442,"props":702,"children":703},{"style":466},[704],{"type":51,"value":585},{"type":45,"tag":442,"props":706,"children":707},{"style":455},[708],{"type":51,"value":590},{"type":45,"tag":442,"props":710,"children":712},{"class":444,"line":711},13,[713],{"type":45,"tag":442,"props":714,"children":715},{"style":466},[716],{"type":51,"value":599},{"type":45,"tag":442,"props":718,"children":720},{"class":444,"line":719},14,[721],{"type":45,"tag":442,"props":722,"children":723},{"style":466},[724],{"type":51,"value":725},"for t in json.load(sys.stdin):\n",{"type":45,"tag":442,"props":727,"children":729},{"class":444,"line":728},15,[730,735],{"type":45,"tag":442,"props":731,"children":732},{"style":466},[733],{"type":51,"value":734},"  print(t['id'], t['slug'])",{"type":45,"tag":442,"props":736,"children":737},{"style":455},[738],{"type":51,"value":474},{"type":45,"tag":442,"props":740,"children":742},{"class":444,"line":741},16,[743],{"type":45,"tag":442,"props":744,"children":745},{"emptyLinePlaceholder":506},[746],{"type":51,"value":509},{"type":45,"tag":442,"props":748,"children":750},{"class":444,"line":749},17,[751],{"type":45,"tag":442,"props":752,"children":753},{"style":516},[754],{"type":51,"value":755},"# List integrations (for Slack\u002FPagerDuty)\n",{"type":45,"tag":442,"props":757,"children":759},{"class":444,"line":758},18,[760,764,768,772,776,781,785,789,793,797,801,805,809,813],{"type":45,"tag":442,"props":761,"children":762},{"style":526},[763],{"type":51,"value":127},{"type":45,"tag":442,"props":765,"children":766},{"style":466},[767],{"type":51,"value":533},{"type":45,"tag":442,"props":769,"children":770},{"style":455},[771],{"type":51,"value":538},{"type":45,"tag":442,"props":773,"children":774},{"style":449},[775],{"type":51,"value":543},{"type":45,"tag":442,"props":777,"children":778},{"style":466},[779],{"type":51,"value":780},"\u002Fintegrations\u002F",{"type":45,"tag":442,"props":782,"children":783},{"style":455},[784],{"type":51,"value":463},{"type":45,"tag":442,"props":786,"children":787},{"style":466},[788],{"type":51,"value":557},{"type":45,"tag":442,"props":790,"children":791},{"style":455},[792],{"type":51,"value":538},{"type":45,"tag":442,"props":794,"children":795},{"style":449},[796],{"type":51,"value":566},{"type":45,"tag":442,"props":798,"children":799},{"style":455},[800],{"type":51,"value":463},{"type":45,"tag":442,"props":802,"children":803},{"style":455},[804],{"type":51,"value":575},{"type":45,"tag":442,"props":806,"children":807},{"style":526},[808],{"type":51,"value":580},{"type":45,"tag":442,"props":810,"children":811},{"style":466},[812],{"type":51,"value":585},{"type":45,"tag":442,"props":814,"children":815},{"style":455},[816],{"type":51,"value":590},{"type":45,"tag":442,"props":818,"children":819},{"class":444,"line":27},[820],{"type":45,"tag":442,"props":821,"children":822},{"style":466},[823],{"type":51,"value":599},{"type":45,"tag":442,"props":825,"children":827},{"class":444,"line":826},20,[828],{"type":45,"tag":442,"props":829,"children":830},{"style":466},[831],{"type":51,"value":832},"for i in json.load(sys.stdin):\n",{"type":45,"tag":442,"props":834,"children":836},{"class":444,"line":835},21,[837,842],{"type":45,"tag":442,"props":838,"children":839},{"style":466},[840],{"type":51,"value":841},"  print(i['id'], i['provider']['key'], i['name'])",{"type":45,"tag":442,"props":843,"children":844},{"style":455},[845],{"type":51,"value":474},{"type":45,"tag":78,"props":847,"children":849},{"id":848},"phase-3-build-payload",[850],{"type":51,"value":851},"Phase 3: Build Payload",{"type":45,"tag":853,"props":854,"children":856},"h3",{"id":855},"trigger-events",[857],{"type":51,"value":858},"Trigger Events",{"type":45,"tag":54,"props":860,"children":861},{},[862,864,870],{"type":51,"value":863},"Pick which issue events fire the workflow. Use ",{"type":45,"tag":122,"props":865,"children":867},{"className":866},[],[868],{"type":51,"value":869},"logicType: \"any-short\"",{"type":51,"value":871}," (triggers must always use this).",{"type":45,"tag":171,"props":873,"children":874},{},[875,891],{"type":45,"tag":175,"props":876,"children":877},{},[878],{"type":45,"tag":179,"props":879,"children":880},{},[881,886],{"type":45,"tag":183,"props":882,"children":883},{},[884],{"type":51,"value":885},"Type",{"type":45,"tag":183,"props":887,"children":888},{},[889],{"type":51,"value":890},"Fires when",{"type":45,"tag":199,"props":892,"children":893},{},[894,911,928,945],{"type":45,"tag":179,"props":895,"children":896},{},[897,906],{"type":45,"tag":206,"props":898,"children":899},{},[900],{"type":45,"tag":122,"props":901,"children":903},{"className":902},[],[904],{"type":51,"value":905},"first_seen_event",{"type":45,"tag":206,"props":907,"children":908},{},[909],{"type":51,"value":910},"New issue created",{"type":45,"tag":179,"props":912,"children":913},{},[914,923],{"type":45,"tag":206,"props":915,"children":916},{},[917],{"type":45,"tag":122,"props":918,"children":920},{"className":919},[],[921],{"type":51,"value":922},"regression_event",{"type":45,"tag":206,"props":924,"children":925},{},[926],{"type":51,"value":927},"Resolved issue recurs",{"type":45,"tag":179,"props":929,"children":930},{},[931,940],{"type":45,"tag":206,"props":932,"children":933},{},[934],{"type":45,"tag":122,"props":935,"children":937},{"className":936},[],[938],{"type":51,"value":939},"reappeared_event",{"type":45,"tag":206,"props":941,"children":942},{},[943],{"type":51,"value":944},"Archived issue reappears",{"type":45,"tag":179,"props":946,"children":947},{},[948,957],{"type":45,"tag":206,"props":949,"children":950},{},[951],{"type":45,"tag":122,"props":952,"children":954},{"className":953},[],[955],{"type":51,"value":956},"issue_resolved_trigger",{"type":45,"tag":206,"props":958,"children":959},{},[960],{"type":51,"value":961},"Issue is resolved",{"type":45,"tag":853,"props":963,"children":965},{"id":964},"filter-conditions",[966],{"type":51,"value":967},"Filter Conditions",{"type":45,"tag":54,"props":969,"children":970},{},[971,973,979,980,986,987,993],{"type":51,"value":972},"Conditions that must pass before actions execute. Use ",{"type":45,"tag":122,"props":974,"children":976},{"className":975},[],[977],{"type":51,"value":978},"logicType: \"all\"",{"type":51,"value":225},{"type":45,"tag":122,"props":981,"children":983},{"className":982},[],[984],{"type":51,"value":985},"\"any-short\"",{"type":51,"value":395},{"type":45,"tag":122,"props":988,"children":990},{"className":989},[],[991],{"type":51,"value":992},"\"none\"",{"type":51,"value":994},".",{"type":45,"tag":54,"props":996,"children":997},{},[998,1011,1013,1019],{"type":45,"tag":63,"props":999,"children":1000},{},[1001,1003,1009],{"type":51,"value":1002},"The ",{"type":45,"tag":122,"props":1004,"children":1006},{"className":1005},[],[1007],{"type":51,"value":1008},"comparison",{"type":51,"value":1010}," field is polymorphic",{"type":51,"value":1012}," — its shape depends on the condition ",{"type":45,"tag":122,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":51,"value":1018},"type",{"type":51,"value":1020},":",{"type":45,"tag":171,"props":1022,"children":1023},{},[1024,1049],{"type":45,"tag":175,"props":1025,"children":1026},{},[1027],{"type":45,"tag":179,"props":1028,"children":1029},{},[1030,1034,1044],{"type":45,"tag":183,"props":1031,"children":1032},{},[1033],{"type":51,"value":885},{"type":45,"tag":183,"props":1035,"children":1036},{},[1037,1042],{"type":45,"tag":122,"props":1038,"children":1040},{"className":1039},[],[1041],{"type":51,"value":1008},{"type":51,"value":1043}," format",{"type":45,"tag":183,"props":1045,"children":1046},{},[1047],{"type":51,"value":1048},"Description",{"type":45,"tag":199,"props":1050,"children":1051},{},[1052,1080,1108,1134,1160,1186,1212,1238,1264,1290],{"type":45,"tag":179,"props":1053,"children":1054},{},[1055,1064,1075],{"type":45,"tag":206,"props":1056,"children":1057},{},[1058],{"type":45,"tag":122,"props":1059,"children":1061},{"className":1060},[],[1062],{"type":51,"value":1063},"issue_priority_greater_or_equal",{"type":45,"tag":206,"props":1065,"children":1066},{},[1067,1073],{"type":45,"tag":122,"props":1068,"children":1070},{"className":1069},[],[1071],{"type":51,"value":1072},"75",{"type":51,"value":1074}," (bare integer)",{"type":45,"tag":206,"props":1076,"children":1077},{},[1078],{"type":51,"value":1079},"Priority >= Low(25)\u002FMedium(50)\u002FHigh(75)",{"type":45,"tag":179,"props":1081,"children":1082},{},[1083,1092,1103],{"type":45,"tag":206,"props":1084,"children":1085},{},[1086],{"type":45,"tag":122,"props":1087,"children":1089},{"className":1088},[],[1090],{"type":51,"value":1091},"issue_priority_deescalating",{"type":45,"tag":206,"props":1093,"children":1094},{},[1095,1101],{"type":45,"tag":122,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":51,"value":1100},"true",{"type":51,"value":1102}," (bare boolean)",{"type":45,"tag":206,"props":1104,"children":1105},{},[1106],{"type":51,"value":1107},"Priority dropped below peak",{"type":45,"tag":179,"props":1109,"children":1110},{},[1111,1120,1129],{"type":45,"tag":206,"props":1112,"children":1113},{},[1114],{"type":45,"tag":122,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":51,"value":1119},"event_frequency_count",{"type":45,"tag":206,"props":1121,"children":1122},{},[1123],{"type":45,"tag":122,"props":1124,"children":1126},{"className":1125},[],[1127],{"type":51,"value":1128},"{\"value\": 100, \"interval\": \"1hr\"}",{"type":45,"tag":206,"props":1130,"children":1131},{},[1132],{"type":51,"value":1133},"Event count in time window",{"type":45,"tag":179,"props":1135,"children":1136},{},[1137,1146,1155],{"type":45,"tag":206,"props":1138,"children":1139},{},[1140],{"type":45,"tag":122,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":51,"value":1145},"event_unique_user_frequency_count",{"type":45,"tag":206,"props":1147,"children":1148},{},[1149],{"type":45,"tag":122,"props":1150,"children":1152},{"className":1151},[],[1153],{"type":51,"value":1154},"{\"value\": 50, \"interval\": \"1hr\"}",{"type":45,"tag":206,"props":1156,"children":1157},{},[1158],{"type":51,"value":1159},"Affected users in time window",{"type":45,"tag":179,"props":1161,"children":1162},{},[1163,1172,1181],{"type":45,"tag":206,"props":1164,"children":1165},{},[1166],{"type":45,"tag":122,"props":1167,"children":1169},{"className":1168},[],[1170],{"type":51,"value":1171},"tagged_event",{"type":45,"tag":206,"props":1173,"children":1174},{},[1175],{"type":45,"tag":122,"props":1176,"children":1178},{"className":1177},[],[1179],{"type":51,"value":1180},"{\"key\": \"level\", \"match\": \"eq\", \"value\": \"error\"}",{"type":45,"tag":206,"props":1182,"children":1183},{},[1184],{"type":51,"value":1185},"Event tag matches",{"type":45,"tag":179,"props":1187,"children":1188},{},[1189,1198,1207],{"type":45,"tag":206,"props":1190,"children":1191},{},[1192],{"type":45,"tag":122,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":51,"value":1197},"assigned_to",{"type":45,"tag":206,"props":1199,"children":1200},{},[1201],{"type":45,"tag":122,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":51,"value":1206},"{\"targetType\": \"Member\", \"targetIdentifier\": 123}",{"type":45,"tag":206,"props":1208,"children":1209},{},[1210],{"type":51,"value":1211},"Issue assigned to target",{"type":45,"tag":179,"props":1213,"children":1214},{},[1215,1224,1233],{"type":45,"tag":206,"props":1216,"children":1217},{},[1218],{"type":45,"tag":122,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":51,"value":1223},"level",{"type":45,"tag":206,"props":1225,"children":1226},{},[1227],{"type":45,"tag":122,"props":1228,"children":1230},{"className":1229},[],[1231],{"type":51,"value":1232},"{\"level\": 40, \"match\": \"gte\"}",{"type":45,"tag":206,"props":1234,"children":1235},{},[1236],{"type":51,"value":1237},"Event level (fatal=50, error=40, warning=30)",{"type":45,"tag":179,"props":1239,"children":1240},{},[1241,1250,1259],{"type":45,"tag":206,"props":1242,"children":1243},{},[1244],{"type":45,"tag":122,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":51,"value":1249},"age_comparison",{"type":45,"tag":206,"props":1251,"children":1252},{},[1253],{"type":45,"tag":122,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":51,"value":1258},"{\"time\": \"hour\", \"value\": 24, \"comparisonType\": \"older\"}",{"type":45,"tag":206,"props":1260,"children":1261},{},[1262],{"type":51,"value":1263},"Issue age",{"type":45,"tag":179,"props":1265,"children":1266},{},[1267,1276,1285],{"type":45,"tag":206,"props":1268,"children":1269},{},[1270],{"type":45,"tag":122,"props":1271,"children":1273},{"className":1272},[],[1274],{"type":51,"value":1275},"issue_category",{"type":45,"tag":206,"props":1277,"children":1278},{},[1279],{"type":45,"tag":122,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":51,"value":1284},"{\"value\": 1}",{"type":45,"tag":206,"props":1286,"children":1287},{},[1288],{"type":51,"value":1289},"Category (1=Error, 6=Feedback)",{"type":45,"tag":179,"props":1291,"children":1292},{},[1293,1302,1311],{"type":45,"tag":206,"props":1294,"children":1295},{},[1296],{"type":45,"tag":122,"props":1297,"children":1299},{"className":1298},[],[1300],{"type":51,"value":1301},"issue_occurrences",{"type":45,"tag":206,"props":1303,"children":1304},{},[1305],{"type":45,"tag":122,"props":1306,"children":1308},{"className":1307},[],[1309],{"type":51,"value":1310},"{\"value\": 100}",{"type":45,"tag":206,"props":1312,"children":1313},{},[1314],{"type":51,"value":1315},"Total occurrence count",{"type":45,"tag":54,"props":1317,"children":1318},{},[1319,1324,1326,1332,1333,1339,1340,1346,1347,1353,1354,1360,1361,1367,1368],{"type":45,"tag":63,"props":1320,"children":1321},{},[1322],{"type":51,"value":1323},"Interval options:",{"type":51,"value":1325}," ",{"type":45,"tag":122,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":51,"value":1331},"\"1min\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":51,"value":1338},"\"5min\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":51,"value":1345},"\"15min\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1348,"children":1350},{"className":1349},[],[1351],{"type":51,"value":1352},"\"1hr\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1355,"children":1357},{"className":1356},[],[1358],{"type":51,"value":1359},"\"1d\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":51,"value":1366},"\"1w\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":51,"value":1373},"\"30d\"",{"type":45,"tag":54,"props":1375,"children":1376},{},[1377,1382,1383,1389,1391,1397,1399,1405,1406,1412,1413,1419,1421,1427,1429,1435,1437,1443],{"type":45,"tag":63,"props":1378,"children":1379},{},[1380],{"type":51,"value":1381},"Tag match types:",{"type":51,"value":1325},{"type":45,"tag":122,"props":1384,"children":1386},{"className":1385},[],[1387],{"type":51,"value":1388},"\"co\"",{"type":51,"value":1390}," (contains), ",{"type":45,"tag":122,"props":1392,"children":1394},{"className":1393},[],[1395],{"type":51,"value":1396},"\"nc\"",{"type":51,"value":1398}," (not contains), ",{"type":45,"tag":122,"props":1400,"children":1402},{"className":1401},[],[1403],{"type":51,"value":1404},"\"eq\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1407,"children":1409},{"className":1408},[],[1410],{"type":51,"value":1411},"\"ne\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1414,"children":1416},{"className":1415},[],[1417],{"type":51,"value":1418},"\"sw\"",{"type":51,"value":1420}," (starts with), ",{"type":45,"tag":122,"props":1422,"children":1424},{"className":1423},[],[1425],{"type":51,"value":1426},"\"ew\"",{"type":51,"value":1428}," (ends with), ",{"type":45,"tag":122,"props":1430,"children":1432},{"className":1431},[],[1433],{"type":51,"value":1434},"\"is\"",{"type":51,"value":1436}," (set), ",{"type":45,"tag":122,"props":1438,"children":1440},{"className":1439},[],[1441],{"type":51,"value":1442},"\"ns\"",{"type":51,"value":1444}," (not set)",{"type":45,"tag":54,"props":1446,"children":1447},{},[1448,1450,1456,1458,1464],{"type":51,"value":1449},"Set ",{"type":45,"tag":122,"props":1451,"children":1453},{"className":1452},[],[1454],{"type":51,"value":1455},"conditionResult",{"type":51,"value":1457}," to ",{"type":45,"tag":122,"props":1459,"children":1461},{"className":1460},[],[1462],{"type":51,"value":1463},"false",{"type":51,"value":1465}," to invert (fire when condition is NOT met).",{"type":45,"tag":853,"props":1467,"children":1469},{"id":1468},"actions",[1470],{"type":51,"value":1471},"Actions",{"type":45,"tag":171,"props":1473,"children":1474},{},[1475,1490],{"type":45,"tag":175,"props":1476,"children":1477},{},[1478],{"type":45,"tag":179,"props":1479,"children":1480},{},[1481,1485],{"type":45,"tag":183,"props":1482,"children":1483},{},[1484],{"type":51,"value":885},{"type":45,"tag":183,"props":1486,"children":1487},{},[1488],{"type":51,"value":1489},"Key Config",{"type":45,"tag":199,"props":1491,"children":1492},{},[1493,1550,1590,1642,1677,1716,1763,1798],{"type":45,"tag":179,"props":1494,"children":1495},{},[1496,1504],{"type":45,"tag":206,"props":1497,"children":1498},{},[1499],{"type":45,"tag":122,"props":1500,"children":1502},{"className":1501},[],[1503],{"type":51,"value":26},{"type":45,"tag":206,"props":1505,"children":1506},{},[1507,1513,1515,1521,1523,1529,1530,1536,1537,1543,1544],{"type":45,"tag":122,"props":1508,"children":1510},{"className":1509},[],[1511],{"type":51,"value":1512},"config.targetType",{"type":51,"value":1514},": ",{"type":45,"tag":122,"props":1516,"children":1518},{"className":1517},[],[1519],{"type":51,"value":1520},"\"user\"",{"type":51,"value":1522}," \u002F ",{"type":45,"tag":122,"props":1524,"children":1526},{"className":1525},[],[1527],{"type":51,"value":1528},"\"team\"",{"type":51,"value":1522},{"type":45,"tag":122,"props":1531,"children":1533},{"className":1532},[],[1534],{"type":51,"value":1535},"\"issue_owners\"",{"type":51,"value":225},{"type":45,"tag":122,"props":1538,"children":1540},{"className":1539},[],[1541],{"type":51,"value":1542},"config.targetIdentifier",{"type":51,"value":1514},{"type":45,"tag":122,"props":1545,"children":1547},{"className":1546},[],[1548],{"type":51,"value":1549},"\u003Cid>",{"type":45,"tag":179,"props":1551,"children":1552},{},[1553,1561],{"type":45,"tag":206,"props":1554,"children":1555},{},[1556],{"type":45,"tag":122,"props":1557,"children":1559},{"className":1558},[],[1560],{"type":51,"value":22},{"type":45,"tag":206,"props":1562,"children":1563},{},[1564,1570,1571,1576,1577,1583,1584],{"type":45,"tag":122,"props":1565,"children":1567},{"className":1566},[],[1568],{"type":51,"value":1569},"integrationId",{"type":51,"value":1514},{"type":45,"tag":122,"props":1572,"children":1574},{"className":1573},[],[1575],{"type":51,"value":1549},{"type":51,"value":225},{"type":45,"tag":122,"props":1578,"children":1580},{"className":1579},[],[1581],{"type":51,"value":1582},"config.targetDisplay",{"type":51,"value":1514},{"type":45,"tag":122,"props":1585,"children":1587},{"className":1586},[],[1588],{"type":51,"value":1589},"\"#channel-name\"",{"type":45,"tag":179,"props":1591,"children":1592},{},[1593,1601],{"type":45,"tag":206,"props":1594,"children":1595},{},[1596],{"type":45,"tag":122,"props":1597,"children":1599},{"className":1598},[],[1600],{"type":51,"value":401},{"type":45,"tag":206,"props":1602,"children":1603},{},[1604,1609,1610,1615,1616,1621,1622,1628,1629,1635,1636],{"type":45,"tag":122,"props":1605,"children":1607},{"className":1606},[],[1608],{"type":51,"value":1569},{"type":51,"value":1514},{"type":45,"tag":122,"props":1611,"children":1613},{"className":1612},[],[1614],{"type":51,"value":1549},{"type":51,"value":225},{"type":45,"tag":122,"props":1617,"children":1619},{"className":1618},[],[1620],{"type":51,"value":1582},{"type":51,"value":1514},{"type":45,"tag":122,"props":1623,"children":1625},{"className":1624},[],[1626],{"type":51,"value":1627},"\u003Cservice_name>",{"type":51,"value":225},{"type":45,"tag":122,"props":1630,"children":1632},{"className":1631},[],[1633],{"type":51,"value":1634},"data.priority",{"type":51,"value":1514},{"type":45,"tag":122,"props":1637,"children":1639},{"className":1638},[],[1640],{"type":51,"value":1641},"\"critical\"",{"type":45,"tag":179,"props":1643,"children":1644},{},[1645,1654],{"type":45,"tag":206,"props":1646,"children":1647},{},[1648],{"type":45,"tag":122,"props":1649,"children":1651},{"className":1650},[],[1652],{"type":51,"value":1653},"discord",{"type":45,"tag":206,"props":1655,"children":1656},{},[1657,1662,1663,1668,1669,1675],{"type":45,"tag":122,"props":1658,"children":1660},{"className":1659},[],[1661],{"type":51,"value":1569},{"type":51,"value":1514},{"type":45,"tag":122,"props":1664,"children":1666},{"className":1665},[],[1667],{"type":51,"value":1549},{"type":51,"value":225},{"type":45,"tag":122,"props":1670,"children":1672},{"className":1671},[],[1673],{"type":51,"value":1674},"data.tags",{"type":51,"value":1676},": tag list",{"type":45,"tag":179,"props":1678,"children":1679},{},[1680,1689],{"type":45,"tag":206,"props":1681,"children":1682},{},[1683],{"type":45,"tag":122,"props":1684,"children":1686},{"className":1685},[],[1687],{"type":51,"value":1688},"msteams",{"type":45,"tag":206,"props":1690,"children":1691},{},[1692,1697,1698,1703,1704,1709,1710],{"type":45,"tag":122,"props":1693,"children":1695},{"className":1694},[],[1696],{"type":51,"value":1569},{"type":51,"value":1514},{"type":45,"tag":122,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":51,"value":1549},{"type":51,"value":225},{"type":45,"tag":122,"props":1705,"children":1707},{"className":1706},[],[1708],{"type":51,"value":1582},{"type":51,"value":1514},{"type":45,"tag":122,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":51,"value":1715},"\u003Cchannel>",{"type":45,"tag":179,"props":1717,"children":1718},{},[1719,1728],{"type":45,"tag":206,"props":1720,"children":1721},{},[1722],{"type":45,"tag":122,"props":1723,"children":1725},{"className":1724},[],[1726],{"type":51,"value":1727},"opsgenie",{"type":45,"tag":206,"props":1729,"children":1730},{},[1731,1736,1737,1742,1743,1748,1749,1755,1757],{"type":45,"tag":122,"props":1732,"children":1734},{"className":1733},[],[1735],{"type":51,"value":1569},{"type":51,"value":1514},{"type":45,"tag":122,"props":1738,"children":1740},{"className":1739},[],[1741],{"type":51,"value":1549},{"type":51,"value":225},{"type":45,"tag":122,"props":1744,"children":1746},{"className":1745},[],[1747],{"type":51,"value":1634},{"type":51,"value":1514},{"type":45,"tag":122,"props":1750,"children":1752},{"className":1751},[],[1753],{"type":51,"value":1754},"\"P1\"",{"type":51,"value":1756},"-",{"type":45,"tag":122,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":51,"value":1762},"\"P5\"",{"type":45,"tag":179,"props":1764,"children":1765},{},[1766,1775],{"type":45,"tag":206,"props":1767,"children":1768},{},[1769],{"type":45,"tag":122,"props":1770,"children":1772},{"className":1771},[],[1773],{"type":51,"value":1774},"jira",{"type":45,"tag":206,"props":1776,"children":1777},{},[1778,1783,1784,1789,1790,1796],{"type":45,"tag":122,"props":1779,"children":1781},{"className":1780},[],[1782],{"type":51,"value":1569},{"type":51,"value":1514},{"type":45,"tag":122,"props":1785,"children":1787},{"className":1786},[],[1788],{"type":51,"value":1549},{"type":51,"value":225},{"type":45,"tag":122,"props":1791,"children":1793},{"className":1792},[],[1794],{"type":51,"value":1795},"data",{"type":51,"value":1797},": project\u002Fissue config",{"type":45,"tag":179,"props":1799,"children":1800},{},[1801,1810],{"type":45,"tag":206,"props":1802,"children":1803},{},[1804],{"type":45,"tag":122,"props":1805,"children":1807},{"className":1806},[],[1808],{"type":51,"value":1809},"github",{"type":45,"tag":206,"props":1811,"children":1812},{},[1813,1818,1819,1824,1825,1830],{"type":45,"tag":122,"props":1814,"children":1816},{"className":1815},[],[1817],{"type":51,"value":1569},{"type":51,"value":1514},{"type":45,"tag":122,"props":1820,"children":1822},{"className":1821},[],[1823],{"type":51,"value":1549},{"type":51,"value":225},{"type":45,"tag":122,"props":1826,"children":1828},{"className":1827},[],[1829],{"type":51,"value":1795},{"type":51,"value":1831},": repo\u002Fissue config",{"type":45,"tag":853,"props":1833,"children":1835},{"id":1834},"full-payload-structure",[1836],{"type":51,"value":1837},"Full Payload Structure",{"type":45,"tag":431,"props":1839,"children":1843},{"className":1840,"code":1841,"language":1842,"meta":436,"style":436},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"\u003CAlert Name>\",\n  \"enabled\": true,\n  \"environment\": null,\n  \"config\": { \"frequency\": 30 },\n  \"triggers\": {\n    \"logicType\": \"any-short\",\n    \"conditions\": [\n      { \"type\": \"first_seen_event\", \"comparison\": true, \"conditionResult\": true }\n    ],\n    \"actions\": []\n  },\n  \"actionFilters\": [{\n    \"logicType\": \"all\",\n    \"conditions\": [\n      { \"type\": \"issue_priority_greater_or_equal\", \"comparison\": 75, \"conditionResult\": true },\n      { \"type\": \"event_frequency_count\", \"comparison\": {\"value\": 50, \"interval\": \"1hr\"}, \"conditionResult\": true }\n    ],\n    \"actions\": [{\n      \"type\": \"email\",\n      \"integrationId\": null,\n      \"data\": {},\n      \"config\": {\n        \"targetType\": \"user\",\n        \"targetIdentifier\": \"\u003Cuser_id>\",\n        \"targetDisplay\": null\n      },\n      \"status\": \"active\"\n    }]\n  }]\n}\n","json",[1844],{"type":45,"tag":122,"props":1845,"children":1846},{"__ignoreMap":436},[1847,1855,1895,1920,1945,1998,2023,2061,2086,2174,2182,2206,2214,2239,2275,2298,2386,2531,2538,2561,2597,2620,2645,2669,2708,2746,2772,2781,2815,2824,2833],{"type":45,"tag":442,"props":1848,"children":1849},{"class":444,"line":445},[1850],{"type":45,"tag":442,"props":1851,"children":1852},{"style":455},[1853],{"type":51,"value":1854},"{\n",{"type":45,"tag":442,"props":1856,"children":1857},{"class":444,"line":31},[1858,1863,1869,1873,1877,1881,1886,1890],{"type":45,"tag":442,"props":1859,"children":1860},{"style":455},[1861],{"type":51,"value":1862},"  \"",{"type":45,"tag":442,"props":1864,"children":1866},{"style":1865},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1867],{"type":51,"value":1868},"name",{"type":45,"tag":442,"props":1870,"children":1871},{"style":455},[1872],{"type":51,"value":463},{"type":45,"tag":442,"props":1874,"children":1875},{"style":455},[1876],{"type":51,"value":1020},{"type":45,"tag":442,"props":1878,"children":1879},{"style":455},[1880],{"type":51,"value":538},{"type":45,"tag":442,"props":1882,"children":1883},{"style":466},[1884],{"type":51,"value":1885},"\u003CAlert Name>",{"type":45,"tag":442,"props":1887,"children":1888},{"style":455},[1889],{"type":51,"value":463},{"type":45,"tag":442,"props":1891,"children":1892},{"style":455},[1893],{"type":51,"value":1894},",\n",{"type":45,"tag":442,"props":1896,"children":1897},{"class":444,"line":502},[1898,1902,1907,1911,1915],{"type":45,"tag":442,"props":1899,"children":1900},{"style":455},[1901],{"type":51,"value":1862},{"type":45,"tag":442,"props":1903,"children":1904},{"style":1865},[1905],{"type":51,"value":1906},"enabled",{"type":45,"tag":442,"props":1908,"children":1909},{"style":455},[1910],{"type":51,"value":463},{"type":45,"tag":442,"props":1912,"children":1913},{"style":455},[1914],{"type":51,"value":1020},{"type":45,"tag":442,"props":1916,"children":1917},{"style":455},[1918],{"type":51,"value":1919}," true,\n",{"type":45,"tag":442,"props":1921,"children":1922},{"class":444,"line":512},[1923,1927,1932,1936,1940],{"type":45,"tag":442,"props":1924,"children":1925},{"style":455},[1926],{"type":51,"value":1862},{"type":45,"tag":442,"props":1928,"children":1929},{"style":1865},[1930],{"type":51,"value":1931},"environment",{"type":45,"tag":442,"props":1933,"children":1934},{"style":455},[1935],{"type":51,"value":463},{"type":45,"tag":442,"props":1937,"children":1938},{"style":455},[1939],{"type":51,"value":1020},{"type":45,"tag":442,"props":1941,"children":1942},{"style":455},[1943],{"type":51,"value":1944}," null,\n",{"type":45,"tag":442,"props":1946,"children":1947},{"class":444,"line":522},[1948,1952,1957,1961,1965,1970,1974,1979,1983,1987,1993],{"type":45,"tag":442,"props":1949,"children":1950},{"style":455},[1951],{"type":51,"value":1862},{"type":45,"tag":442,"props":1953,"children":1954},{"style":1865},[1955],{"type":51,"value":1956},"config",{"type":45,"tag":442,"props":1958,"children":1959},{"style":455},[1960],{"type":51,"value":463},{"type":45,"tag":442,"props":1962,"children":1963},{"style":455},[1964],{"type":51,"value":1020},{"type":45,"tag":442,"props":1966,"children":1967},{"style":455},[1968],{"type":51,"value":1969}," {",{"type":45,"tag":442,"props":1971,"children":1972},{"style":455},[1973],{"type":51,"value":538},{"type":45,"tag":442,"props":1975,"children":1976},{"style":526},[1977],{"type":51,"value":1978},"frequency",{"type":45,"tag":442,"props":1980,"children":1981},{"style":455},[1982],{"type":51,"value":463},{"type":45,"tag":442,"props":1984,"children":1985},{"style":455},[1986],{"type":51,"value":1020},{"type":45,"tag":442,"props":1988,"children":1990},{"style":1989},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1991],{"type":51,"value":1992}," 30",{"type":45,"tag":442,"props":1994,"children":1995},{"style":455},[1996],{"type":51,"value":1997}," },\n",{"type":45,"tag":442,"props":1999,"children":2000},{"class":444,"line":593},[2001,2005,2010,2014,2018],{"type":45,"tag":442,"props":2002,"children":2003},{"style":455},[2004],{"type":51,"value":1862},{"type":45,"tag":442,"props":2006,"children":2007},{"style":1865},[2008],{"type":51,"value":2009},"triggers",{"type":45,"tag":442,"props":2011,"children":2012},{"style":455},[2013],{"type":51,"value":463},{"type":45,"tag":442,"props":2015,"children":2016},{"style":455},[2017],{"type":51,"value":1020},{"type":45,"tag":442,"props":2019,"children":2020},{"style":455},[2021],{"type":51,"value":2022}," {\n",{"type":45,"tag":442,"props":2024,"children":2025},{"class":444,"line":602},[2026,2031,2036,2040,2044,2048,2053,2057],{"type":45,"tag":442,"props":2027,"children":2028},{"style":455},[2029],{"type":51,"value":2030},"    \"",{"type":45,"tag":442,"props":2032,"children":2033},{"style":526},[2034],{"type":51,"value":2035},"logicType",{"type":45,"tag":442,"props":2037,"children":2038},{"style":455},[2039],{"type":51,"value":463},{"type":45,"tag":442,"props":2041,"children":2042},{"style":455},[2043],{"type":51,"value":1020},{"type":45,"tag":442,"props":2045,"children":2046},{"style":455},[2047],{"type":51,"value":538},{"type":45,"tag":442,"props":2049,"children":2050},{"style":466},[2051],{"type":51,"value":2052},"any-short",{"type":45,"tag":442,"props":2054,"children":2055},{"style":455},[2056],{"type":51,"value":463},{"type":45,"tag":442,"props":2058,"children":2059},{"style":455},[2060],{"type":51,"value":1894},{"type":45,"tag":442,"props":2062,"children":2063},{"class":444,"line":611},[2064,2068,2073,2077,2081],{"type":45,"tag":442,"props":2065,"children":2066},{"style":455},[2067],{"type":51,"value":2030},{"type":45,"tag":442,"props":2069,"children":2070},{"style":526},[2071],{"type":51,"value":2072},"conditions",{"type":45,"tag":442,"props":2074,"children":2075},{"style":455},[2076],{"type":51,"value":463},{"type":45,"tag":442,"props":2078,"children":2079},{"style":455},[2080],{"type":51,"value":1020},{"type":45,"tag":442,"props":2082,"children":2083},{"style":455},[2084],{"type":51,"value":2085}," [\n",{"type":45,"tag":442,"props":2087,"children":2088},{"class":444,"line":620},[2089,2094,2098,2102,2106,2110,2114,2118,2122,2127,2131,2135,2139,2143,2148,2152,2156,2160,2164,2169],{"type":45,"tag":442,"props":2090,"children":2091},{"style":455},[2092],{"type":51,"value":2093},"      {",{"type":45,"tag":442,"props":2095,"children":2096},{"style":455},[2097],{"type":51,"value":538},{"type":45,"tag":442,"props":2099,"children":2100},{"style":1989},[2101],{"type":51,"value":1018},{"type":45,"tag":442,"props":2103,"children":2104},{"style":455},[2105],{"type":51,"value":463},{"type":45,"tag":442,"props":2107,"children":2108},{"style":455},[2109],{"type":51,"value":1020},{"type":45,"tag":442,"props":2111,"children":2112},{"style":455},[2113],{"type":51,"value":538},{"type":45,"tag":442,"props":2115,"children":2116},{"style":466},[2117],{"type":51,"value":905},{"type":45,"tag":442,"props":2119,"children":2120},{"style":455},[2121],{"type":51,"value":463},{"type":45,"tag":442,"props":2123,"children":2124},{"style":455},[2125],{"type":51,"value":2126},",",{"type":45,"tag":442,"props":2128,"children":2129},{"style":455},[2130],{"type":51,"value":538},{"type":45,"tag":442,"props":2132,"children":2133},{"style":1989},[2134],{"type":51,"value":1008},{"type":45,"tag":442,"props":2136,"children":2137},{"style":455},[2138],{"type":51,"value":463},{"type":45,"tag":442,"props":2140,"children":2141},{"style":455},[2142],{"type":51,"value":1020},{"type":45,"tag":442,"props":2144,"children":2145},{"style":455},[2146],{"type":51,"value":2147}," true,",{"type":45,"tag":442,"props":2149,"children":2150},{"style":455},[2151],{"type":51,"value":538},{"type":45,"tag":442,"props":2153,"children":2154},{"style":1989},[2155],{"type":51,"value":1455},{"type":45,"tag":442,"props":2157,"children":2158},{"style":455},[2159],{"type":51,"value":463},{"type":45,"tag":442,"props":2161,"children":2162},{"style":455},[2163],{"type":51,"value":1020},{"type":45,"tag":442,"props":2165,"children":2166},{"style":455},[2167],{"type":51,"value":2168}," true",{"type":45,"tag":442,"props":2170,"children":2171},{"style":455},[2172],{"type":51,"value":2173}," }\n",{"type":45,"tag":442,"props":2175,"children":2176},{"class":444,"line":633},[2177],{"type":45,"tag":442,"props":2178,"children":2179},{"style":455},[2180],{"type":51,"value":2181},"    ],\n",{"type":45,"tag":442,"props":2183,"children":2184},{"class":444,"line":641},[2185,2189,2193,2197,2201],{"type":45,"tag":442,"props":2186,"children":2187},{"style":455},[2188],{"type":51,"value":2030},{"type":45,"tag":442,"props":2190,"children":2191},{"style":526},[2192],{"type":51,"value":1468},{"type":45,"tag":442,"props":2194,"children":2195},{"style":455},[2196],{"type":51,"value":463},{"type":45,"tag":442,"props":2198,"children":2199},{"style":455},[2200],{"type":51,"value":1020},{"type":45,"tag":442,"props":2202,"children":2203},{"style":455},[2204],{"type":51,"value":2205}," []\n",{"type":45,"tag":442,"props":2207,"children":2208},{"class":444,"line":650},[2209],{"type":45,"tag":442,"props":2210,"children":2211},{"style":455},[2212],{"type":51,"value":2213},"  },\n",{"type":45,"tag":442,"props":2215,"children":2216},{"class":444,"line":711},[2217,2221,2226,2230,2234],{"type":45,"tag":442,"props":2218,"children":2219},{"style":455},[2220],{"type":51,"value":1862},{"type":45,"tag":442,"props":2222,"children":2223},{"style":1865},[2224],{"type":51,"value":2225},"actionFilters",{"type":45,"tag":442,"props":2227,"children":2228},{"style":455},[2229],{"type":51,"value":463},{"type":45,"tag":442,"props":2231,"children":2232},{"style":455},[2233],{"type":51,"value":1020},{"type":45,"tag":442,"props":2235,"children":2236},{"style":455},[2237],{"type":51,"value":2238}," [{\n",{"type":45,"tag":442,"props":2240,"children":2241},{"class":444,"line":719},[2242,2246,2250,2254,2258,2262,2267,2271],{"type":45,"tag":442,"props":2243,"children":2244},{"style":455},[2245],{"type":51,"value":2030},{"type":45,"tag":442,"props":2247,"children":2248},{"style":526},[2249],{"type":51,"value":2035},{"type":45,"tag":442,"props":2251,"children":2252},{"style":455},[2253],{"type":51,"value":463},{"type":45,"tag":442,"props":2255,"children":2256},{"style":455},[2257],{"type":51,"value":1020},{"type":45,"tag":442,"props":2259,"children":2260},{"style":455},[2261],{"type":51,"value":538},{"type":45,"tag":442,"props":2263,"children":2264},{"style":466},[2265],{"type":51,"value":2266},"all",{"type":45,"tag":442,"props":2268,"children":2269},{"style":455},[2270],{"type":51,"value":463},{"type":45,"tag":442,"props":2272,"children":2273},{"style":455},[2274],{"type":51,"value":1894},{"type":45,"tag":442,"props":2276,"children":2277},{"class":444,"line":728},[2278,2282,2286,2290,2294],{"type":45,"tag":442,"props":2279,"children":2280},{"style":455},[2281],{"type":51,"value":2030},{"type":45,"tag":442,"props":2283,"children":2284},{"style":526},[2285],{"type":51,"value":2072},{"type":45,"tag":442,"props":2287,"children":2288},{"style":455},[2289],{"type":51,"value":463},{"type":45,"tag":442,"props":2291,"children":2292},{"style":455},[2293],{"type":51,"value":1020},{"type":45,"tag":442,"props":2295,"children":2296},{"style":455},[2297],{"type":51,"value":2085},{"type":45,"tag":442,"props":2299,"children":2300},{"class":444,"line":741},[2301,2305,2309,2313,2317,2321,2325,2329,2333,2337,2341,2345,2349,2353,2358,2362,2366,2370,2374,2378,2382],{"type":45,"tag":442,"props":2302,"children":2303},{"style":455},[2304],{"type":51,"value":2093},{"type":45,"tag":442,"props":2306,"children":2307},{"style":455},[2308],{"type":51,"value":538},{"type":45,"tag":442,"props":2310,"children":2311},{"style":1989},[2312],{"type":51,"value":1018},{"type":45,"tag":442,"props":2314,"children":2315},{"style":455},[2316],{"type":51,"value":463},{"type":45,"tag":442,"props":2318,"children":2319},{"style":455},[2320],{"type":51,"value":1020},{"type":45,"tag":442,"props":2322,"children":2323},{"style":455},[2324],{"type":51,"value":538},{"type":45,"tag":442,"props":2326,"children":2327},{"style":466},[2328],{"type":51,"value":1063},{"type":45,"tag":442,"props":2330,"children":2331},{"style":455},[2332],{"type":51,"value":463},{"type":45,"tag":442,"props":2334,"children":2335},{"style":455},[2336],{"type":51,"value":2126},{"type":45,"tag":442,"props":2338,"children":2339},{"style":455},[2340],{"type":51,"value":538},{"type":45,"tag":442,"props":2342,"children":2343},{"style":1989},[2344],{"type":51,"value":1008},{"type":45,"tag":442,"props":2346,"children":2347},{"style":455},[2348],{"type":51,"value":463},{"type":45,"tag":442,"props":2350,"children":2351},{"style":455},[2352],{"type":51,"value":1020},{"type":45,"tag":442,"props":2354,"children":2355},{"style":1989},[2356],{"type":51,"value":2357}," 75",{"type":45,"tag":442,"props":2359,"children":2360},{"style":455},[2361],{"type":51,"value":2126},{"type":45,"tag":442,"props":2363,"children":2364},{"style":455},[2365],{"type":51,"value":538},{"type":45,"tag":442,"props":2367,"children":2368},{"style":1989},[2369],{"type":51,"value":1455},{"type":45,"tag":442,"props":2371,"children":2372},{"style":455},[2373],{"type":51,"value":463},{"type":45,"tag":442,"props":2375,"children":2376},{"style":455},[2377],{"type":51,"value":1020},{"type":45,"tag":442,"props":2379,"children":2380},{"style":455},[2381],{"type":51,"value":2168},{"type":45,"tag":442,"props":2383,"children":2384},{"style":455},[2385],{"type":51,"value":1997},{"type":45,"tag":442,"props":2387,"children":2388},{"class":444,"line":749},[2389,2393,2397,2401,2405,2409,2413,2417,2421,2425,2429,2433,2437,2441,2445,2449,2455,2459,2463,2468,2472,2476,2481,2485,2489,2493,2498,2502,2507,2511,2515,2519,2523,2527],{"type":45,"tag":442,"props":2390,"children":2391},{"style":455},[2392],{"type":51,"value":2093},{"type":45,"tag":442,"props":2394,"children":2395},{"style":455},[2396],{"type":51,"value":538},{"type":45,"tag":442,"props":2398,"children":2399},{"style":1989},[2400],{"type":51,"value":1018},{"type":45,"tag":442,"props":2402,"children":2403},{"style":455},[2404],{"type":51,"value":463},{"type":45,"tag":442,"props":2406,"children":2407},{"style":455},[2408],{"type":51,"value":1020},{"type":45,"tag":442,"props":2410,"children":2411},{"style":455},[2412],{"type":51,"value":538},{"type":45,"tag":442,"props":2414,"children":2415},{"style":466},[2416],{"type":51,"value":1119},{"type":45,"tag":442,"props":2418,"children":2419},{"style":455},[2420],{"type":51,"value":463},{"type":45,"tag":442,"props":2422,"children":2423},{"style":455},[2424],{"type":51,"value":2126},{"type":45,"tag":442,"props":2426,"children":2427},{"style":455},[2428],{"type":51,"value":538},{"type":45,"tag":442,"props":2430,"children":2431},{"style":1989},[2432],{"type":51,"value":1008},{"type":45,"tag":442,"props":2434,"children":2435},{"style":455},[2436],{"type":51,"value":463},{"type":45,"tag":442,"props":2438,"children":2439},{"style":455},[2440],{"type":51,"value":1020},{"type":45,"tag":442,"props":2442,"children":2443},{"style":455},[2444],{"type":51,"value":1969},{"type":45,"tag":442,"props":2446,"children":2447},{"style":455},[2448],{"type":51,"value":463},{"type":45,"tag":442,"props":2450,"children":2452},{"style":2451},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2453],{"type":51,"value":2454},"value",{"type":45,"tag":442,"props":2456,"children":2457},{"style":455},[2458],{"type":51,"value":463},{"type":45,"tag":442,"props":2460,"children":2461},{"style":455},[2462],{"type":51,"value":1020},{"type":45,"tag":442,"props":2464,"children":2465},{"style":1989},[2466],{"type":51,"value":2467}," 50",{"type":45,"tag":442,"props":2469,"children":2470},{"style":455},[2471],{"type":51,"value":2126},{"type":45,"tag":442,"props":2473,"children":2474},{"style":455},[2475],{"type":51,"value":538},{"type":45,"tag":442,"props":2477,"children":2478},{"style":2451},[2479],{"type":51,"value":2480},"interval",{"type":45,"tag":442,"props":2482,"children":2483},{"style":455},[2484],{"type":51,"value":463},{"type":45,"tag":442,"props":2486,"children":2487},{"style":455},[2488],{"type":51,"value":1020},{"type":45,"tag":442,"props":2490,"children":2491},{"style":455},[2492],{"type":51,"value":538},{"type":45,"tag":442,"props":2494,"children":2495},{"style":466},[2496],{"type":51,"value":2497},"1hr",{"type":45,"tag":442,"props":2499,"children":2500},{"style":455},[2501],{"type":51,"value":463},{"type":45,"tag":442,"props":2503,"children":2504},{"style":455},[2505],{"type":51,"value":2506},"},",{"type":45,"tag":442,"props":2508,"children":2509},{"style":455},[2510],{"type":51,"value":538},{"type":45,"tag":442,"props":2512,"children":2513},{"style":1989},[2514],{"type":51,"value":1455},{"type":45,"tag":442,"props":2516,"children":2517},{"style":455},[2518],{"type":51,"value":463},{"type":45,"tag":442,"props":2520,"children":2521},{"style":455},[2522],{"type":51,"value":1020},{"type":45,"tag":442,"props":2524,"children":2525},{"style":455},[2526],{"type":51,"value":2168},{"type":45,"tag":442,"props":2528,"children":2529},{"style":455},[2530],{"type":51,"value":2173},{"type":45,"tag":442,"props":2532,"children":2533},{"class":444,"line":758},[2534],{"type":45,"tag":442,"props":2535,"children":2536},{"style":455},[2537],{"type":51,"value":2181},{"type":45,"tag":442,"props":2539,"children":2540},{"class":444,"line":27},[2541,2545,2549,2553,2557],{"type":45,"tag":442,"props":2542,"children":2543},{"style":455},[2544],{"type":51,"value":2030},{"type":45,"tag":442,"props":2546,"children":2547},{"style":526},[2548],{"type":51,"value":1468},{"type":45,"tag":442,"props":2550,"children":2551},{"style":455},[2552],{"type":51,"value":463},{"type":45,"tag":442,"props":2554,"children":2555},{"style":455},[2556],{"type":51,"value":1020},{"type":45,"tag":442,"props":2558,"children":2559},{"style":455},[2560],{"type":51,"value":2238},{"type":45,"tag":442,"props":2562,"children":2563},{"class":444,"line":826},[2564,2569,2573,2577,2581,2585,2589,2593],{"type":45,"tag":442,"props":2565,"children":2566},{"style":455},[2567],{"type":51,"value":2568},"      \"",{"type":45,"tag":442,"props":2570,"children":2571},{"style":1989},[2572],{"type":51,"value":1018},{"type":45,"tag":442,"props":2574,"children":2575},{"style":455},[2576],{"type":51,"value":463},{"type":45,"tag":442,"props":2578,"children":2579},{"style":455},[2580],{"type":51,"value":1020},{"type":45,"tag":442,"props":2582,"children":2583},{"style":455},[2584],{"type":51,"value":538},{"type":45,"tag":442,"props":2586,"children":2587},{"style":466},[2588],{"type":51,"value":26},{"type":45,"tag":442,"props":2590,"children":2591},{"style":455},[2592],{"type":51,"value":463},{"type":45,"tag":442,"props":2594,"children":2595},{"style":455},[2596],{"type":51,"value":1894},{"type":45,"tag":442,"props":2598,"children":2599},{"class":444,"line":835},[2600,2604,2608,2612,2616],{"type":45,"tag":442,"props":2601,"children":2602},{"style":455},[2603],{"type":51,"value":2568},{"type":45,"tag":442,"props":2605,"children":2606},{"style":1989},[2607],{"type":51,"value":1569},{"type":45,"tag":442,"props":2609,"children":2610},{"style":455},[2611],{"type":51,"value":463},{"type":45,"tag":442,"props":2613,"children":2614},{"style":455},[2615],{"type":51,"value":1020},{"type":45,"tag":442,"props":2617,"children":2618},{"style":455},[2619],{"type":51,"value":1944},{"type":45,"tag":442,"props":2621,"children":2623},{"class":444,"line":2622},22,[2624,2628,2632,2636,2640],{"type":45,"tag":442,"props":2625,"children":2626},{"style":455},[2627],{"type":51,"value":2568},{"type":45,"tag":442,"props":2629,"children":2630},{"style":1989},[2631],{"type":51,"value":1795},{"type":45,"tag":442,"props":2633,"children":2634},{"style":455},[2635],{"type":51,"value":463},{"type":45,"tag":442,"props":2637,"children":2638},{"style":455},[2639],{"type":51,"value":1020},{"type":45,"tag":442,"props":2641,"children":2642},{"style":455},[2643],{"type":51,"value":2644}," {},\n",{"type":45,"tag":442,"props":2646,"children":2648},{"class":444,"line":2647},23,[2649,2653,2657,2661,2665],{"type":45,"tag":442,"props":2650,"children":2651},{"style":455},[2652],{"type":51,"value":2568},{"type":45,"tag":442,"props":2654,"children":2655},{"style":1989},[2656],{"type":51,"value":1956},{"type":45,"tag":442,"props":2658,"children":2659},{"style":455},[2660],{"type":51,"value":463},{"type":45,"tag":442,"props":2662,"children":2663},{"style":455},[2664],{"type":51,"value":1020},{"type":45,"tag":442,"props":2666,"children":2667},{"style":455},[2668],{"type":51,"value":2022},{"type":45,"tag":442,"props":2670,"children":2672},{"class":444,"line":2671},24,[2673,2678,2683,2687,2691,2695,2700,2704],{"type":45,"tag":442,"props":2674,"children":2675},{"style":455},[2676],{"type":51,"value":2677},"        \"",{"type":45,"tag":442,"props":2679,"children":2680},{"style":2451},[2681],{"type":51,"value":2682},"targetType",{"type":45,"tag":442,"props":2684,"children":2685},{"style":455},[2686],{"type":51,"value":463},{"type":45,"tag":442,"props":2688,"children":2689},{"style":455},[2690],{"type":51,"value":1020},{"type":45,"tag":442,"props":2692,"children":2693},{"style":455},[2694],{"type":51,"value":538},{"type":45,"tag":442,"props":2696,"children":2697},{"style":466},[2698],{"type":51,"value":2699},"user",{"type":45,"tag":442,"props":2701,"children":2702},{"style":455},[2703],{"type":51,"value":463},{"type":45,"tag":442,"props":2705,"children":2706},{"style":455},[2707],{"type":51,"value":1894},{"type":45,"tag":442,"props":2709,"children":2711},{"class":444,"line":2710},25,[2712,2716,2721,2725,2729,2733,2738,2742],{"type":45,"tag":442,"props":2713,"children":2714},{"style":455},[2715],{"type":51,"value":2677},{"type":45,"tag":442,"props":2717,"children":2718},{"style":2451},[2719],{"type":51,"value":2720},"targetIdentifier",{"type":45,"tag":442,"props":2722,"children":2723},{"style":455},[2724],{"type":51,"value":463},{"type":45,"tag":442,"props":2726,"children":2727},{"style":455},[2728],{"type":51,"value":1020},{"type":45,"tag":442,"props":2730,"children":2731},{"style":455},[2732],{"type":51,"value":538},{"type":45,"tag":442,"props":2734,"children":2735},{"style":466},[2736],{"type":51,"value":2737},"\u003Cuser_id>",{"type":45,"tag":442,"props":2739,"children":2740},{"style":455},[2741],{"type":51,"value":463},{"type":45,"tag":442,"props":2743,"children":2744},{"style":455},[2745],{"type":51,"value":1894},{"type":45,"tag":442,"props":2747,"children":2749},{"class":444,"line":2748},26,[2750,2754,2759,2763,2767],{"type":45,"tag":442,"props":2751,"children":2752},{"style":455},[2753],{"type":51,"value":2677},{"type":45,"tag":442,"props":2755,"children":2756},{"style":2451},[2757],{"type":51,"value":2758},"targetDisplay",{"type":45,"tag":442,"props":2760,"children":2761},{"style":455},[2762],{"type":51,"value":463},{"type":45,"tag":442,"props":2764,"children":2765},{"style":455},[2766],{"type":51,"value":1020},{"type":45,"tag":442,"props":2768,"children":2769},{"style":455},[2770],{"type":51,"value":2771}," null\n",{"type":45,"tag":442,"props":2773,"children":2775},{"class":444,"line":2774},27,[2776],{"type":45,"tag":442,"props":2777,"children":2778},{"style":455},[2779],{"type":51,"value":2780},"      },\n",{"type":45,"tag":442,"props":2782,"children":2784},{"class":444,"line":2783},28,[2785,2789,2794,2798,2802,2806,2811],{"type":45,"tag":442,"props":2786,"children":2787},{"style":455},[2788],{"type":51,"value":2568},{"type":45,"tag":442,"props":2790,"children":2791},{"style":1989},[2792],{"type":51,"value":2793},"status",{"type":45,"tag":442,"props":2795,"children":2796},{"style":455},[2797],{"type":51,"value":463},{"type":45,"tag":442,"props":2799,"children":2800},{"style":455},[2801],{"type":51,"value":1020},{"type":45,"tag":442,"props":2803,"children":2804},{"style":455},[2805],{"type":51,"value":538},{"type":45,"tag":442,"props":2807,"children":2808},{"style":466},[2809],{"type":51,"value":2810},"active",{"type":45,"tag":442,"props":2812,"children":2813},{"style":455},[2814],{"type":51,"value":474},{"type":45,"tag":442,"props":2816,"children":2818},{"class":444,"line":2817},29,[2819],{"type":45,"tag":442,"props":2820,"children":2821},{"style":455},[2822],{"type":51,"value":2823},"    }]\n",{"type":45,"tag":442,"props":2825,"children":2827},{"class":444,"line":2826},30,[2828],{"type":45,"tag":442,"props":2829,"children":2830},{"style":455},[2831],{"type":51,"value":2832},"  }]\n",{"type":45,"tag":442,"props":2834,"children":2836},{"class":444,"line":2835},31,[2837],{"type":45,"tag":442,"props":2838,"children":2839},{"style":455},[2840],{"type":51,"value":2841},"}\n",{"type":45,"tag":54,"props":2843,"children":2844},{},[2845,2850,2852,2858,2859,2865,2866,2872,2873,2879,2880,2886,2887,2893,2894,2900,2901,2907],{"type":45,"tag":122,"props":2846,"children":2848},{"className":2847},[],[2849],{"type":51,"value":1978},{"type":51,"value":2851},": minutes between repeated notifications. Allowed values: ",{"type":45,"tag":122,"props":2853,"children":2855},{"className":2854},[],[2856],{"type":51,"value":2857},"0",{"type":51,"value":225},{"type":45,"tag":122,"props":2860,"children":2862},{"className":2861},[],[2863],{"type":51,"value":2864},"5",{"type":51,"value":225},{"type":45,"tag":122,"props":2867,"children":2869},{"className":2868},[],[2870],{"type":51,"value":2871},"10",{"type":51,"value":225},{"type":45,"tag":122,"props":2874,"children":2876},{"className":2875},[],[2877],{"type":51,"value":2878},"30",{"type":51,"value":225},{"type":45,"tag":122,"props":2881,"children":2883},{"className":2882},[],[2884],{"type":51,"value":2885},"60",{"type":51,"value":225},{"type":45,"tag":122,"props":2888,"children":2890},{"className":2889},[],[2891],{"type":51,"value":2892},"180",{"type":51,"value":225},{"type":45,"tag":122,"props":2895,"children":2897},{"className":2896},[],[2898],{"type":51,"value":2899},"720",{"type":51,"value":225},{"type":45,"tag":122,"props":2902,"children":2904},{"className":2903},[],[2905],{"type":51,"value":2906},"1440",{"type":51,"value":994},{"type":45,"tag":54,"props":2909,"children":2910},{},[2911,2916,2917,2923,2925,2931,2933,2939],{"type":45,"tag":63,"props":2912,"children":2913},{},[2914],{"type":51,"value":2915},"Structure note:",{"type":51,"value":1325},{"type":45,"tag":122,"props":2918,"children":2920},{"className":2919},[],[2921],{"type":51,"value":2922},"triggers.actions",{"type":51,"value":2924}," is always ",{"type":45,"tag":122,"props":2926,"children":2928},{"className":2927},[],[2929],{"type":51,"value":2930},"[]",{"type":51,"value":2932}," — actions live inside ",{"type":45,"tag":122,"props":2934,"children":2936},{"className":2935},[],[2937],{"type":51,"value":2938},"actionFilters[].actions",{"type":51,"value":994},{"type":45,"tag":78,"props":2941,"children":2943},{"id":2942},"phase-4-create-the-alert",[2944],{"type":51,"value":2945},"Phase 4: Create the Alert",{"type":45,"tag":431,"props":2947,"children":2949},{"className":433,"code":2948,"language":435,"meta":436,"style":436},"curl -s -w \"\\n%{http_code}\" -X POST \\\n  \"https:\u002F\u002F{region}.sentry.io\u002Fapi\u002F0\u002Forganizations\u002F{org}\u002Fworkflows\u002F\" \\\n  -H \"Authorization: Bearer {token}\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{payload}'\n",[2950],{"type":45,"tag":122,"props":2951,"children":2952},{"__ignoreMap":436},[2953,2997,3017,3041,3065],{"type":45,"tag":442,"props":2954,"children":2955},{"class":444,"line":445},[2956,2960,2964,2969,2973,2978,2982,2987,2992],{"type":45,"tag":442,"props":2957,"children":2958},{"style":526},[2959],{"type":51,"value":127},{"type":45,"tag":442,"props":2961,"children":2962},{"style":466},[2963],{"type":51,"value":533},{"type":45,"tag":442,"props":2965,"children":2966},{"style":466},[2967],{"type":51,"value":2968}," -w",{"type":45,"tag":442,"props":2970,"children":2971},{"style":455},[2972],{"type":51,"value":538},{"type":45,"tag":442,"props":2974,"children":2975},{"style":466},[2976],{"type":51,"value":2977},"\\n%{http_code}",{"type":45,"tag":442,"props":2979,"children":2980},{"style":455},[2981],{"type":51,"value":463},{"type":45,"tag":442,"props":2983,"children":2984},{"style":466},[2985],{"type":51,"value":2986}," -X",{"type":45,"tag":442,"props":2988,"children":2989},{"style":466},[2990],{"type":51,"value":2991}," POST",{"type":45,"tag":442,"props":2993,"children":2994},{"style":449},[2995],{"type":51,"value":2996}," \\\n",{"type":45,"tag":442,"props":2998,"children":2999},{"class":444,"line":31},[3000,3004,3009,3013],{"type":45,"tag":442,"props":3001,"children":3002},{"style":455},[3003],{"type":51,"value":1862},{"type":45,"tag":442,"props":3005,"children":3006},{"style":466},[3007],{"type":51,"value":3008},"https:\u002F\u002F{region}.sentry.io\u002Fapi\u002F0\u002Forganizations\u002F{org}\u002Fworkflows\u002F",{"type":45,"tag":442,"props":3010,"children":3011},{"style":455},[3012],{"type":51,"value":463},{"type":45,"tag":442,"props":3014,"children":3015},{"style":449},[3016],{"type":51,"value":2996},{"type":45,"tag":442,"props":3018,"children":3019},{"class":444,"line":502},[3020,3025,3029,3033,3037],{"type":45,"tag":442,"props":3021,"children":3022},{"style":466},[3023],{"type":51,"value":3024},"  -H",{"type":45,"tag":442,"props":3026,"children":3027},{"style":455},[3028],{"type":51,"value":538},{"type":45,"tag":442,"props":3030,"children":3031},{"style":466},[3032],{"type":51,"value":495},{"type":45,"tag":442,"props":3034,"children":3035},{"style":455},[3036],{"type":51,"value":463},{"type":45,"tag":442,"props":3038,"children":3039},{"style":449},[3040],{"type":51,"value":2996},{"type":45,"tag":442,"props":3042,"children":3043},{"class":444,"line":512},[3044,3048,3052,3057,3061],{"type":45,"tag":442,"props":3045,"children":3046},{"style":466},[3047],{"type":51,"value":3024},{"type":45,"tag":442,"props":3049,"children":3050},{"style":455},[3051],{"type":51,"value":538},{"type":45,"tag":442,"props":3053,"children":3054},{"style":466},[3055],{"type":51,"value":3056},"Content-Type: application\u002Fjson",{"type":45,"tag":442,"props":3058,"children":3059},{"style":455},[3060],{"type":51,"value":463},{"type":45,"tag":442,"props":3062,"children":3063},{"style":449},[3064],{"type":51,"value":2996},{"type":45,"tag":442,"props":3066,"children":3067},{"class":444,"line":522},[3068,3073,3078,3083],{"type":45,"tag":442,"props":3069,"children":3070},{"style":466},[3071],{"type":51,"value":3072},"  -d",{"type":45,"tag":442,"props":3074,"children":3075},{"style":455},[3076],{"type":51,"value":3077}," '",{"type":45,"tag":442,"props":3079,"children":3080},{"style":466},[3081],{"type":51,"value":3082},"{payload}",{"type":45,"tag":442,"props":3084,"children":3085},{"style":455},[3086],{"type":51,"value":3087},"'\n",{"type":45,"tag":54,"props":3089,"children":3090},{},[3091,3093,3099,3101,3107],{"type":51,"value":3092},"Expect HTTP ",{"type":45,"tag":122,"props":3094,"children":3096},{"className":3095},[],[3097],{"type":51,"value":3098},"201",{"type":51,"value":3100},". The response contains the workflow ",{"type":45,"tag":122,"props":3102,"children":3104},{"className":3103},[],[3105],{"type":51,"value":3106},"id",{"type":51,"value":994},{"type":45,"tag":78,"props":3109,"children":3111},{"id":3110},"phase-5-verify",[3112],{"type":51,"value":3113},"Phase 5: Verify",{"type":45,"tag":54,"props":3115,"children":3116},{},[3117],{"type":51,"value":3118},"Confirm the alert was created and provide the UI link:",{"type":45,"tag":431,"props":3120,"children":3124},{"className":3121,"code":3123,"language":51},[3122],"language-text","https:\u002F\u002F{org_slug}.sentry.io\u002Fmonitors\u002Falerts\u002F{workflow_id}\u002F\n",[3125],{"type":45,"tag":122,"props":3126,"children":3127},{"__ignoreMap":436},[3128],{"type":51,"value":3123},{"type":45,"tag":54,"props":3130,"children":3131},{},[3132,3134,3140],{"type":51,"value":3133},"If the org lacks the ",{"type":45,"tag":122,"props":3135,"children":3137},{"className":3136},[],[3138],{"type":51,"value":3139},"workflow-engine-ui",{"type":51,"value":3141}," feature flag, the alert appears at:",{"type":45,"tag":431,"props":3143,"children":3146},{"className":3144,"code":3145,"language":51},[3122],"https:\u002F\u002F{org_slug}.sentry.io\u002Falerts\u002Frules\u002F\n",[3147],{"type":45,"tag":122,"props":3148,"children":3149},{"__ignoreMap":436},[3150],{"type":51,"value":3145},{"type":45,"tag":78,"props":3152,"children":3154},{"id":3153},"managing-alerts",[3155],{"type":51,"value":3156},"Managing Alerts",{"type":45,"tag":431,"props":3158,"children":3160},{"className":433,"code":3159,"language":435,"meta":436,"style":436},"# List all workflows\ncurl -s \"$API\u002Fworkflows\u002F\" -H \"$AUTH\"\n\n# Get one workflow\ncurl -s \"$API\u002Fworkflows\u002F{id}\u002F\" -H \"$AUTH\"\n\n# Update a workflow\ncurl -s -X PUT \"$API\u002Fworkflows\u002F{id}\u002F\" -H \"$AUTH\" -H \"Content-Type: application\u002Fjson\" -d '{payload}'\n\n# Delete a workflow\ncurl -s -X DELETE \"$API\u002Fworkflows\u002F{id}\u002F\" -H \"$AUTH\"\n# Expect 204\n",[3161],{"type":45,"tag":122,"props":3162,"children":3163},{"__ignoreMap":436},[3164,3172,3216,3223,3231,3275,3282,3290,3375,3382,3390,3442],{"type":45,"tag":442,"props":3165,"children":3166},{"class":444,"line":445},[3167],{"type":45,"tag":442,"props":3168,"children":3169},{"style":516},[3170],{"type":51,"value":3171},"# List all workflows\n",{"type":45,"tag":442,"props":3173,"children":3174},{"class":444,"line":31},[3175,3179,3183,3187,3191,3196,3200,3204,3208,3212],{"type":45,"tag":442,"props":3176,"children":3177},{"style":526},[3178],{"type":51,"value":127},{"type":45,"tag":442,"props":3180,"children":3181},{"style":466},[3182],{"type":51,"value":533},{"type":45,"tag":442,"props":3184,"children":3185},{"style":455},[3186],{"type":51,"value":538},{"type":45,"tag":442,"props":3188,"children":3189},{"style":449},[3190],{"type":51,"value":543},{"type":45,"tag":442,"props":3192,"children":3193},{"style":466},[3194],{"type":51,"value":3195},"\u002Fworkflows\u002F",{"type":45,"tag":442,"props":3197,"children":3198},{"style":455},[3199],{"type":51,"value":463},{"type":45,"tag":442,"props":3201,"children":3202},{"style":466},[3203],{"type":51,"value":557},{"type":45,"tag":442,"props":3205,"children":3206},{"style":455},[3207],{"type":51,"value":538},{"type":45,"tag":442,"props":3209,"children":3210},{"style":449},[3211],{"type":51,"value":566},{"type":45,"tag":442,"props":3213,"children":3214},{"style":455},[3215],{"type":51,"value":474},{"type":45,"tag":442,"props":3217,"children":3218},{"class":444,"line":502},[3219],{"type":45,"tag":442,"props":3220,"children":3221},{"emptyLinePlaceholder":506},[3222],{"type":51,"value":509},{"type":45,"tag":442,"props":3224,"children":3225},{"class":444,"line":512},[3226],{"type":45,"tag":442,"props":3227,"children":3228},{"style":516},[3229],{"type":51,"value":3230},"# Get one workflow\n",{"type":45,"tag":442,"props":3232,"children":3233},{"class":444,"line":522},[3234,3238,3242,3246,3250,3255,3259,3263,3267,3271],{"type":45,"tag":442,"props":3235,"children":3236},{"style":526},[3237],{"type":51,"value":127},{"type":45,"tag":442,"props":3239,"children":3240},{"style":466},[3241],{"type":51,"value":533},{"type":45,"tag":442,"props":3243,"children":3244},{"style":455},[3245],{"type":51,"value":538},{"type":45,"tag":442,"props":3247,"children":3248},{"style":449},[3249],{"type":51,"value":543},{"type":45,"tag":442,"props":3251,"children":3252},{"style":466},[3253],{"type":51,"value":3254},"\u002Fworkflows\u002F{id}\u002F",{"type":45,"tag":442,"props":3256,"children":3257},{"style":455},[3258],{"type":51,"value":463},{"type":45,"tag":442,"props":3260,"children":3261},{"style":466},[3262],{"type":51,"value":557},{"type":45,"tag":442,"props":3264,"children":3265},{"style":455},[3266],{"type":51,"value":538},{"type":45,"tag":442,"props":3268,"children":3269},{"style":449},[3270],{"type":51,"value":566},{"type":45,"tag":442,"props":3272,"children":3273},{"style":455},[3274],{"type":51,"value":474},{"type":45,"tag":442,"props":3276,"children":3277},{"class":444,"line":593},[3278],{"type":45,"tag":442,"props":3279,"children":3280},{"emptyLinePlaceholder":506},[3281],{"type":51,"value":509},{"type":45,"tag":442,"props":3283,"children":3284},{"class":444,"line":602},[3285],{"type":45,"tag":442,"props":3286,"children":3287},{"style":516},[3288],{"type":51,"value":3289},"# Update a workflow\n",{"type":45,"tag":442,"props":3291,"children":3292},{"class":444,"line":611},[3293,3297,3301,3305,3310,3314,3318,3322,3326,3330,3334,3338,3342,3346,3350,3354,3358,3363,3367,3371],{"type":45,"tag":442,"props":3294,"children":3295},{"style":526},[3296],{"type":51,"value":127},{"type":45,"tag":442,"props":3298,"children":3299},{"style":466},[3300],{"type":51,"value":533},{"type":45,"tag":442,"props":3302,"children":3303},{"style":466},[3304],{"type":51,"value":2986},{"type":45,"tag":442,"props":3306,"children":3307},{"style":466},[3308],{"type":51,"value":3309}," PUT",{"type":45,"tag":442,"props":3311,"children":3312},{"style":455},[3313],{"type":51,"value":538},{"type":45,"tag":442,"props":3315,"children":3316},{"style":449},[3317],{"type":51,"value":543},{"type":45,"tag":442,"props":3319,"children":3320},{"style":466},[3321],{"type":51,"value":3254},{"type":45,"tag":442,"props":3323,"children":3324},{"style":455},[3325],{"type":51,"value":463},{"type":45,"tag":442,"props":3327,"children":3328},{"style":466},[3329],{"type":51,"value":557},{"type":45,"tag":442,"props":3331,"children":3332},{"style":455},[3333],{"type":51,"value":538},{"type":45,"tag":442,"props":3335,"children":3336},{"style":449},[3337],{"type":51,"value":566},{"type":45,"tag":442,"props":3339,"children":3340},{"style":455},[3341],{"type":51,"value":463},{"type":45,"tag":442,"props":3343,"children":3344},{"style":466},[3345],{"type":51,"value":557},{"type":45,"tag":442,"props":3347,"children":3348},{"style":455},[3349],{"type":51,"value":538},{"type":45,"tag":442,"props":3351,"children":3352},{"style":466},[3353],{"type":51,"value":3056},{"type":45,"tag":442,"props":3355,"children":3356},{"style":455},[3357],{"type":51,"value":463},{"type":45,"tag":442,"props":3359,"children":3360},{"style":466},[3361],{"type":51,"value":3362}," -d",{"type":45,"tag":442,"props":3364,"children":3365},{"style":455},[3366],{"type":51,"value":3077},{"type":45,"tag":442,"props":3368,"children":3369},{"style":466},[3370],{"type":51,"value":3082},{"type":45,"tag":442,"props":3372,"children":3373},{"style":455},[3374],{"type":51,"value":3087},{"type":45,"tag":442,"props":3376,"children":3377},{"class":444,"line":620},[3378],{"type":45,"tag":442,"props":3379,"children":3380},{"emptyLinePlaceholder":506},[3381],{"type":51,"value":509},{"type":45,"tag":442,"props":3383,"children":3384},{"class":444,"line":633},[3385],{"type":45,"tag":442,"props":3386,"children":3387},{"style":516},[3388],{"type":51,"value":3389},"# Delete a workflow\n",{"type":45,"tag":442,"props":3391,"children":3392},{"class":444,"line":641},[3393,3397,3401,3405,3410,3414,3418,3422,3426,3430,3434,3438],{"type":45,"tag":442,"props":3394,"children":3395},{"style":526},[3396],{"type":51,"value":127},{"type":45,"tag":442,"props":3398,"children":3399},{"style":466},[3400],{"type":51,"value":533},{"type":45,"tag":442,"props":3402,"children":3403},{"style":466},[3404],{"type":51,"value":2986},{"type":45,"tag":442,"props":3406,"children":3407},{"style":466},[3408],{"type":51,"value":3409}," DELETE",{"type":45,"tag":442,"props":3411,"children":3412},{"style":455},[3413],{"type":51,"value":538},{"type":45,"tag":442,"props":3415,"children":3416},{"style":449},[3417],{"type":51,"value":543},{"type":45,"tag":442,"props":3419,"children":3420},{"style":466},[3421],{"type":51,"value":3254},{"type":45,"tag":442,"props":3423,"children":3424},{"style":455},[3425],{"type":51,"value":463},{"type":45,"tag":442,"props":3427,"children":3428},{"style":466},[3429],{"type":51,"value":557},{"type":45,"tag":442,"props":3431,"children":3432},{"style":455},[3433],{"type":51,"value":538},{"type":45,"tag":442,"props":3435,"children":3436},{"style":449},[3437],{"type":51,"value":566},{"type":45,"tag":442,"props":3439,"children":3440},{"style":455},[3441],{"type":51,"value":474},{"type":45,"tag":442,"props":3443,"children":3444},{"class":444,"line":650},[3445],{"type":45,"tag":442,"props":3446,"children":3447},{"style":516},[3448],{"type":51,"value":3449},"# Expect 204\n",{"type":45,"tag":78,"props":3451,"children":3453},{"id":3452},"troubleshooting",[3454],{"type":51,"value":3455},"Troubleshooting",{"type":45,"tag":171,"props":3457,"children":3458},{},[3459,3475],{"type":45,"tag":175,"props":3460,"children":3461},{},[3462],{"type":45,"tag":179,"props":3463,"children":3464},{},[3465,3470],{"type":45,"tag":183,"props":3466,"children":3467},{},[3468],{"type":51,"value":3469},"Issue",{"type":45,"tag":183,"props":3471,"children":3472},{},[3473],{"type":51,"value":3474},"Solution",{"type":45,"tag":199,"props":3476,"children":3477},{},[3478,3498,3511,3537,3550],{"type":45,"tag":179,"props":3479,"children":3480},{},[3481,3486],{"type":45,"tag":206,"props":3482,"children":3483},{},[3484],{"type":51,"value":3485},"401 Unauthorized",{"type":45,"tag":206,"props":3487,"children":3488},{},[3489,3491,3496],{"type":51,"value":3490},"Token needs ",{"type":45,"tag":122,"props":3492,"children":3494},{"className":3493},[],[3495],{"type":51,"value":140},{"type":51,"value":3497}," scope",{"type":45,"tag":179,"props":3499,"children":3500},{},[3501,3506],{"type":45,"tag":206,"props":3502,"children":3503},{},[3504],{"type":51,"value":3505},"403 Forbidden",{"type":45,"tag":206,"props":3507,"children":3508},{},[3509],{"type":51,"value":3510},"Token must belong to the target org",{"type":45,"tag":179,"props":3512,"children":3513},{},[3514,3519],{"type":45,"tag":206,"props":3515,"children":3516},{},[3517],{"type":51,"value":3518},"404 Not Found",{"type":45,"tag":206,"props":3520,"children":3521},{},[3522,3524,3529,3531,3536],{"type":51,"value":3523},"Check org slug and region (",{"type":45,"tag":122,"props":3525,"children":3527},{"className":3526},[],[3528],{"type":51,"value":280},{"type":51,"value":3530}," vs ",{"type":45,"tag":122,"props":3532,"children":3534},{"className":3533},[],[3535],{"type":51,"value":304},{"type":51,"value":158},{"type":45,"tag":179,"props":3538,"children":3539},{},[3540,3545],{"type":45,"tag":206,"props":3541,"children":3542},{},[3543],{"type":51,"value":3544},"400 Bad Request",{"type":45,"tag":206,"props":3546,"children":3547},{},[3548],{"type":51,"value":3549},"Validate payload JSON structure, check required fields",{"type":45,"tag":179,"props":3551,"children":3552},{},[3553,3558],{"type":45,"tag":206,"props":3554,"children":3555},{},[3556],{"type":51,"value":3557},"User ID not found",{"type":45,"tag":206,"props":3559,"children":3560},{},[3561],{"type":51,"value":3562},"Verify email matches a member of the org",{"type":45,"tag":3564,"props":3565,"children":3566},"style",{},[3567],{"type":51,"value":3568},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3570,"total":3748},[3571,3596,3610,3625,3639,3656,3672,3686,3696,3707,3717,3735],{"slug":3572,"name":3572,"fn":3573,"description":3574,"org":3575,"tags":3576,"stars":3593,"repoUrl":3594,"updatedAt":3595},"xcodebuildmcp","build and test Apple apps with XcodeBuildMCP","Official skill for XcodeBuildMCP. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3577,3580,3583,3586,3587,3590],{"name":3578,"slug":3579,"type":16},"Debugging","debugging",{"name":3581,"slug":3582,"type":16},"iOS","ios",{"name":3584,"slug":3585,"type":16},"macOS","macos",{"name":9,"slug":8,"type":16},{"name":3588,"slug":3589,"type":16},"Testing","testing",{"name":3591,"slug":3592,"type":16},"Xcode","xcode",6176,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002FXcodeBuildMCP","2026-04-06T18:13:34.8719",{"slug":3597,"name":3597,"fn":3598,"description":3599,"org":3600,"tags":3601,"stars":3593,"repoUrl":3594,"updatedAt":3609},"xcodebuildmcp-cli","build and test Apple apps via CLI","Official skill for the XcodeBuildMCP CLI. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3602,3605,3606,3607,3608],{"name":3603,"slug":3604,"type":16},"CLI","cli",{"name":3581,"slug":3582,"type":16},{"name":3584,"slug":3585,"type":16},{"name":3588,"slug":3589,"type":16},{"name":3591,"slug":3592,"type":16},"2026-04-06T18:13:36.13414",{"slug":3611,"name":3611,"fn":3612,"description":3613,"org":3614,"tags":3615,"stars":3622,"repoUrl":3623,"updatedAt":3624},"agents-md","maintain project instruction files","Creates and maintains concise AGENTS.md and CLAUDE.md project instruction files. Use when asked to create AGENTS.md, update AGENTS.md, maintain agent docs, set up CLAUDE.md, document repository agent conventions, or keep coding-agent instructions minimal and reference-backed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3616,3619],{"name":3617,"slug":3618,"type":16},"Documentation","documentation",{"name":3620,"slug":3621,"type":16},"Engineering","engineering",861,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills","2026-05-15T06:16:29.695991",{"slug":3626,"name":3626,"fn":3627,"description":3628,"org":3629,"tags":3630,"stars":3622,"repoUrl":3623,"updatedAt":3638},"blog-writing-guide","write and review engineering blog posts","Write, review, and improve blog posts for the Sentry engineering blog following Sentry's specific writing standards, voice, and quality bar. Use this skill whenever someone asks to write a blog post, draft a technical article, review blog content, improve a draft, write a product announcement, create an engineering deep-dive, or produce any written content destined for the Sentry blog or developer audience. Also trigger when the user mentions \"blog post,\" \"blog draft,\" \"write-up,\" \"announcement post,\" \"engineering post,\" \"deep dive,\" \"postmortem,\" or asks for help with technical writing for Sentry. Even if the user just says \"help me write about [feature\u002Ftopic]\" — if it sounds like it could become a Sentry blog post, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3631,3634,3635],{"name":3632,"slug":3633,"type":16},"Communications","communications",{"name":9,"slug":8,"type":16},{"name":3636,"slug":3637,"type":16},"Technical Writing","technical-writing","2026-05-15T06:16:33.38217",{"slug":3640,"name":3640,"fn":3641,"description":3642,"org":3643,"tags":3644,"stars":3622,"repoUrl":3623,"updatedAt":3655},"brand-guidelines","write copy following Sentry brand guidelines","Write copy following Sentry brand guidelines. Use when writing UI text, error messages, empty states, onboarding flows, 404 pages, documentation, marketing copy, or any user-facing content. Covers both Plain Speech (default) and Sentry Voice tones.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3645,3648,3651,3652],{"name":3646,"slug":3647,"type":16},"Branding","branding",{"name":3649,"slug":3650,"type":16},"Content Creation","content-creation",{"name":9,"slug":8,"type":16},{"name":3653,"slug":3654,"type":16},"UX Copy","ux-copy","2026-05-15T06:16:22.395707",{"slug":3657,"name":3657,"fn":3658,"description":3659,"org":3660,"tags":3661,"stars":3622,"repoUrl":3623,"updatedAt":3671},"claude-settings-audit","generate Claude Code settings permissions","Analyze a repository to generate recommended Claude Code settings.json permissions. Use when setting up a new project, auditing existing settings, or determining which read-only bash commands to allow. Detects tech stack, build tools, and monorepo structure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3662,3665,3668],{"name":3663,"slug":3664,"type":16},"Claude Code","claude-code",{"name":3666,"slug":3667,"type":16},"Configuration","configuration",{"name":3669,"slug":3670,"type":16},"Security","security","2026-05-15T06:16:44.335977",{"slug":3673,"name":3673,"fn":3674,"description":3675,"org":3676,"tags":3677,"stars":3622,"repoUrl":3623,"updatedAt":3685},"code-review","perform code reviews for Sentry projects","Perform code reviews following Sentry engineering practices. Use when reviewing pull requests, examining code changes, or providing feedback on code quality. Covers security, performance, testing, and design review.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3678,3680,3681,3684],{"name":3679,"slug":3673,"type":16},"Code Review",{"name":3620,"slug":3621,"type":16},{"name":3682,"slug":3683,"type":16},"Performance","performance",{"name":3669,"slug":3670,"type":16},"2026-05-15T06:16:35.824864",{"slug":3687,"name":3687,"fn":3688,"description":3689,"org":3690,"tags":3691,"stars":3622,"repoUrl":3623,"updatedAt":3695},"code-simplifier","simplify and refine source code","Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Use when asked to \"simplify code\", \"clean up code\", \"refactor for clarity\", \"improve readability\", or review recently modified code for elegance. Focuses on project-specific best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3692],{"name":3693,"slug":3694,"type":16},"Code Analysis","code-analysis","2026-05-15T06:16:32.127981",{"slug":3697,"name":3697,"fn":3698,"description":3699,"org":3700,"tags":3701,"stars":3622,"repoUrl":3623,"updatedAt":3706},"commit","create commits with Sentry conventions","Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3702,3705],{"name":3703,"slug":3704,"type":16},"Git","git",{"name":9,"slug":8,"type":16},"2026-07-18T05:15:10.723937",{"slug":3708,"name":3708,"fn":3709,"description":3710,"org":3711,"tags":3712,"stars":3622,"repoUrl":3623,"updatedAt":3716},"create-branch","create git branches for Sentry workflows","Create a git branch following Sentry naming conventions. Use when asked to \"create a branch\", \"new branch\", \"start a branch\", \"make a branch\", \"switch to a new branch\", or when starting new work on the default branch.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3713,3714,3715],{"name":3620,"slug":3621,"type":16},{"name":3703,"slug":3704,"type":16},{"name":9,"slug":8,"type":16},"2026-05-15T06:16:39.458431",{"slug":3718,"name":3718,"fn":3719,"description":3720,"org":3721,"tags":3722,"stars":3622,"repoUrl":3623,"updatedAt":3734},"django-access-review","review Django access control and IDOR","Django access control and IDOR security review. Use when reviewing Django views, DRF viewsets, ORM queries, or any Python\u002FDjango code handling user authorization. Trigger keywords: \"IDOR\", \"access control\", \"authorization\", \"Django permissions\", \"object permissions\", \"tenant isolation\", \"broken access\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3723,3726,3727,3730,3733],{"name":3724,"slug":3725,"type":16},"Access Control","access-control",{"name":3693,"slug":3694,"type":16},{"name":3728,"slug":3729,"type":16},"Django","django",{"name":3731,"slug":3732,"type":16},"Python","python",{"name":3669,"slug":3670,"type":16},"2026-05-15T06:16:43.098698",{"slug":3736,"name":3736,"fn":3737,"description":3738,"org":3739,"tags":3740,"stars":3622,"repoUrl":3623,"updatedAt":3747},"django-perf-review","review and optimize Django performance","Django performance code review. Use when asked to \"review Django performance\", \"find N+1 queries\", \"optimize Django\", \"check queryset performance\", \"database performance\", \"Django ORM issues\", or audit Django code for performance problems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3741,3742,3745,3746],{"name":3679,"slug":3673,"type":16},{"name":3743,"slug":3744,"type":16},"Database","database",{"name":3728,"slug":3729,"type":16},{"name":3682,"slug":3683,"type":16},"2026-05-15T06:16:24.832813",88,{"items":3750,"total":502},[3751,3759,3776],{"slug":4,"name":4,"fn":5,"description":6,"org":3752,"tags":3753,"stars":27,"repoUrl":28,"updatedAt":29},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3754,3755,3756,3757,3758],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":25,"slug":26,"type":16},{"name":9,"slug":8,"type":16},{"name":21,"slug":22,"type":16},{"slug":3760,"name":3760,"fn":3761,"description":3762,"org":3763,"tags":3764,"stars":27,"repoUrl":28,"updatedAt":3775},"sentry-otel-exporter-setup","configure OpenTelemetry Collector with Sentry","Configure the OpenTelemetry Collector with Sentry Exporter for multi-project routing and automatic project creation. Use when setting up OTel with Sentry, configuring collector pipelines for traces and logs, or routing telemetry from multiple services to Sentry projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3765,3768,3771,3774],{"name":3766,"slug":3767,"type":16},"Monitoring","monitoring",{"name":3769,"slug":3770,"type":16},"Observability","observability",{"name":3772,"slug":3773,"type":16},"OpenTelemetry","opentelemetry",{"name":9,"slug":8,"type":16},"2026-07-18T05:47:19.56718",{"slug":3777,"name":3777,"fn":3778,"description":3779,"org":3780,"tags":3781,"stars":27,"repoUrl":28,"updatedAt":3793},"sentry-setup-ai-monitoring","setup Sentry AI Agent Monitoring","Setup Sentry AI Agent Monitoring in any project. Use when asked to monitor LLM calls, track AI agents, or instrument OpenAI\u002FAnthropic\u002FVercel AI\u002FLangChain\u002FGoogle GenAI\u002FPydantic AI. Detects installed AI SDKs and configures appropriate integrations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3782,3785,3788,3791,3792],{"name":3783,"slug":3784,"type":16},"Agents","agents",{"name":3786,"slug":3787,"type":16},"Instrumentation","instrumentation",{"name":3789,"slug":3790,"type":16},"LLM","llm",{"name":3769,"slug":3770,"type":16},{"name":9,"slug":8,"type":16},"2026-07-18T05:47:22.376586"]