You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/ConnectorMetadataDefinitionV0.py
+13-16
Original file line number
Diff line number
Diff line change
@@ -108,22 +108,18 @@ class GitInfo(BaseModel):
108
108
classConfig:
109
109
extra=Extra.forbid
110
110
111
-
commit_sha: Optional[str] =Field(
112
-
None,
113
-
description="The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
114
-
)
115
-
commit_timestamp: Optional[datetime] =Field(
116
-
None,
117
-
description="The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
118
-
)
119
-
commit_author: Optional[str] =Field(
120
-
None,
121
-
description="The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
122
-
)
123
-
commit_author_email: Optional[str] =Field(
124
-
None,
125
-
description="The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
126
-
)
111
+
commit_sha: Optional[str] =Field(None, description="The git commit sha of the last commit that modified this file.")
112
+
commit_timestamp: Optional[datetime] =Field(None, description="The git commit timestamp of the last commit that modified this file.")
113
+
commit_author: Optional[str] =Field(None, description="The git commit author of the last commit that modified this file.")
114
+
commit_author_email: Optional[str] =Field(None, description="The git commit author email of the last commit that modified this file.")
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/ConnectorRegistryDestinationDefinition.py
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/ConnectorRegistrySourceDefinition.py
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/GeneratedFields.py
+13-16
Original file line number
Diff line number
Diff line change
@@ -13,23 +13,20 @@ class GitInfo(BaseModel):
13
13
classConfig:
14
14
extra=Extra.forbid
15
15
16
-
commit_sha: Optional[str] =Field(
17
-
None,
18
-
description="The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
19
-
)
20
-
commit_timestamp: Optional[datetime] =Field(
21
-
None,
22
-
description="The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
23
-
)
24
-
commit_author: Optional[str] =Field(
25
-
None,
26
-
description="The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
27
-
)
28
-
commit_author_email: Optional[str] =Field(
29
-
None,
30
-
description="The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
31
-
)
16
+
commit_sha: Optional[str] =Field(None, description="The git commit sha of the last commit that modified this file.")
17
+
commit_timestamp: Optional[datetime] =Field(None, description="The git commit timestamp of the last commit that modified this file.")
18
+
commit_author: Optional[str] =Field(None, description="The git commit author of the last commit that modified this file.")
19
+
commit_author_email: Optional[str] =Field(None, description="The git commit author email of the last commit that modified this file.")
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/GitInfo.py
+4-16
Original file line number
Diff line number
Diff line change
@@ -13,19 +13,7 @@ class GitInfo(BaseModel):
13
13
classConfig:
14
14
extra=Extra.forbid
15
15
16
-
commit_sha: Optional[str] =Field(
17
-
None,
18
-
description="The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
19
-
)
20
-
commit_timestamp: Optional[datetime] =Field(
21
-
None,
22
-
description="The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
23
-
)
24
-
commit_author: Optional[str] =Field(
25
-
None,
26
-
description="The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
27
-
)
28
-
commit_author_email: Optional[str] =Field(
29
-
None,
30
-
description="The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
31
-
)
16
+
commit_sha: Optional[str] =Field(None, description="The git commit sha of the last commit that modified this file.")
17
+
commit_timestamp: Optional[datetime] =Field(None, description="The git commit timestamp of the last commit that modified this file.")
18
+
commit_author: Optional[str] =Field(None, description="The git commit author of the last commit that modified this file.")
19
+
commit_author_email: Optional[str] =Field(None, description="The git commit author email of the last commit that modified this file.")
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/ConnectorRegistryDestinationDefinition.yaml
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/ConnectorRegistrySourceDefinition.yaml
description: Information about the author of the last commit that modified this file
5
+
description: Information about the author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
6
6
type: object
7
7
additionalProperties: false
8
8
properties:
9
9
commit_sha:
10
10
type: string
11
-
description: The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
11
+
description: The git commit sha of the last commit that modified this file.
12
12
commit_timestamp:
13
13
type: string
14
14
format: date-time
15
-
description: The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
15
+
description: The git commit timestamp of the last commit that modified this file.
16
16
commit_author:
17
17
type: string
18
-
description: The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
18
+
description: The git commit author of the last commit that modified this file.
19
19
commit_author_email:
20
20
type: string
21
-
description: The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
21
+
description: The git commit author email of the last commit that modified this file.
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/orchestrator/README.md
+9
Original file line number
Diff line number
Diff line change
@@ -169,3 +169,12 @@ open http://localhost:3000
169
169
```
170
170
171
171
And run the `generate_registry` job
172
+
173
+
## Additional Notes
174
+
175
+
### Testing Slack Notifications
176
+
You will need to add the following environment variables to your `.env` file:
177
+
178
+
-`SLACK_TOKEN`: Set to an OAuth token for the [Connector Ops Dagster Bot](https://airbytehq-team.slack.com/apps/A05K845HBE0-connector-ops-dagster-bot?settings=1)
179
+
-`PUBLISH_UPDATE_CHANNEL`: Set to `#test-ci-slack-intergrations`
0 commit comments