-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into pedro/sso-domain-docs
- Loading branch information
Showing
11,083 changed files
with
1,558,084 additions
and
455,128 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: 🤖 [AI Assist] Report an issue using the AI Assist | ||
description: Use this template when you have a problem creating a connector using the AI Connector Assist. | ||
labels: [type/bug, area/connector-builder, needs-triage, ai-assist] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
<p align="center"> | ||
<a target="_blank" href="https://airbyte.com"> | ||
<image> | ||
<source srcset="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg"> | ||
<img alt="octavia-welcome" src="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg" width="auto" height="120"> | ||
</image> | ||
</a> | ||
</p> | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report... | ||
Make sure to update this issue with a concise title and provide all information you have to | ||
help us debug the problem together. | ||
- type: input | ||
id: connector-url-link | ||
attributes: | ||
label: Connector Documentation URL | ||
description: Share the documentation URL you used to create the connector. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What error are you seeing? | ||
description: Please give any information you have and steps to reproduce the problem. | ||
- type: textarea | ||
id: replicate | ||
attributes: | ||
label: How to replicate | ||
description: Please provide what steps you made so far | ||
- type: textarea | ||
id: expect | ||
attributes: | ||
label: What do you expect to happen? | ||
description: What output were you expecting? | ||
- type: checkboxes | ||
id: alpha-release | ||
attributes: | ||
label: Is this in the Alpha Release? | ||
description: Are you noticing this issue in the alpha release of AI Assist? | ||
options: | ||
- label: Yes, the issue is in the AI Assist Alpha Release. | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: "Send PagerDuty event" | ||
description: "Use Event API V2 to send a PagerDuty event." | ||
inputs: | ||
integration_key: | ||
description: "The integration key for the PagerDuty service." | ||
required: true | ||
summary: | ||
description: "A brief text summary of the event." | ||
required: true | ||
severity: | ||
description: "The severity of the event. (info, warning, error, critical)" | ||
required: true | ||
source: | ||
description: "Specific human-readable unique identifier, such as a hostname, for the system having the problem." | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Send PagerDuty event | ||
id: send-pager-duty-event | ||
shell: bash | ||
run: | | ||
curl --request 'POST' \ | ||
--fail \ | ||
--url "https://events.pagerduty.com/v2/enqueue" \ | ||
--header 'Content-Type: application/json' \ | ||
--data '{ | ||
"payload": { | ||
"summary": "${{ inputs.summary }}", | ||
"severity": "${{ inputs.severity }}", | ||
"source": "${{ inputs.source }}" | ||
}, | ||
"event_action": "trigger", | ||
"routing_key": "${{ inputs.integration_key }}" | ||
}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.