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

chore: Change email and issue reporter #2470

Merged
merged 3 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion .github/workflows/team-jira-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
"labels": ["${{ secrets.JIRA_LABEL }}"],
"customfield_11401": {"id": "${{ secrets.JIRA_AREA }}"},
"customfield_10008": "${{ secrets.JIRA_EPIC }}",
"assignee": {"id": "${{ secrets.JIRA_ASSIGNEE }}"}
"assignee": {"id": "${{ secrets.JIRA_ASSIGNEE }}"},
"reporter": {"id": "${{ secrets.JIRA_ASSIGNEE }}"}
}
}
}'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Snowflake Terraform Provider

> ⚠️ **Please note**: If you believe you have found a security issue, _please responsibly disclose_ by contacting us at [team-cloud-foundation-tools-dl@snowflake.com](mailto:team-cloud-foundation-tools-dl@snowflake.com).
> ⚠️ **Please note**: If you believe you have found a security issue, _please responsibly disclose_ by contacting us at [triage-terraformprovider-dl@snowflake.com](mailto:triage-terraformprovider-dl@snowflake.com).

> ⚠️ **Disclaimer**: the project is still in the 0.x.x version, which means it’s still in the experimental phase (check [Go module versioning](https://go.dev/doc/modules/version-numbers#v0-number) for more details). It can be used in production but makes no stability or backward compatibility guarantees. We do not provide backward bug fixes and, therefore, always suggest using the newest version. We are providing only limited support for the provider; priorities will be assigned on a case-by-case basis.
>
Expand Down
2 changes: 1 addition & 1 deletion pkg/resources/table_constraint.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func UpdateTableConstraint(d *schema.ResourceData, meta interface{}) error {
alterStatement := sdk.NewAlterTableRequest(*tableIdentifier).WithConstraintAction(sdk.NewTableConstraintActionRequest().WithRename(constraintRequest))
err = client.Tables.Alter(ctx, alterStatement)
if err != nil {
return fmt.Errorf("error renaming table constraint %v err = %w", &tc.name, err)
return fmt.Errorf("error renaming table constraint %s err = %w", tc.name, err)
}
}

Expand Down
Loading