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

Update fields in source-connectors specifications: mysql, onesignal, oracle, outreach, paystack, pipedrive, pokeapi #8582

Merged
merged 8 commits into from
Dec 13, 2021

Conversation

igrankova
Copy link
Contributor

What

Add title and description properties to each field in source-connectors specifications:
source-mysql
source-onesignal
source-oracle
source-outreach
source-paystack
source-pipedrive
source-pokeapi

How

Describe the solution

Recommended reading order

  1. x.java
  2. y.python

🚨 User Impact 🚨

Are there any breaking changes? What is the end result perceived by the user? If yes, please merge this PR with the 🚨🚨 emoji so changelog authors can further highlight this if needed.

Pre-merge Checklist

Expand the relevant checklist and delete the others.

Updating a connector

Community member or Airbyter

  • Grant edit access to maintainers (instructions)
  • Secrets in the connector's spec are annotated with airbyte_secret
  • Unit & integration tests added and passing. Community members, please provide proof of success locally e.g: screenshot or copy-paste unit, integration, and acceptance test output. To run acceptance tests for a Python connector, follow instructions in the README. For java connectors run ./gradlew :airbyte-integrations:connectors:<name>:integrationTest.
  • Code reviews completed
  • Documentation updated
    • Connector's README.md
    • Connector's bootstrap.md. See description and examples
    • Changelog updated in docs/integrations/<source or destination>/<name>.md including changelog. See changelog example
  • PR name follows PR naming conventions

Airbyter

If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.

  • Create a non-forked branch based on this PR and test the below items on it
  • Build is successful
  • Credentials added to Github CI. Instructions.
  • /test connector=connectors/<name> command is passing.
  • New Connector version released on Dockerhub by running the /publish command described here
  • After the new connector version is published, connector version bumped in the seed directory as described here
  • Seed specs have been re-generated by building the platform and committing the changes to the seed spec files, as described here

@igrankova igrankova temporarily deployed to more-secrets December 7, 2021 13:57 Inactive
@github-actions github-actions bot added the area/documentation Improvements or additions to documentation label Dec 7, 2021
@igrankova igrankova temporarily deployed to more-secrets December 7, 2021 14:09 Inactive
@igrankova
Copy link
Contributor Author

igrankova commented Dec 8, 2021

/test connector=connectors/source-mysql

🕑 connectors/source-mysql https://github.com/airbytehq/airbyte/actions/runs/1554053414
✅ connectors/source-mysql https://github.com/airbytehq/airbyte/actions/runs/1554053414
No Python unittests run

@jrhizor jrhizor temporarily deployed to more-secrets December 8, 2021 12:43 Inactive
@igrankova
Copy link
Contributor Author

igrankova commented Dec 8, 2021

/test connector=connectors/source-onesignal

🕑 connectors/source-onesignal https://github.com/airbytehq/airbyte/actions/runs/1554063615
❌ connectors/source-onesignal https://github.com/airbytehq/airbyte/actions/runs/1554063615
🐛 https://gradle.com/s/4ukrdqmjya6us

@igrankova
Copy link
Contributor Author

igrankova commented Dec 8, 2021

/test connector=connectors/source-oracle

🕑 connectors/source-oracle https://github.com/airbytehq/airbyte/actions/runs/1554068268
✅ connectors/source-oracle https://github.com/airbytehq/airbyte/actions/runs/1554068268
No Python unittests run

@igrankova
Copy link
Contributor Author

igrankova commented Dec 8, 2021

/test connector=connectors/source-outreach

🕑 connectors/source-outreach https://github.com/airbytehq/airbyte/actions/runs/1554069230
✅ connectors/source-outreach https://github.com/airbytehq/airbyte/actions/runs/1554069230
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        76      8    89%
	 source_acceptance_test/conftest.py                     109    109     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              235     95    60%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  54     24    56%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  946    442    53%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                       Stmts   Miss  Cover
	 --------------------------------------------------------------
	 base_python/__init__.py                       13      0   100%
	 base_python/catalog_helpers.py                10      6    40%
	 base_python/cdk/__init__.py                    0      0   100%
	 base_python/cdk/abstract_source.py            89     64    28%
	 base_python/cdk/streams/__init__.py            0      0   100%
	 base_python/cdk/streams/auth/__init__.py       0      0   100%
	 base_python/cdk/streams/auth/core.py           8      1    88%
	 base_python/cdk/streams/auth/jwt.py            5      5     0%
	 base_python/cdk/streams/auth/oauth.py         37     26    30%
	 base_python/cdk/streams/auth/token.py          9      4    56%
	 base_python/cdk/streams/core.py               63     32    49%
	 base_python/cdk/streams/exceptions.py         10      2    80%
	 base_python/cdk/streams/http.py               67     33    51%
	 base_python/cdk/streams/rate_limiting.py      30     14    53%
	 base_python/cdk/utils/__init__.py              0      0   100%
	 base_python/cdk/utils/casing.py                4      0   100%
	 base_python/cdk/utils/event_timing.py         47      3    94%
	 base_python/client.py                         56     33    41%
	 base_python/entrypoint.py                     70     56    20%
	 base_python/integration.py                    52     25    52%
	 base_python/logger.py                         33     15    55%
	 base_python/schema_helpers.py                 56     41    27%
	 base_python/source.py                         51     34    33%
	 main_dev.py                                    3      3     0%
	 --------------------------------------------------------------
	 TOTAL                                        713    397    44%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                          Stmts   Miss  Cover
	 -------------------------------------------------
	 source_outreach/__init__.py       2      0   100%
	 source_outreach/source.py        85     23    73%
	 -------------------------------------------------
	 TOTAL                            87     23    74%

@jrhizor jrhizor temporarily deployed to more-secrets December 8, 2021 12:46 Inactive
@igrankova
Copy link
Contributor Author

/test connector=connectors/source-paystack

@igrankova
Copy link
Contributor Author

igrankova commented Dec 8, 2021

/test connector=connectors/source-pipedrive

🕑 connectors/source-pipedrive https://github.com/airbytehq/airbyte/actions/runs/1554071773
✅ connectors/source-pipedrive https://github.com/airbytehq/airbyte/actions/runs/1554071773
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	   self._warn("No data was collected.", slug="no-data-collected")
	 Name                           Stmts   Miss  Cover
	 --------------------------------------------------
	 source_pipedrive/__init__.py       2      2     0%
	 source_pipedrive/source.py        36     36     0%
	 source_pipedrive/streams.py       75     75     0%
	 --------------------------------------------------
	 TOTAL                            113    113     0%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                           Stmts   Miss  Cover
	 --------------------------------------------------
	 source_pipedrive/__init__.py       2      2     0%
	 source_pipedrive/source.py        36     36     0%
	 source_pipedrive/streams.py       75     75     0%
	 --------------------------------------------------
	 TOTAL                            113    113     0%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        76      8    89%
	 source_acceptance_test/conftest.py                     109    109     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              235     95    60%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  54     24    56%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  946    442    53%

@igrankova
Copy link
Contributor Author

igrankova commented Dec 8, 2021

/test connector=connectors/source-pokeapi

🕑 connectors/source-pokeapi https://github.com/airbytehq/airbyte/actions/runs/1554073291
✅ connectors/source-pokeapi https://github.com/airbytehq/airbyte/actions/runs/1554073291
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        76      8    89%
	 source_acceptance_test/conftest.py                     109    109     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              235     95    60%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  54     24    56%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  946    442    53%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                             Stmts   Miss  Cover
	 ----------------------------------------------------
	 source_pokeapi/__init__.py           2      2     0%
	 source_pokeapi/pokemon_list.py       2      2     0%
	 source_pokeapi/source.py            30     30     0%
	 ----------------------------------------------------
	 TOTAL                               34     34     0%

@jrhizor jrhizor temporarily deployed to more-secrets December 8, 2021 12:47 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 8, 2021 12:47 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 8, 2021 12:48 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 8, 2021 12:49 Inactive
@grubberr grubberr temporarily deployed to more-secrets December 10, 2021 14:21 Inactive
@grubberr
Copy link
Contributor

grubberr commented Dec 10, 2021

/test connector=connectors/source-mysql

🕑 connectors/source-mysql https://github.com/airbytehq/airbyte/actions/runs/1563825685

@grubberr
Copy link
Contributor

grubberr commented Dec 10, 2021

/test connector=connectors/source-onesignal

🕑 connectors/source-onesignal https://github.com/airbytehq/airbyte/actions/runs/1563826378
✅ connectors/source-onesignal https://github.com/airbytehq/airbyte/actions/runs/1563826378
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        76      8    89%
	 source_acceptance_test/conftest.py                     109    109     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              235     95    60%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  54     24    56%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  946    442    53%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                       Stmts   Miss  Cover
	 --------------------------------------------------------------
	 base_python/__init__.py                       13      0   100%
	 base_python/catalog_helpers.py                10      6    40%
	 base_python/cdk/__init__.py                    0      0   100%
	 base_python/cdk/abstract_source.py            89     64    28%
	 base_python/cdk/streams/__init__.py            0      0   100%
	 base_python/cdk/streams/auth/__init__.py       0      0   100%
	 base_python/cdk/streams/auth/core.py           8      1    88%
	 base_python/cdk/streams/auth/jwt.py            5      5     0%
	 base_python/cdk/streams/auth/oauth.py         37     26    30%
	 base_python/cdk/streams/auth/token.py          9      4    56%
	 base_python/cdk/streams/core.py               63     32    49%
	 base_python/cdk/streams/exceptions.py         10      2    80%
	 base_python/cdk/streams/http.py               67     33    51%
	 base_python/cdk/streams/rate_limiting.py      30     14    53%
	 base_python/cdk/utils/__init__.py              0      0   100%
	 base_python/cdk/utils/casing.py                4      0   100%
	 base_python/cdk/utils/event_timing.py         47      3    94%
	 base_python/client.py                         56     33    41%
	 base_python/entrypoint.py                     70     56    20%
	 base_python/integration.py                    52     25    52%
	 base_python/logger.py                         33     15    55%
	 base_python/schema_helpers.py                 56     41    27%
	 base_python/source.py                         51     34    33%
	 main_dev.py                                    3      3     0%
	 --------------------------------------------------------------
	 TOTAL                                        713    397    44%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                           Stmts   Miss  Cover
	 --------------------------------------------------
	 source_onesignal/__init__.py       2      0   100%
	 source_onesignal/source.py        25      2    92%
	 source_onesignal/streams.py      107      6    94%
	 --------------------------------------------------
	 TOTAL                            134      8    94%

@grubberr
Copy link
Contributor

grubberr commented Dec 10, 2021

/test connector=connectors/source-oracle

🕑 connectors/source-oracle https://github.com/airbytehq/airbyte/actions/runs/1563827225

@grubberr
Copy link
Contributor

grubberr commented Dec 10, 2021

/test connector=connectors/source-outreach

🕑 connectors/source-outreach https://github.com/airbytehq/airbyte/actions/runs/1563828322
✅ connectors/source-outreach https://github.com/airbytehq/airbyte/actions/runs/1563828322
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        76      8    89%
	 source_acceptance_test/conftest.py                     109    109     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              235     95    60%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  54     24    56%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  946    442    53%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                       Stmts   Miss  Cover
	 --------------------------------------------------------------
	 base_python/__init__.py                       13      0   100%
	 base_python/catalog_helpers.py                10      6    40%
	 base_python/cdk/__init__.py                    0      0   100%
	 base_python/cdk/abstract_source.py            89     64    28%
	 base_python/cdk/streams/__init__.py            0      0   100%
	 base_python/cdk/streams/auth/__init__.py       0      0   100%
	 base_python/cdk/streams/auth/core.py           8      1    88%
	 base_python/cdk/streams/auth/jwt.py            5      5     0%
	 base_python/cdk/streams/auth/oauth.py         37     26    30%
	 base_python/cdk/streams/auth/token.py          9      4    56%
	 base_python/cdk/streams/core.py               63     32    49%
	 base_python/cdk/streams/exceptions.py         10      2    80%
	 base_python/cdk/streams/http.py               67     33    51%
	 base_python/cdk/streams/rate_limiting.py      30     14    53%
	 base_python/cdk/utils/__init__.py              0      0   100%
	 base_python/cdk/utils/casing.py                4      0   100%
	 base_python/cdk/utils/event_timing.py         47      3    94%
	 base_python/client.py                         56     33    41%
	 base_python/entrypoint.py                     70     56    20%
	 base_python/integration.py                    52     25    52%
	 base_python/logger.py                         33     15    55%
	 base_python/schema_helpers.py                 56     41    27%
	 base_python/source.py                         51     34    33%
	 main_dev.py                                    3      3     0%
	 --------------------------------------------------------------
	 TOTAL                                        713    397    44%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                          Stmts   Miss  Cover
	 -------------------------------------------------
	 source_outreach/__init__.py       2      0   100%
	 source_outreach/source.py        85     23    73%
	 -------------------------------------------------
	 TOTAL                            87     23    74%

@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/test connector=connectors/source-pokeapi

🕑 connectors/source-pokeapi https://github.com/airbytehq/airbyte/actions/runs/1571887838
✅ connectors/source-pokeapi https://github.com/airbytehq/airbyte/actions/runs/1571887838
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                 Stmts   Miss  Cover
	 ------------------------------------------------------------------------
	 source_acceptance_test/__init__.py                       2      0   100%
	 source_acceptance_test/base.py                          10      4    60%
	 source_acceptance_test/config.py                        76      8    89%
	 source_acceptance_test/conftest.py                     109    109     0%
	 source_acceptance_test/plugin.py                        47     47     0%
	 source_acceptance_test/tests/__init__.py                 4      0   100%
	 source_acceptance_test/tests/test_core.py              235     95    60%
	 source_acceptance_test/tests/test_full_refresh.py       38     27    29%
	 source_acceptance_test/tests/test_incremental.py        69     38    45%
	 source_acceptance_test/utils/__init__.py                 6      0   100%
	 source_acceptance_test/utils/asserts.py                 37      2    95%
	 source_acceptance_test/utils/common.py                  54     24    56%
	 source_acceptance_test/utils/compare.py                 62     25    60%
	 source_acceptance_test/utils/connector_runner.py        82     49    40%
	 source_acceptance_test/utils/json_schema_helper.py     115     14    88%
	 ------------------------------------------------------------------------
	 TOTAL                                                  946    442    53%
	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 /actions-runner/_work/airbyte/airbyte/airbyte-integrations/connectors/source-pokeapi/.venv/lib/python3.8/site-packages/coverage/control.py:768: CoverageWarning: No data was collected. (no-data-collected)
	   self._warn("No data was collected.", slug="no-data-collected")
	 Name                             Stmts   Miss  Cover
	 ----------------------------------------------------
	 source_pokeapi/__init__.py           2      2     0%
	 source_pokeapi/pokemon_list.py       2      2     0%
	 source_pokeapi/source.py            30     30     0%
	 ----------------------------------------------------
	 TOTAL                               34     34     0%

Python short test summary info:

=========================== short test summary info ============================
SKIPPED [1] ../usr/local/lib/python3.7/site-packages/source_acceptance_test/plugin.py:56: Skipping TestSpec.test_match_expected because not found in the config
SKIPPED [1] ../usr/local/lib/python3.7/site-packages/source_acceptance_test/plugin.py:56: Skipping TestIncremental.test_two_sequential_reads because not found in the config
========================= 6 passed, 2 skipped in 3.78s =========================

@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:06 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:06 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:06 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:06 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:06 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:06 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:06 Inactive
@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/publish connector=connectors/source-mysql

🕑 connectors/source-mysql https://github.com/airbytehq/airbyte/actions/runs/1571978273
✅ connectors/source-mysql https://github.com/airbytehq/airbyte/actions/runs/1571978273

@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/publish connector=connectors/source-onesignal

🕑 connectors/source-onesignal https://github.com/airbytehq/airbyte/actions/runs/1571979026
✅ connectors/source-onesignal https://github.com/airbytehq/airbyte/actions/runs/1571979026

@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/publish connector=connectors/source-oracle

🕑 connectors/source-oracle https://github.com/airbytehq/airbyte/actions/runs/1571979501
✅ connectors/source-oracle https://github.com/airbytehq/airbyte/actions/runs/1571979501

@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/publish connector=connectors/source-outreach

🕑 connectors/source-outreach https://github.com/airbytehq/airbyte/actions/runs/1571980030
✅ connectors/source-outreach https://github.com/airbytehq/airbyte/actions/runs/1571980030

@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/publish connector=connectors/source-paystack

🕑 connectors/source-paystack https://github.com/airbytehq/airbyte/actions/runs/1571980537
✅ connectors/source-paystack https://github.com/airbytehq/airbyte/actions/runs/1571980537

@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/publish connector=connectors/source-pipedrive

🕑 connectors/source-pipedrive https://github.com/airbytehq/airbyte/actions/runs/1571981173
✅ connectors/source-pipedrive https://github.com/airbytehq/airbyte/actions/runs/1571981173

@igrankova
Copy link
Contributor Author

igrankova commented Dec 13, 2021

/publish connector=connectors/source-pokeapi

🕑 connectors/source-pokeapi https://github.com/airbytehq/airbyte/actions/runs/1571981607
✅ connectors/source-pokeapi https://github.com/airbytehq/airbyte/actions/runs/1571981607

@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:35 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:35 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:35 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:35 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:35 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:35 Inactive
@jrhizor jrhizor temporarily deployed to more-secrets December 13, 2021 08:35 Inactive
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
@grubberr grubberr merged commit 62c3c4e into master Dec 13, 2021
@grubberr grubberr deleted the igrankova/issue-8368-update-title-description branch December 13, 2021 09:14
@grubberr grubberr temporarily deployed to more-secrets December 13, 2021 09:15 Inactive
schlattk pushed a commit to schlattk/airbyte that referenced this pull request Jan 4, 2022
…oracle, outreach, paystack, pipedrive, pokeapi (airbytehq#8582)

Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>

Co-authored-by: Sergey Chvalyuk <grubberr@gmail.com>
Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/connectors Connector related issues area/documentation Improvements or additions to documentation
Projects
No open projects
Archived in project
4 participants