diff --git a/.github/workflows/checks_new.yml b/.github/workflows/checks_new.yml index c3691e647..c1734a784 100644 --- a/.github/workflows/checks_new.yml +++ b/.github/workflows/checks_new.yml @@ -31,6 +31,20 @@ jobs: - bigquery_plugin - blast - chatgpt_agent + - customizing_dependencies + - data_types_and_io + - dbt_plugin + - development_lifecycle + - dolt_plugin + - duckdb_plugin + - exploratory_data_analysis + - extending + - feast_integration + - forecasting_sales + - greatexpectations_plugin + - hive_plugin + - house_price_prediction + - k8s_dask_plugin steps: - uses: actions/checkout@v4 - name: Set up Python diff --git a/examples/chatgpt_agent/chatgpt_agent/chatgpt_agent_example_usage.py b/examples/chatgpt_agent/chatgpt_agent/chatgpt_agent_example_usage.py index 2f2702939..e778a9f64 100644 --- a/examples/chatgpt_agent/chatgpt_agent/chatgpt_agent_example_usage.py +++ b/examples/chatgpt_agent/chatgpt_agent/chatgpt_agent_example_usage.py @@ -133,7 +133,7 @@ def post_message_on_slack(message: str): def wf(owner: str = "flyteorg", repo: str = "flyte", channel: str = "demo"): message = get_github_latest_release(owner=owner, repo=repo) message = chatgpt_job(message=message) - post_message_on_slack(channel=channel, message=message) + post_message_on_slack(message=message) if __name__ == "__main__":