Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe connector metadata needs for new connectors (docs, changelog, icon) #23505

Merged
merged 1 commit into from
Feb 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions docs/connector-development/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,22 @@ Once you've finished iterating on the changes to a connector as specified in its
* `airbyte-config/init/src/main/resources/seed/destination_definitions.yaml` if it is a destination.

* Then run the command `./gradlew :airbyte-config:init:processResources` to generate the seed spec yaml files, and commit the changes to the PR. See [this readme](https://github.com/airbytehq/airbyte/tree/a534bb2a8f29b20e3cc7c52fef1bc3c34783695d/airbyte-config/specs) for more information.

5. If the `README.md` file of the connector contains a `Changelog` section, add the new version and relevant release information to the table in the section.
6. The new version of the connector is now available for everyone who uses it. Thank you!

5. The new version of the connector is now available for everyone who uses it. Thank you!


### Updating Connector Metadata

When a new (or updated version) of a connector is ready to be published, our automations will check your branch for a few things:
* Does the connector have an icon?
* Does the connector have documentation and is it in the proper format?
* Does the connector have a changelog entry for this version?

If any of the above are failing, you won't be able to merge your PR or publish your connector.

Connector icons should be square SVGs and be located in [this directory](https://github.com/airbytehq/airbyte/tree/master/airbyte-config/init/src/main/resources/icons).

Connector documentation and changelogs are markdown files which live either [here for sources](https://github.com/airbytehq/airbyte/tree/master/docs/integrations/sources), or [here for destinations](https://github.com/airbytehq/airbyte/tree/master/docs/integrations/destinations).

### The /publish command

Expand Down