Skip to content

Commit

Permalink
only git add necessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
Phlair committed Apr 4, 2022
1 parent 0cffdb0 commit 45437a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
git config user.email "<>"
- name: commit
run: |
git add -A
git add -u
git commit -m "auto-bump connector version"
git push origin ${{ github.ref }}
- name: Add Version Bump Success Comment
Expand Down

2 comments on commit 45437a5

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube Report

SonarQube report for Airbyte Connectors Source Apify Dataset(#11711)

Measures

Name Value Name Value Name Value
Quality Gate Status OK Coverage 0.0 Lines to Cover 41
Bugs 0 Vulnerabilities 0 Reliability Rating A
Lines of Code 63 Security Rating A Duplicated Blocks 0
Duplicated Lines (%) 0.0 Code Smells 7 Blocker Issues 0
Critical Issues 0 Major Issues 0 Minor Issues 7

Detected Issues

Rule File Description Message
python:mypy_valid_type (MINOR) source_apify_dataset/source.py:46 Check that type (annotation) is valid Module "json" is not valid as a type . Code line: ... def check(self, logger: AirbyteLogger, config: json) -> AirbyteConne...
python:mypy_index (MINOR) source_apify_dataset/source.py:60 Check indexing operations Value of type json? is not indexable . Code line: dataset_id = config["datasetId"]
python:mypy_valid_type (MINOR) source_apify_dataset/source.py:69 Check that type (annotation) is valid Module "json" is not valid as a type . Code line: ...ef discover(self, logger: AirbyteLogger, config: json) -> AirbyteCatal...
python:mypy_valid_type (MINOR) source_apify_dataset/source.py:97 Check that type (annotation) is valid Module "json" is not valid as a type . Code line: self, logger: AirbyteLogger, config: json, catalog: Configured...
python:mypy_valid_type (MINOR) source_apify_dataset/source.py:97 Check that type (annotation) is valid Function "builtins.any" is not valid as a type . Code line: ...config: json, catalog: ConfiguredAirbyteCatalog, state: Dict[str, any]
python:mypy_index (MINOR) source_apify_dataset/source.py:120 Check indexing operations Value of type json? is not indexable . Code line: dataset_id = config["datasetId"]
python:mypy_attr_defined (MINOR) source_apify_dataset/source.py:121 Check that attribute exists json? has no attribute "get" . Code line: clean = config.get("clean", False)

Coverage (0.0%)

File Coverage File Coverage
source_apify_dataset/init.py 0.0 source_apify_dataset/source.py 0.0

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube Report

SonarQube report for Airbyte Connectors Destination Dev Null(#11711)

Measures

Name Value Name Value Name Value
Vulnerabilities 0 Lines to Cover 17 Duplicated Lines (%) 0.0
Code Smells 0 Quality Gate Status OK Lines of Code 39
Security Rating A Bugs 0 Reliability Rating A
Coverage 0.0 Duplicated Blocks 0 Blocker Issues 0
Critical Issues 0 Major Issues 0 Minor Issues 0

Coverage (0.0%)

File Coverage File Coverage
src/main/java/io/airbyte/integrations/destination/dev_null/DevNullDestination.java 0.0

Please sign in to comment.