-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into start-date-replication-value
- Loading branch information
Showing
18 changed files
with
221 additions
and
179 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners | ||
|
||
# Ending a path in a `/` will specify the code owners for every file | ||
# nested in that directory, on any level | ||
|
||
# Default owners | ||
* @edgarrmondragon @cjohnhanson @aaronsteers | ||
|
||
# CI/CD | ||
/.github/workflows/ @edgarrmondragon @meltano/engineering | ||
|
||
# Docs (General) | ||
/docs/ @meltano/engineering @meltano/marketing | ||
/README.md @afolson @tayloramurphy @meltano/engineering @meltano/marketing | ||
|
||
# Docs (Contributing) | ||
/docs/CONTRIBUTING.md @afolson @tayloramurphy @meltano/engineering | ||
|
||
# Release Ops (see `/.pyproject.toml` for list of bumped files) | ||
/cookiecutter/*/*/pyproject.toml @meltano/engineering | ||
/docs/conf.py @meltano/engineering | ||
/pyproject.toml @meltano/engineering |
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,71 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: <title>" | ||
labels: ["kind/Bug", "valuestream/SDK"] | ||
assignees: | ||
- meltano/engineering | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: sdk_version | ||
attributes: | ||
label: Singer SDK Version | ||
description: Version of the library you are using | ||
placeholder: "0.1.0" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: python_version | ||
attributes: | ||
label: Python Version | ||
description: Version of Python you are using | ||
options: | ||
- "3.6 (deprecated)" | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "NA" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: scope | ||
attributes: | ||
label: Bug scope | ||
description: Functionality this bug affects | ||
options: | ||
- Taps (catalog, state, stream maps, etc.) | ||
- Targets (data type handling, batching, SQL object generation, etc.) | ||
- Configuration (settings parsing, validation, etc.) | ||
- CLI (options, error messages, logging, etc.) | ||
- Other | ||
validations: | ||
required: true | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: What operating system you are using | ||
placeholder: "Windows" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Description | ||
description: Describe what you were trying to get done | ||
placeholder: Tell us what happened, what went wrong, and what you expected to happen | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: failing-code | ||
attributes: | ||
label: Code | ||
description: Paste the failing code and/or traceback, if applicable | ||
render: python | ||
validations: | ||
required: false |
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,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Meltano Community | ||
url: https://meltano.com/slack | ||
about: Join us on Slack. |
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,32 @@ | ||
name: Feature request | ||
description: Request a new feature | ||
title: "[Feature]: <title>" | ||
labels: ["kind/Feature", "valuestream/SDK"] | ||
assignees: | ||
- meltano/engineering | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to request a new feature! | ||
- type: dropdown | ||
id: scope | ||
attributes: | ||
label: Feature scope | ||
description: Functionality this new feature would impact | ||
options: | ||
- Taps (catalog, state, stream maps, etc.) | ||
- Targets (data type handling, batching, SQL object generation, etc.) | ||
- Configuration (settings parsing, validation, etc.) | ||
- CLI (options, error messages, logging, etc.) | ||
- Other | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what | ||
attributes: | ||
label: Description | ||
description: Describe the feature you would like to see | ||
validations: | ||
required: true |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
pip==22.1.2 | ||
pip==22.2 | ||
poetry==1.1.14 | ||
virtualenv==20.15.1 | ||
nox==2022.1.7 | ||
|
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Dependency Review Action | ||
# | ||
# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging. | ||
# | ||
# Source repository: https://github.com/actions/dependency-review-action | ||
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement | ||
name: Dependency Review | ||
on: [pull_request] | ||
|
||
on: | ||
pull_request_target: {} | ||
workflow_dispatch: | ||
inputs: {} | ||
|
||
env: | ||
FOSSA_CLI_INSTALLER_VERSION: '3.3.10' | ||
|
||
permissions: | ||
contents: read | ||
|
@@ -14,7 +15,26 @@ jobs: | |
dependency-review: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Dependency Review | ||
uses: actions/dependency-review-action@v2 | ||
- name: Checkout the repository | ||
uses: actions/[email protected] | ||
|
||
- name: GitHub dependency vulnerability check | ||
if: ${{ github.event_name == 'pull_request_target' }} | ||
# Use this fork until https://github.com/actions/dependency-review-action/pull/165 is merged | ||
uses: WillDaSilva/dependency-review-action@main | ||
|
||
- name: FOSSA dependency license check | ||
run: | | ||
# `$FOSSA_CLI_INSTALLER_VERSION` only controls the version of the installer used - the latest version of `fossa-cli` will always be used. | ||
curl --no-progress-meter -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/v${FOSSA_CLI_INSTALLER_VERSION}/install-latest.sh | bash | ||
echo '## FOSSA dependency license check' >> $GITHUB_STEP_SUMMARY | ||
echo '' >> $GITHUB_STEP_SUMMARY | ||
fossa analyze --fossa-api-key ${{ secrets.MELTYBOT_FOSSA_API_KEY }} --revision ${{ github.sha }} |& tee fossa_analyze.log | ||
fossa test --fossa-api-key ${{ secrets.MELTYBOT_FOSSA_API_KEY }} --revision ${{ github.sha }} | ||
TEST_FAILED=$? | ||
FOSSA_REPORT_LINK="$(grep -A 1 '[ INFO] View FOSSA Report:' fossa_analyze.log | tail -n 1 | sed -e 's/^\[ INFO\]\s*//')" | ||
echo "[FOSSA detected $([ $TEST_FAILED -ne 0 ] && echo -n '' || echo 'no ')issues](${FOSSA_REPORT_LINK})" >> $GITHUB_STEP_SUMMARY | ||
exit $TEST_FAILED |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.