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: tweak descriptions + Jira/GCal project locations #44

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ projects for:
- Composable templates for interoperability between common services
- Demonstrations of system capabilities and features

| Name | Description | Integrations |
| :------------------------------------------------------------ | :------------------------------------------------------------------------------ | :-------------------------------- |
| 🐍 [AWS Health to Slack](./aws_health_to_slack/) | Notify about AWS Health events based on resource ownership mapping | AWS (Health) → Slack |
| 🐍 [Break-Glass](./break_glass/) | Orchestrate break glass requests and approvals for elevated permissions | Slack → AWS (IAM), Jira |
| 🐍 [Categorize Emails](./categorize_emails/) | Categorize new emails and notify the appropriate channels based on the content | Gmail → ChatGPT → Slack |
| 🐍 [Confluence to Slack](./confluence_to_slack/) | Notify when a new page with a specific label is created | Confluence → Slack |
| 🐍 [Create Jira Issue](./create_jira_issue/) | Create Jira issues from webhook requests | HTTP → Jira |
| 🐍 [Data Pipeline](./data_pipeline/) | Process new S3 files: parse and store data in a database pipeline | AWS (SNS, S3) → SQLite |
| ⭐ [GitHub Copilot Seats](./github_copilot/) | Automate daily GitHub Copilot user pruning and notify users of changes | GitHub ↔ Slack |
| 🐍 [Google Forms to Jira](./google_forms_to_jira/) | Poll a form for responses and create an issue for each new entry | Google Forms → Jira |
| 🐍 [Jira Assignee From Calendar](./jira_assignee_from_calendar/) | Assign Jira issues based on the current on-call person from a shared calendar | Jira ↔ Google Calendar |
| 🐍 [Jira to Google Calendar](./jira_to_google_calendar/) | Create calendar events from Jira issues to schedule and track reviews | Jira → 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 |
| Name | Description | Integrations |
| :------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | :--------------------------------- |
| 🐍 [AWS Health to Slack](./aws_health_to_slack/) | Announce cloud health events based on a resource ownership mapping | AWS (Health), Google Sheets, Slack |
| 🐍 [Break-glass](./break_glass/) | Manage break-glass requests and approvals for temporary elevated permissions | Slack → AWS (IAM), Jira |
| 🐍 [Categorize emails](./categorize_emails/) | Categorize new emails and notify the appropriate channels based on the content | Gmail → ChatGPT → Slack |
| 🐍 [Confluence to Slack](./confluence_to_slack/) | Notify when a new page with a specific label is created | Confluence → Slack |
| 🐍 [Create Jira issue via webhook](./create_jira_issue/) | Create Jira issues with HTTP GET/POST requests | HTTP → Jira |
| 🐍 [Data pipeline](./data_pipeline/) | Process and store data from new S3 files in a database | AWS (SNS, S3) → SQLite |
| ⭐ [GitHub Copilot seats](./github_copilot/) | Automate daily GitHub Copilot user pruning and report changes | GitHub ↔ Slack |
| 🐍 [Google Forms to Jira](./google_forms_to_jira/) | Poll a form for responses and create an issue for each one | Google Forms → Jira |
| 🐍 [Jira assignee from schedule](./jira_google_calendar/assignee_from_schedule/) | Assign new Jira issues to the current on-caller based on a schedule in a shared calendar | Jira ↔ Google Calendar |
| 🐍 [Jira deadline to event](./jira_google_calendar/deadline_to_event/) | Create/update calendar events based on the deadlines of Jira issues | Jira ↔ Google Calendar |
| ⭐ [Pull Request Review Reminder (Purrr)](./purrr/) | Streamline code reviews and cut down 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 |

> [!NOTE]
> **Legend**: ⭐ Starlark implementation, 🐍 Python implementation
> 🐍 = Python implementation, ⭐ = Starlark implementation.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
version: v1

project:
name: jira_assignee_from_calendar
name: jira_assignee_from_google_calendar_schedule
vars:
- name: SHARED_CALENDAR_ID
value: primary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
version: v1

project:
name: jira_to_google_calendar
name: jira_deadline_to_google_calendar_event
connections:
- name: jira_connection
integration: jira
Expand Down