From 6ab610ff00a9c47569678e9a5ec5da81e4f533d6 Mon Sep 17 00:00:00 2001 From: Daniel Abraham Date: Fri, 9 Aug 2024 20:31:55 +0300 Subject: [PATCH] Add rows to index + rename 2 projects --- README.md | 20 ++++++++++++++----- .../README.md | 0 .../autokitteh.yaml | 4 ++-- .../program.py | 0 .../README.md | 0 .../autokitteh.yaml | 2 +- .../helpers.star | 0 .../msg.json | 0 .../seats.star | 0 .../triggers.star | 0 10 files changed, 18 insertions(+), 8 deletions(-) rename {categorize_notify => categorize_emails}/README.md (100%) rename categorize_notify/autokitteh-python.yaml => categorize_emails/autokitteh.yaml (93%) rename {categorize_notify => categorize_emails}/program.py (100%) rename {github_copilot => github_copilot_seats}/README.md (100%) rename {github_copilot => github_copilot_seats}/autokitteh.yaml (97%) rename {github_copilot => github_copilot_seats}/helpers.star (100%) rename {github_copilot => github_copilot_seats}/msg.json (100%) rename {github_copilot => github_copilot_seats}/seats.star (100%) rename {github_copilot => github_copilot_seats}/triggers.star (100%) diff --git a/README.md b/README.md index 72ce7d6b..a13df481 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,18 @@ projects for: - Composable templates for interoperability between common services - Demonstrations of system capabilities and features -| Name | Description | Integrations | -| :----------------------------------------------- | :------------------------------------------------------------------------------ | :--------------------------- | -| [Pull Request Review Reminder (Purrr)](./purrr/) | Streamline code reviews and cut down the turnaround time to merge pull requests | GitHub, Slack | -| [ReviewKitteh](./reviewkitteh/) | Monitor pull requests, and meow at random people | GitHub, Google Sheets, Slack | -| [Task Chain](./task_chain/) | Run a sequence of tasks with fault tolerance | Slack | +| Name | Description | Integrations | +| :------------------------------------------------------------ | :------------------------------------------------------------------------------ | :-------------------------------- | +| [AWS Health to Slack](./aws_health_to_slack/) | | AWS (Health) → Slack | +| [Break-Glass](./break_glass/) | | Slack → AWS (IAM), Jira | +| [Categorize Emails](./categorize_emails/) | | Gmail → ChatGPT → Slack | +| [Confluence to Slack](./confluence_to_slack/) | | Confluence → Slack | +| [Create Jira Issue](./create_jira_issue/) | | HTTP → Jira | +| [Data Pipeline](./data_pipeline/) | | AWS (SNS, S3) → SQLite | +| [GitHub Copilot Seats](./github_copilot/) | ... (implemented in Starlark) | GitHub ↔ Slack | +| [Google Forms to Jira](./google_forms_to_jira/) | | Google Forms → Jira | +| [Jira Assignee From Calendar](./jira_assignee_from_calendar/) | | Jira ↔ Google Calendar | +| [Jira to Google Calendar](./jira_to_google_calendar/) | | Jira &arr; Google Calendar | +| [Pull Request Review Reminder (Purrr)](./purrr/) | Streamline code reviews and cut down the turnaround time to merge pull requests | GitHub ↔ Slack | +| [ReviewKitteh](./reviewkitteh/) | Monitor pull requests, and meow at random people | GitHub, Google Sheets, Slack | +| [Task Chain](./task_chain/) | Run a sequence of tasks with fault tolerance | Slack | diff --git a/categorize_notify/README.md b/categorize_emails/README.md similarity index 100% rename from categorize_notify/README.md rename to categorize_emails/README.md diff --git a/categorize_notify/autokitteh-python.yaml b/categorize_emails/autokitteh.yaml similarity index 93% rename from categorize_notify/autokitteh-python.yaml rename to categorize_emails/autokitteh.yaml index 5f009e55..2072532f 100644 --- a/categorize_notify/autokitteh-python.yaml +++ b/categorize_emails/autokitteh.yaml @@ -8,7 +8,7 @@ version: v1 project: - name: categorize_notify + name: categorize_emails connections: - name: my_chatgpt integration: chatgpt @@ -22,5 +22,5 @@ project: - name: http_get connection: my_http event_type: get - # Triggered by GET request to http://localhost:9980/http/categorize_notify/ + # Triggered by GET request to http://localhost:9980/http/categorize_emails/ call: program.py:on_http_get diff --git a/categorize_notify/program.py b/categorize_emails/program.py similarity index 100% rename from categorize_notify/program.py rename to categorize_emails/program.py diff --git a/github_copilot/README.md b/github_copilot_seats/README.md similarity index 100% rename from github_copilot/README.md rename to github_copilot_seats/README.md diff --git a/github_copilot/autokitteh.yaml b/github_copilot_seats/autokitteh.yaml similarity index 97% rename from github_copilot/autokitteh.yaml rename to github_copilot_seats/autokitteh.yaml index 8858b721..a82091e6 100644 --- a/github_copilot/autokitteh.yaml +++ b/github_copilot_seats/autokitteh.yaml @@ -13,7 +13,7 @@ version: v1 project: - name: github_copilot + name: github_copilot_seats vars: - name: GITHUB_ORG value: diff --git a/github_copilot/helpers.star b/github_copilot_seats/helpers.star similarity index 100% rename from github_copilot/helpers.star rename to github_copilot_seats/helpers.star diff --git a/github_copilot/msg.json b/github_copilot_seats/msg.json similarity index 100% rename from github_copilot/msg.json rename to github_copilot_seats/msg.json diff --git a/github_copilot/seats.star b/github_copilot_seats/seats.star similarity index 100% rename from github_copilot/seats.star rename to github_copilot_seats/seats.star diff --git a/github_copilot/triggers.star b/github_copilot_seats/triggers.star similarity index 100% rename from github_copilot/triggers.star rename to github_copilot_seats/triggers.star