From 34094744d64a6e1a3f9620e8197dcb352530d968 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Tue, 3 Mar 2026 12:45:53 -0700 Subject: [PATCH 1/2] wip --- Cargo.lock | 20 + Cargo.toml | 5 + skills/gws-workflow-email-to-task/SKILL.md | 47 + skills/gws-workflow-file-announce/SKILL.md | 50 + skills/gws-workflow-meeting-prep/SKILL.md | 47 + skills/gws-workflow-standup-report/SKILL.md | 46 + skills/gws-workflow-weekly-digest/SKILL.md | 46 + skills/gws-workflow/SKILL.md | 44 + skills/persona-content-creator/SKILL.md | 33 + skills/persona-customer-support/SKILL.md | 34 + skills/persona-event-coordinator/SKILL.md | 35 + skills/persona-exec-assistant/SKILL.md | 35 + skills/persona-hr-coordinator/SKILL.md | 34 + skills/persona-it-admin/SKILL.md | 33 + skills/persona-project-manager/SKILL.md | 35 + skills/persona-researcher/SKILL.md | 33 + skills/persona-sales-ops/SKILL.md | 35 + skills/persona-team-lead/SKILL.md | 36 + skills/recipe-audit-drive-sharing/SKILL.md | 28 + skills/recipe-bulk-download/SKILL.md | 25 + skills/recipe-cancel-meeting/SKILL.md | 28 + skills/recipe-chat-announcement/SKILL.md | 24 + skills/recipe-create-chat-space/SKILL.md | 25 + skills/recipe-create-task-from-email/SKILL.md | 26 + skills/recipe-daily-standup/SKILL.md | 25 + skills/recipe-email-announcement/SKILL.md | 26 + skills/recipe-follow-up-email/SKILL.md | 25 + skills/recipe-log-data-to-sheet/SKILL.md | 25 + skills/recipe-new-hire-onboarding/SKILL.md | 29 + skills/recipe-onboarding-checklist/SKILL.md | 25 + skills/recipe-organize-drive-folder/SKILL.md | 26 + skills/recipe-recurring-meeting/SKILL.md | 27 + skills/recipe-sanitize-response/SKILL.md | 25 + skills/recipe-schedule-interview/SKILL.md | 28 + skills/recipe-share-document/SKILL.md | 28 + skills/recipe-share-job-posting/SKILL.md | 25 + skills/recipe-upload-and-share/SKILL.md | 26 + skills/recipe-weekly-status-report/SKILL.md | 25 + skills/registry/personas.yaml | 171 + skills/registry/recipes.yaml | 32083 ++++++++++++++++ src/generate_skills.rs | 283 +- src/helpers/mod.rs | 2 + src/helpers/workflows.rs | 647 + src/main.rs | 17 +- src/services.rs | 6 + src/setup.rs | 5 +- 46 files changed, 34372 insertions(+), 11 deletions(-) create mode 100644 skills/gws-workflow-email-to-task/SKILL.md create mode 100644 skills/gws-workflow-file-announce/SKILL.md create mode 100644 skills/gws-workflow-meeting-prep/SKILL.md create mode 100644 skills/gws-workflow-standup-report/SKILL.md create mode 100644 skills/gws-workflow-weekly-digest/SKILL.md create mode 100644 skills/gws-workflow/SKILL.md create mode 100644 skills/persona-content-creator/SKILL.md create mode 100644 skills/persona-customer-support/SKILL.md create mode 100644 skills/persona-event-coordinator/SKILL.md create mode 100644 skills/persona-exec-assistant/SKILL.md create mode 100644 skills/persona-hr-coordinator/SKILL.md create mode 100644 skills/persona-it-admin/SKILL.md create mode 100644 skills/persona-project-manager/SKILL.md create mode 100644 skills/persona-researcher/SKILL.md create mode 100644 skills/persona-sales-ops/SKILL.md create mode 100644 skills/persona-team-lead/SKILL.md create mode 100644 skills/recipe-audit-drive-sharing/SKILL.md create mode 100644 skills/recipe-bulk-download/SKILL.md create mode 100644 skills/recipe-cancel-meeting/SKILL.md create mode 100644 skills/recipe-chat-announcement/SKILL.md create mode 100644 skills/recipe-create-chat-space/SKILL.md create mode 100644 skills/recipe-create-task-from-email/SKILL.md create mode 100644 skills/recipe-daily-standup/SKILL.md create mode 100644 skills/recipe-email-announcement/SKILL.md create mode 100644 skills/recipe-follow-up-email/SKILL.md create mode 100644 skills/recipe-log-data-to-sheet/SKILL.md create mode 100644 skills/recipe-new-hire-onboarding/SKILL.md create mode 100644 skills/recipe-onboarding-checklist/SKILL.md create mode 100644 skills/recipe-organize-drive-folder/SKILL.md create mode 100644 skills/recipe-recurring-meeting/SKILL.md create mode 100644 skills/recipe-sanitize-response/SKILL.md create mode 100644 skills/recipe-schedule-interview/SKILL.md create mode 100644 skills/recipe-share-document/SKILL.md create mode 100644 skills/recipe-share-job-posting/SKILL.md create mode 100644 skills/recipe-upload-and-share/SKILL.md create mode 100644 skills/recipe-weekly-status-report/SKILL.md create mode 100644 skills/registry/personas.yaml create mode 100644 skills/registry/recipes.yaml create mode 100644 src/helpers/workflows.rs diff --git a/Cargo.lock b/Cargo.lock index 676a04fd..3baa09b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -865,6 +865,7 @@ dependencies = [ "reqwest", "serde", "serde_json", + "serde_yaml", "serial_test", "sha2", "tempfile", @@ -2257,6 +2258,19 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_yaml" +version = "0.9.34+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" +dependencies = [ + "indexmap", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + [[package]] name = "serial_test" version = "3.4.0" @@ -2797,6 +2811,12 @@ dependencies = [ "subtle", ] +[[package]] +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + [[package]] name = "untrusted" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index 84b39af0..60c1f335 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,6 +29,10 @@ categories = ["command-line-utilities", "web-programming"] name = "gws" path = "src/main.rs" +[[bin]] +name = "seed_recipes" +path = "src/bin/seed_recipes.rs" + [dependencies] aes-gcm = "0.10" anyhow = "1" @@ -52,6 +56,7 @@ crossterm = "0.29.0" chrono = "0.4.44" keyring = "3.6.3" async-trait = "0.1.89" +serde_yaml = "0.9.34" # The profile that 'cargo dist' will build with diff --git a/skills/gws-workflow-email-to-task/SKILL.md b/skills/gws-workflow-email-to-task/SKILL.md new file mode 100644 index 00000000..87dbc74b --- /dev/null +++ b/skills/gws-workflow-email-to-task/SKILL.md @@ -0,0 +1,47 @@ +--- +name: gws-workflow-email-to-task +version: 1.0.0 +description: "Convert a Gmail message into a Google Tasks entry" +metadata: + openclaw: + category: "productivity" + requires: + bins: ["gws"] + cliHelp: "gws workflow +email-to-task --help" +--- + +# workflow +email-to-task + +> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. + +Convert a Gmail message into a Google Tasks entry + +## Usage + +```bash +gws workflow +email-to-task --message-id +``` + +## Flags + +| Flag | Required | Default | Description | +|------|----------|---------|-------------| +| `--message-id` | ✓ | — | Gmail message ID to convert | +| `--tasklist` | — | @default | Task list ID (default: @default) | + +## Examples + +```bash +gws workflow +email-to-task --message-id MSG_ID +gws workflow +email-to-task --message-id MSG_ID --tasklist LIST_ID +``` + +## Tips + +- Reads the email subject as the task title and snippet as notes. +- Creates a new task — confirm with the user before executing. + +## See Also + +- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth +- [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands diff --git a/skills/gws-workflow-file-announce/SKILL.md b/skills/gws-workflow-file-announce/SKILL.md new file mode 100644 index 00000000..04829a7d --- /dev/null +++ b/skills/gws-workflow-file-announce/SKILL.md @@ -0,0 +1,50 @@ +--- +name: gws-workflow-file-announce +version: 1.0.0 +description: "Announce a Drive file in a Chat space" +metadata: + openclaw: + category: "productivity" + requires: + bins: ["gws"] + cliHelp: "gws workflow +file-announce --help" +--- + +# workflow +file-announce + +> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. + +Announce a Drive file in a Chat space + +## Usage + +```bash +gws workflow +file-announce --file-id --space +``` + +## Flags + +| Flag | Required | Default | Description | +|------|----------|---------|-------------| +| `--file-id` | ✓ | — | Drive file ID to announce | +| `--space` | ✓ | — | Chat space name (e.g. spaces/SPACE_ID) | +| `--message` | — | — | Custom announcement message | +| `--format` | — | — | Output format: json (default), table, yaml, csv | + +## Examples + +```bash +gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123 +gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123 --message 'Check this out!' +``` + +## Tips + +- This is a write command — sends a Chat message. +- Use `gws drive +upload` first to upload the file, then announce it here. +- Fetches the file name from Drive to build the announcement. + +## See Also + +- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth +- [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands diff --git a/skills/gws-workflow-meeting-prep/SKILL.md b/skills/gws-workflow-meeting-prep/SKILL.md new file mode 100644 index 00000000..a95a71e5 --- /dev/null +++ b/skills/gws-workflow-meeting-prep/SKILL.md @@ -0,0 +1,47 @@ +--- +name: gws-workflow-meeting-prep +version: 1.0.0 +description: "Prepare for your next meeting: agenda, attendees, and linked docs" +metadata: + openclaw: + category: "productivity" + requires: + bins: ["gws"] + cliHelp: "gws workflow +meeting-prep --help" +--- + +# workflow +meeting-prep + +> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. + +Prepare for your next meeting: agenda, attendees, and linked docs + +## Usage + +```bash +gws workflow +meeting-prep +``` + +## Flags + +| Flag | Required | Default | Description | +|------|----------|---------|-------------| +| `--calendar` | — | primary | Calendar ID (default: primary) | +| `--format` | — | — | Output format: json (default), table, yaml, csv | + +## Examples + +```bash +gws workflow +meeting-prep +gws workflow +meeting-prep --calendar Work +``` + +## Tips + +- Read-only — never modifies data. +- Shows the next upcoming event with attendees and description. + +## See Also + +- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth +- [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands diff --git a/skills/gws-workflow-standup-report/SKILL.md b/skills/gws-workflow-standup-report/SKILL.md new file mode 100644 index 00000000..a5af1c2d --- /dev/null +++ b/skills/gws-workflow-standup-report/SKILL.md @@ -0,0 +1,46 @@ +--- +name: gws-workflow-standup-report +version: 1.0.0 +description: "Today's meetings + open tasks as a standup summary" +metadata: + openclaw: + category: "productivity" + requires: + bins: ["gws"] + cliHelp: "gws workflow +standup-report --help" +--- + +# workflow +standup-report + +> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. + +Today's meetings + open tasks as a standup summary + +## Usage + +```bash +gws workflow +standup-report +``` + +## Flags + +| Flag | Required | Default | Description | +|------|----------|---------|-------------| +| `--format` | — | — | Output format: json (default), table, yaml, csv | + +## Examples + +```bash +gws workflow +standup-report +gws workflow +standup-report --format table +``` + +## Tips + +- Read-only — never modifies data. +- Combines calendar agenda (today) with tasks list. + +## See Also + +- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth +- [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands diff --git a/skills/gws-workflow-weekly-digest/SKILL.md b/skills/gws-workflow-weekly-digest/SKILL.md new file mode 100644 index 00000000..8d815494 --- /dev/null +++ b/skills/gws-workflow-weekly-digest/SKILL.md @@ -0,0 +1,46 @@ +--- +name: gws-workflow-weekly-digest +version: 1.0.0 +description: "Weekly summary: this week's meetings + unread email count" +metadata: + openclaw: + category: "productivity" + requires: + bins: ["gws"] + cliHelp: "gws workflow +weekly-digest --help" +--- + +# workflow +weekly-digest + +> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. + +Weekly summary: this week's meetings + unread email count + +## Usage + +```bash +gws workflow +weekly-digest +``` + +## Flags + +| Flag | Required | Default | Description | +|------|----------|---------|-------------| +| `--format` | — | — | Output format: json (default), table, yaml, csv | + +## Examples + +```bash +gws workflow +weekly-digest +gws workflow +weekly-digest --format table +``` + +## Tips + +- Read-only — never modifies data. +- Combines calendar agenda (week) with gmail triage summary. + +## See Also + +- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth +- [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands diff --git a/skills/gws-workflow/SKILL.md b/skills/gws-workflow/SKILL.md new file mode 100644 index 00000000..bcc97010 --- /dev/null +++ b/skills/gws-workflow/SKILL.md @@ -0,0 +1,44 @@ +--- +name: gws-workflow +version: 1.0.0 +description: "USE WHEN the user wants to cross-service productivity workflows via the `gws` CLI." +metadata: + openclaw: + category: "productivity" + requires: + bins: ["gws"] + cliHelp: "gws workflow --help" +--- + +# workflow (v1) + +> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. + +```bash +gws workflow [flags] +``` + +## Helper Commands + +| Command | Description | +|---------|-------------| +| [`+standup-report`](../gws-workflow-standup-report/SKILL.md) | Today's meetings + open tasks as a standup summary | +| [`+meeting-prep`](../gws-workflow-meeting-prep/SKILL.md) | Prepare for your next meeting: agenda, attendees, and linked docs | +| [`+email-to-task`](../gws-workflow-email-to-task/SKILL.md) | Convert a Gmail message into a Google Tasks entry | +| [`+weekly-digest`](../gws-workflow-weekly-digest/SKILL.md) | Weekly summary: this week's meetings + unread email count | +| [`+file-announce`](../gws-workflow-file-announce/SKILL.md) | Announce a Drive file in a Chat space | + +## Discovering Commands + +Before calling any API method, inspect it: + +```bash +# Browse resources and methods +gws workflow --help + +# Inspect a method's required params, types, and defaults +gws schema workflow.. +``` + +Use `gws schema` output to build your `--params` and `--json` flags. + diff --git a/skills/persona-content-creator/SKILL.md b/skills/persona-content-creator/SKILL.md new file mode 100644 index 00000000..7202c996 --- /dev/null +++ b/skills/persona-content-creator/SKILL.md @@ -0,0 +1,33 @@ +--- +name: persona-content-creator +version: 1.0.0 +description: "USE WHEN the user needs help creating, organizing, and distributing content across Workspace." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-docs", "gws-drive", "gws-gmail", "gws-chat", "gws-slides"] +--- + +# Content Creator + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-docs`, `gws-drive`, `gws-gmail`, `gws-chat`, `gws-slides` + +USE WHEN the user needs help creating, organizing, and distributing content across Workspace. + +## Relevant Workflows +- `gws workflow +file-announce` + +## Instructions +- Draft content in Google Docs with `gws docs +write`. +- Organize content assets in Drive folders — use `gws drive files list` to browse. +- Share finished content by announcing in Chat with `gws workflow +file-announce`. +- Send content review requests via email with `gws gmail +send`. +- Upload media assets to Drive with `gws drive +upload`. + +## Tips +- Use `gws docs +write` for quick content updates — it handles the Docs API formatting. +- Keep a 'Content Calendar' in a shared Sheet for tracking publication schedules. +- Use `--format yaml` for human-readable output when debugging API responses. + diff --git a/skills/persona-customer-support/SKILL.md b/skills/persona-customer-support/SKILL.md new file mode 100644 index 00000000..90e85f9d --- /dev/null +++ b/skills/persona-customer-support/SKILL.md @@ -0,0 +1,34 @@ +--- +name: persona-customer-support +version: 1.0.0 +description: "USE WHEN the user needs help managing customer support workflows — tracking tickets, sending responses, and escalating issues." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-sheets", "gws-chat", "gws-calendar"] +--- + +# Customer Support Agent + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-sheets`, `gws-chat`, `gws-calendar` + +USE WHEN the user needs help managing customer support workflows — tracking tickets, sending responses, and escalating issues. + +## Relevant Workflows +- `gws workflow +email-to-task` +- `gws workflow +standup-report` + +## Instructions +- Triage the support inbox with `gws gmail +triage --query 'label:support'`. +- Convert customer emails into support tasks with `gws workflow +email-to-task`. +- Log ticket status updates in a tracking sheet with `gws sheets +append`. +- Escalate urgent issues to the team Chat space. +- Schedule follow-up calls with customers using `gws calendar +insert`. + +## Tips +- Use `gws gmail +triage --labels` to see email categories at a glance. +- Set up Gmail filters for auto-labeling support requests. +- Use `--format table` for quick status dashboard views. + diff --git a/skills/persona-event-coordinator/SKILL.md b/skills/persona-event-coordinator/SKILL.md new file mode 100644 index 00000000..00e82b72 --- /dev/null +++ b/skills/persona-event-coordinator/SKILL.md @@ -0,0 +1,35 @@ +--- +name: persona-event-coordinator +version: 1.0.0 +description: "USE WHEN the user needs help planning and managing events — scheduling, invitations, and logistics." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-gmail", "gws-drive", "gws-chat", "gws-sheets"] +--- + +# Event Coordinator + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-calendar`, `gws-gmail`, `gws-drive`, `gws-chat`, `gws-sheets` + +USE WHEN the user needs help planning and managing events — scheduling, invitations, and logistics. + +## Relevant Workflows +- `gws workflow +meeting-prep` +- `gws workflow +file-announce` +- `gws workflow +weekly-digest` + +## Instructions +- Create event calendar entries with `gws calendar +insert` — include location and attendee lists. +- Prepare event materials and upload to Drive with `gws drive +upload`. +- Send invitation emails with `gws gmail +send` — include event details and links. +- Announce updates in Chat spaces with `gws workflow +file-announce`. +- Track RSVPs and logistics in Sheets with `gws sheets +append`. + +## Tips +- Use `gws calendar +agenda --days 30` for long-range event planning. +- Create a dedicated calendar for each major event series. +- Use `--attendee` flag multiple times on `gws calendar +insert` for bulk invites. + diff --git a/skills/persona-exec-assistant/SKILL.md b/skills/persona-exec-assistant/SKILL.md new file mode 100644 index 00000000..a9fccf4d --- /dev/null +++ b/skills/persona-exec-assistant/SKILL.md @@ -0,0 +1,35 @@ +--- +name: persona-exec-assistant +version: 1.0.0 +description: "USE WHEN the user needs help managing an executive's schedule, inbox, and communications." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-calendar", "gws-drive", "gws-chat"] +--- + +# Executive Assistant + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-drive`, `gws-chat` + +USE WHEN the user needs help managing an executive's schedule, inbox, and communications. + +## Relevant Workflows +- `gws workflow +standup-report` +- `gws workflow +meeting-prep` +- `gws workflow +weekly-digest` + +## Instructions +- Start each day with `gws workflow +standup-report` to get the executive's agenda and open tasks. +- Before each meeting, run `gws workflow +meeting-prep` to see attendees, description, and linked docs. +- Triage the inbox with `gws gmail +triage --max 10` — prioritize emails from direct reports and leadership. +- Schedule meetings with `gws calendar +insert` — always check for conflicts first using `gws calendar +agenda`. +- Draft replies with `gws gmail +send` — keep tone professional and concise. + +## Tips +- Always confirm calendar changes with the executive before committing. +- Use `--format table` for quick visual scans of agenda and triage output. +- Check `gws calendar +agenda --week` on Monday mornings for weekly planning. + diff --git a/skills/persona-hr-coordinator/SKILL.md b/skills/persona-hr-coordinator/SKILL.md new file mode 100644 index 00000000..76f27e73 --- /dev/null +++ b/skills/persona-hr-coordinator/SKILL.md @@ -0,0 +1,34 @@ +--- +name: persona-hr-coordinator +version: 1.0.0 +description: "USE WHEN the user needs help with HR workflows — onboarding, announcements, and employee communications." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-calendar", "gws-drive", "gws-chat", "gws-admin"] +--- + +# HR Coordinator + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-drive`, `gws-chat`, `gws-admin` + +USE WHEN the user needs help with HR workflows — onboarding, announcements, and employee communications. + +## Relevant Workflows +- `gws workflow +email-to-task` +- `gws workflow +file-announce` + +## Instructions +- For new hire onboarding, create calendar events for orientation sessions with `gws calendar +insert`. +- Upload onboarding docs to a shared Drive folder with `gws drive +upload`. +- Announce new hires in Chat spaces with `gws workflow +file-announce` to share their profile doc. +- Convert email requests into tracked tasks with `gws workflow +email-to-task`. +- Send bulk announcements with `gws gmail +send` — use clear subject lines. + +## Tips +- Always use `--sanitize` for PII-sensitive operations. +- Create a dedicated 'HR Onboarding' calendar for tracking orientation schedules. +- Use `gws admin` for user account management (creating accounts, resetting passwords). + diff --git a/skills/persona-it-admin/SKILL.md b/skills/persona-it-admin/SKILL.md new file mode 100644 index 00000000..bfd2b6ea --- /dev/null +++ b/skills/persona-it-admin/SKILL.md @@ -0,0 +1,33 @@ +--- +name: persona-it-admin +version: 1.0.0 +description: "USE WHEN the user needs help with IT administration — managing users, monitoring security, and configuring Workspace." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-admin", "gws-gmail", "gws-drive", "gws-calendar"] +--- + +# IT Administrator + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-admin`, `gws-gmail`, `gws-drive`, `gws-calendar` + +USE WHEN the user needs help with IT administration — managing users, monitoring security, and configuring Workspace. + +## Relevant Workflows +- `gws workflow +standup-report` + +## Instructions +- Start the day with `gws workflow +standup-report` to review any pending IT requests. +- Manage user accounts with `gws admin` — create, suspend, or update users. +- Monitor suspicious login activity and review audit logs. +- Configure Drive sharing policies to enforce organizational security. +- Set up group email aliases and distribution lists. + +## Tips +- Use `gws admin` extensively — it covers user management, groups, and org units. +- Always use `--dry-run` before bulk user operations. +- Review `gws auth status` regularly to verify service account permissions. + diff --git a/skills/persona-project-manager/SKILL.md b/skills/persona-project-manager/SKILL.md new file mode 100644 index 00000000..d72cc0f7 --- /dev/null +++ b/skills/persona-project-manager/SKILL.md @@ -0,0 +1,35 @@ +--- +name: persona-project-manager +version: 1.0.0 +description: "USE WHEN the user needs help coordinating projects across Workspace — tracking tasks, scheduling, and sharing documents." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-drive", "gws-sheets", "gws-calendar", "gws-gmail", "gws-chat"] +--- + +# Project Manager + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-drive`, `gws-sheets`, `gws-calendar`, `gws-gmail`, `gws-chat` + +USE WHEN the user needs help coordinating projects across Workspace — tracking tasks, scheduling, and sharing documents. + +## Relevant Workflows +- `gws workflow +standup-report` +- `gws workflow +weekly-digest` +- `gws workflow +file-announce` + +## Instructions +- Start the week with `gws workflow +weekly-digest` for a snapshot of upcoming meetings and unread items. +- Track project status in Sheets using `gws sheets +append` to log updates. +- Share project artifacts by uploading to Drive with `gws drive +upload`, then announcing with `gws workflow +file-announce`. +- Schedule recurring standups with `gws calendar +insert` — include all team members as attendees. +- Send status update emails to stakeholders with `gws gmail +send`. + +## Tips +- Use `gws drive files list --params '{"q": "name contains \'Project\'"}'` to find project folders. +- Pipe triage output through `jq` for filtering by sender or subject. +- Use `--dry-run` before any write operations to preview what will happen. + diff --git a/skills/persona-researcher/SKILL.md b/skills/persona-researcher/SKILL.md new file mode 100644 index 00000000..7830c32a --- /dev/null +++ b/skills/persona-researcher/SKILL.md @@ -0,0 +1,33 @@ +--- +name: persona-researcher +version: 1.0.0 +description: "USE WHEN the user needs help organizing research — managing references, notes, and collaboration." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-drive", "gws-docs", "gws-sheets", "gws-gmail"] +--- + +# Researcher + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-drive`, `gws-docs`, `gws-sheets`, `gws-gmail` + +USE WHEN the user needs help organizing research — managing references, notes, and collaboration. + +## Relevant Workflows +- `gws workflow +file-announce` + +## Instructions +- Organize research papers and notes in Drive folders. +- Write research notes and summaries with `gws docs +write`. +- Track research data in Sheets — use `gws sheets +append` for data logging. +- Share findings with collaborators via `gws workflow +file-announce`. +- Request peer reviews via `gws gmail +send`. + +## Tips +- Use `gws drive files list` with search queries to find specific documents. +- Keep a running log of experiments and findings in a shared Sheet. +- Use `--format csv` when exporting data for analysis tools. + diff --git a/skills/persona-sales-ops/SKILL.md b/skills/persona-sales-ops/SKILL.md new file mode 100644 index 00000000..7202c36f --- /dev/null +++ b/skills/persona-sales-ops/SKILL.md @@ -0,0 +1,35 @@ +--- +name: persona-sales-ops +version: 1.0.0 +description: "USE WHEN the user needs help with sales workflows — tracking deals, scheduling calls, and managing client communications." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-calendar", "gws-sheets", "gws-drive"] +--- + +# Sales Operations + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-sheets`, `gws-drive` + +USE WHEN the user needs help with sales workflows — tracking deals, scheduling calls, and managing client communications. + +## Relevant Workflows +- `gws workflow +meeting-prep` +- `gws workflow +email-to-task` +- `gws workflow +weekly-digest` + +## Instructions +- Prepare for client calls with `gws workflow +meeting-prep` to review attendees and agenda. +- Log deal updates in a tracking spreadsheet with `gws sheets +append`. +- Convert follow-up emails into tasks with `gws workflow +email-to-task`. +- Share proposals by uploading to Drive with `gws drive +upload`. +- Get a weekly sales pipeline summary with `gws workflow +weekly-digest`. + +## Tips +- Use `gws gmail +triage --query 'from:client-domain.com'` to filter client emails. +- Schedule follow-up calls immediately after meetings to maintain momentum. +- Keep all client-facing documents in a dedicated shared Drive folder. + diff --git a/skills/persona-team-lead/SKILL.md b/skills/persona-team-lead/SKILL.md new file mode 100644 index 00000000..959ed361 --- /dev/null +++ b/skills/persona-team-lead/SKILL.md @@ -0,0 +1,36 @@ +--- +name: persona-team-lead +version: 1.0.0 +description: "USE WHEN the user needs help managing a team — standups, task coordination, and team communications." +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-gmail", "gws-chat", "gws-drive", "gws-sheets"] +--- + +# Team Lead + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-calendar`, `gws-gmail`, `gws-chat`, `gws-drive`, `gws-sheets` + +USE WHEN the user needs help managing a team — standups, task coordination, and team communications. + +## Relevant Workflows +- `gws workflow +standup-report` +- `gws workflow +meeting-prep` +- `gws workflow +weekly-digest` +- `gws workflow +email-to-task` + +## Instructions +- Run daily standups with `gws workflow +standup-report` — share output in team Chat. +- Prepare for 1:1s with `gws workflow +meeting-prep`. +- Get weekly snapshots with `gws workflow +weekly-digest`. +- Delegate email action items with `gws workflow +email-to-task`. +- Track team OKRs in a shared Sheet with `gws sheets +append`. + +## Tips +- Use `gws calendar +agenda --week --format table` for weekly team calendar views. +- Pipe standup reports to Chat with `gws chat spaces messages create`. +- Use `--sanitize` for any operations involving sensitive team data. + diff --git a/skills/recipe-audit-drive-sharing/SKILL.md b/skills/recipe-audit-drive-sharing/SKILL.md new file mode 100644 index 00000000..5d2eb8f1 --- /dev/null +++ b/skills/recipe-audit-drive-sharing/SKILL.md @@ -0,0 +1,28 @@ +--- +name: recipe-audit-drive-sharing +version: 1.0.0 +description: "USE WHEN the user needs to check which files are shared externally." +metadata: + openclaw: + category: "recipe" + domain: "security" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Audit External Sharing on Drive + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +USE WHEN the user needs to check which files are shared externally. + +> [!CAUTION] +> Revoking permissions immediately removes access. Confirm with the file owner first. + +## Steps + +1. Search for externally shared files: `gws drive files list --params '{"q": "visibility = '\''anyoneWithLink'\'' or visibility = '\''anyoneCanFind'\''"}'` +2. Check permissions on a specific file: `gws drive permissions list --params '{"fileId": "FILE_ID"}'` +3. Revoke external access if needed: `gws drive permissions delete --params '{"fileId": "FILE_ID", "permissionId": "PERM_ID"}'` + diff --git a/skills/recipe-bulk-download/SKILL.md b/skills/recipe-bulk-download/SKILL.md new file mode 100644 index 00000000..d9d6b966 --- /dev/null +++ b/skills/recipe-bulk-download/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-bulk-download +version: 1.0.0 +description: "USE WHEN the user needs to download multiple files from a Drive folder." +metadata: + openclaw: + category: "recipe" + domain: "documents" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Download Multiple Drive Files + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +USE WHEN the user needs to download multiple files from a Drive folder. + +## Steps + +1. List files in the folder: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json` +2. Download each file: `gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext` +3. For Google Docs format, use export: `gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf` + diff --git a/skills/recipe-cancel-meeting/SKILL.md b/skills/recipe-cancel-meeting/SKILL.md new file mode 100644 index 00000000..d6b2dfc8 --- /dev/null +++ b/skills/recipe-cancel-meeting/SKILL.md @@ -0,0 +1,28 @@ +--- +name: recipe-cancel-meeting +version: 1.0.0 +description: "USE WHEN a meeting needs to be cancelled with notifications to all attendees." +metadata: + openclaw: + category: "recipe" + domain: "meetings" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-gmail"] +--- + +# Cancel a Meeting and Notify Attendees + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail` + +USE WHEN a meeting needs to be cancelled with notifications to all attendees. + +> [!CAUTION] +> The delete command will immediately cancel the event and notify attendees. + +## Steps + +1. Find the meeting: `gws calendar +agenda --format json` and locate the event ID +2. Delete the event (sends cancellation to attendees): `gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}'` +3. Optionally send a follow-up explanation: `gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]'` + diff --git a/skills/recipe-chat-announcement/SKILL.md b/skills/recipe-chat-announcement/SKILL.md new file mode 100644 index 00000000..e6f54c9e --- /dev/null +++ b/skills/recipe-chat-announcement/SKILL.md @@ -0,0 +1,24 @@ +--- +name: recipe-chat-announcement +version: 1.0.0 +description: "USE WHEN the user needs to post a message in a Google Chat space." +metadata: + openclaw: + category: "recipe" + domain: "communications" + requires: + bins: ["gws"] + skills: ["gws-chat"] +--- + +# Post an Announcement to a Chat Space + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-chat` + +USE WHEN the user needs to post a message in a Google Chat space. + +## Steps + +1. List available spaces: `gws chat spaces list --params '{}'` +2. Send the message: `gws chat spaces messages create --params '{"parent": "spaces/SPACE_ID"}' --json '{"text": "📢 Announcement: ..."}'` + diff --git a/skills/recipe-create-chat-space/SKILL.md b/skills/recipe-create-chat-space/SKILL.md new file mode 100644 index 00000000..0eb8daf1 --- /dev/null +++ b/skills/recipe-create-chat-space/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-create-chat-space +version: 1.0.0 +description: "USE WHEN the user needs to create a dedicated Chat space for a team or project." +metadata: + openclaw: + category: "recipe" + domain: "communications" + requires: + bins: ["gws"] + skills: ["gws-chat"] +--- + +# Create a New Chat Space for a Project + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-chat` + +USE WHEN the user needs to create a dedicated Chat space for a team or project. + +## Steps + +1. Create the space: `gws chat spaces create --json '{"displayName": "Project Alpha", "spaceType": "SPACE"}'` +2. Add members: Invite team members to join the space +3. Post welcome message: `gws chat spaces messages create --params '{"parent": "spaces/SPACE_ID"}' --json '{"text": "Welcome to Project Alpha! 👋"}'` + diff --git a/skills/recipe-create-task-from-email/SKILL.md b/skills/recipe-create-task-from-email/SKILL.md new file mode 100644 index 00000000..41ad5ea3 --- /dev/null +++ b/skills/recipe-create-task-from-email/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-create-task-from-email +version: 1.0.0 +description: "USE WHEN the user wants to turn an email into an actionable task." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-workflow"] +--- + +# Convert an Email to a Task + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`, `gws-workflow` + +USE WHEN the user wants to turn an email into an actionable task. + +## Steps + +1. Find the email: `gws gmail +triage --max 5` to see recent messages +2. Get the message ID from the triage output +3. Convert to task: `gws workflow +email-to-task --message-id MSG_ID` +4. Verify the task was created: Check the output for the task ID and title + diff --git a/skills/recipe-daily-standup/SKILL.md b/skills/recipe-daily-standup/SKILL.md new file mode 100644 index 00000000..47ba621d --- /dev/null +++ b/skills/recipe-daily-standup/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-daily-standup +version: 1.0.0 +description: "USE WHEN the user wants a quick morning briefing of today's schedule and tasks." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-workflow"] +--- + +# Run a Daily Standup Report + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-workflow` + +USE WHEN the user wants a quick morning briefing of today's schedule and tasks. + +## Steps + +1. Generate standup report: `gws workflow +standup-report` +2. For table format: `gws workflow +standup-report --format table` +3. Share in team Chat if needed: Copy output and send via `gws chat spaces messages create` + diff --git a/skills/recipe-email-announcement/SKILL.md b/skills/recipe-email-announcement/SKILL.md new file mode 100644 index 00000000..0cbeb7f9 --- /dev/null +++ b/skills/recipe-email-announcement/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-email-announcement +version: 1.0.0 +description: "USE WHEN the user needs to send an announcement email to a distribution list." +metadata: + openclaw: + category: "recipe" + domain: "communications" + requires: + bins: ["gws"] + skills: ["gws-gmail"] +--- + +# Send a Company-Wide Announcement + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` + +USE WHEN the user needs to send an announcement email to a distribution list. + +> [!CAUTION] +> Company-wide emails reach everyone. Double-check recipients and content before sending. + +## Steps + +1. Draft the announcement: `gws gmail +send --to all-company@company.com --subject 'Important Update: [Topic]' --body '...'` + diff --git a/skills/recipe-follow-up-email/SKILL.md b/skills/recipe-follow-up-email/SKILL.md new file mode 100644 index 00000000..418bd04a --- /dev/null +++ b/skills/recipe-follow-up-email/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-follow-up-email +version: 1.0.0 +description: "USE WHEN the user needs to send follow-up notes and action items after a meeting." +metadata: + openclaw: + category: "recipe" + domain: "communications" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-calendar"] +--- + +# Send Follow-Up Emails After a Meeting + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`, `gws-calendar` + +USE WHEN the user needs to send follow-up notes and action items after a meeting. + +## Steps + +1. Get meeting details: `gws workflow +meeting-prep` or `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` +2. Send follow-up to attendees: `gws gmail +send --to attendees@company.com --subject 'Follow-up: [Meeting Title]' --body 'Action items: ...'` +3. Create tasks from action items: `gws workflow +email-to-task --message-id MSG_ID` + diff --git a/skills/recipe-log-data-to-sheet/SKILL.md b/skills/recipe-log-data-to-sheet/SKILL.md new file mode 100644 index 00000000..94cf506f --- /dev/null +++ b/skills/recipe-log-data-to-sheet/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-log-data-to-sheet +version: 1.0.0 +description: "USE WHEN the user needs to append structured data to a spreadsheet." +metadata: + openclaw: + category: "recipe" + domain: "reporting" + requires: + bins: ["gws"] + skills: ["gws-sheets"] +--- + +# Log Data to a Google Sheet + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets` + +USE WHEN the user needs to append structured data to a spreadsheet. + +## Steps + +1. Find the spreadsheet: `gws drive files list --params '{"q": "name = '\''My Tracker'\'' and mimeType = '\''application/vnd.google-apps.spreadsheet'\''"}'` +2. Read existing data: `gws sheets values get --params '{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}'` +3. Append new rows: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '["timestamp", "value1", "value2"]'` + diff --git a/skills/recipe-new-hire-onboarding/SKILL.md b/skills/recipe-new-hire-onboarding/SKILL.md new file mode 100644 index 00000000..e2747d8b --- /dev/null +++ b/skills/recipe-new-hire-onboarding/SKILL.md @@ -0,0 +1,29 @@ +--- +name: recipe-new-hire-onboarding +version: 1.0.0 +description: "USE WHEN a new employee is joining and needs onboarding materials and calendar events." +metadata: + openclaw: + category: "recipe" + domain: "onboarding" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-drive", "gws-gmail", "gws-admin"] +--- + +# Set Up New Hire Onboarding + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-drive`, `gws-gmail`, `gws-admin` + +USE WHEN a new employee is joining and needs onboarding materials and calendar events. + +> [!CAUTION] +> Verify the new hire's email address before creating the account. + +## Steps + +1. Create the user account: `gws admin users insert --json '{"primaryEmail": "newhire@company.com", "name": {"givenName": "First", "familyName": "Last"}, "password": "..."}' --params '{}'` +2. Schedule orientation sessions: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Orientation: [New Hire]", ...}'` +3. Share onboarding docs folder: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "newhire@company.com"}'` +4. Send welcome email: `gws gmail +send --to newhire@company.com --subject 'Welcome aboard!'` + diff --git a/skills/recipe-onboarding-checklist/SKILL.md b/skills/recipe-onboarding-checklist/SKILL.md new file mode 100644 index 00000000..3fba3245 --- /dev/null +++ b/skills/recipe-onboarding-checklist/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-onboarding-checklist +version: 1.0.0 +description: "USE WHEN you need to track onboarding task completion in a spreadsheet." +metadata: + openclaw: + category: "recipe" + domain: "onboarding" + requires: + bins: ["gws"] + skills: ["gws-sheets"] +--- + +# Track Onboarding Progress + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets` + +USE WHEN you need to track onboarding task completion in a spreadsheet. + +## Steps + +1. Find the onboarding tracker: `gws drive files list --params '{"q": "name contains '\''Onboarding Tracker'\''"}'` +2. Append a new row for the hire: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '["New Hire Name", "Start Date", "Pending", "Pending", "Pending"]'` +3. Check current status: `gws sheets values get --params '{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}'` + diff --git a/skills/recipe-organize-drive-folder/SKILL.md b/skills/recipe-organize-drive-folder/SKILL.md new file mode 100644 index 00000000..d79748ce --- /dev/null +++ b/skills/recipe-organize-drive-folder/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-organize-drive-folder +version: 1.0.0 +description: "USE WHEN the user needs to create a folder structure in Drive." +metadata: + openclaw: + category: "recipe" + domain: "documents" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Create and Organize a Drive Folder + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +USE WHEN the user needs to create a folder structure in Drive. + +## Steps + +1. Create the parent folder: `gws drive files create --json '{"name": "Project Folder", "mimeType": "application/vnd.google-apps.folder"}'` +2. Create a subfolder: `gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'` +3. Upload files to the folder: `gws drive +upload myfile.pdf --parent FOLDER_ID` +4. List contents: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}'` + diff --git a/skills/recipe-recurring-meeting/SKILL.md b/skills/recipe-recurring-meeting/SKILL.md new file mode 100644 index 00000000..b5146099 --- /dev/null +++ b/skills/recipe-recurring-meeting/SKILL.md @@ -0,0 +1,27 @@ +--- +name: recipe-recurring-meeting +version: 1.0.0 +description: "USE WHEN the user needs to set up a recurring meeting (standup, weekly sync, etc.)." +metadata: + openclaw: + category: "recipe" + domain: "meetings" + requires: + bins: ["gws"] + skills: ["gws-calendar"] +--- + +# Create a Recurring Team Meeting + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` + +USE WHEN the user needs to set up a recurring meeting (standup, weekly sync, etc.). + +> [!CAUTION] +> Confirm time zone and recurrence rule with the team before creating. + +## Steps + +1. Check existing schedule: `gws calendar +agenda --week --format table` +2. Create recurring event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Team Standup", "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"], "start": {"dateTime": "...", "timeZone": "..."}, "end": {"dateTime": "...", "timeZone": "..."}}'` + diff --git a/skills/recipe-sanitize-response/SKILL.md b/skills/recipe-sanitize-response/SKILL.md new file mode 100644 index 00000000..2c4b671a --- /dev/null +++ b/skills/recipe-sanitize-response/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-sanitize-response +version: 1.0.0 +description: "USE WHEN the user needs to sanitize content for PII or safety before processing." +metadata: + openclaw: + category: "recipe" + domain: "security" + requires: + bins: ["gws"] + skills: ["gws-modelarmor", "gws-gmail", "gws-drive"] +--- + +# Screen API Responses Through Model Armor + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-modelarmor`, `gws-gmail`, `gws-drive` + +USE WHEN the user needs to sanitize content for PII or safety before processing. + +## Steps + +1. Create a sanitize template: See `gws modelarmor +create-template --help` +2. Use the template on API calls: Add `--sanitize TEMPLATE_NAME` to any gws command +3. Example: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}' --sanitize my-template` + diff --git a/skills/recipe-schedule-interview/SKILL.md b/skills/recipe-schedule-interview/SKILL.md new file mode 100644 index 00000000..4bfe9c1f --- /dev/null +++ b/skills/recipe-schedule-interview/SKILL.md @@ -0,0 +1,28 @@ +--- +name: recipe-schedule-interview +version: 1.0.0 +description: "USE WHEN the user needs to schedule an interview with a candidate." +metadata: + openclaw: + category: "recipe" + domain: "hiring" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-gmail"] +--- + +# Schedule a Job Interview + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail` + +USE WHEN the user needs to schedule an interview with a candidate. + +> [!CAUTION] +> Confirm the interview time with the interviewer before sending the invitation. + +## Steps + +1. Check interviewer availability: `gws calendar +agenda --days 5 --format table` +2. Create the interview event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Interview: [Candidate]", "start": {"dateTime": "..."}, "end": {"dateTime": "..."}, "attendees": [{"email": "interviewer@company.com"}, {"email": "candidate@email.com"}]}'` +3. Send confirmation email: `gws gmail +send --to candidate@email.com --subject 'Interview Confirmation' --body 'Your interview has been scheduled...'` + diff --git a/skills/recipe-share-document/SKILL.md b/skills/recipe-share-document/SKILL.md new file mode 100644 index 00000000..ec17aced --- /dev/null +++ b/skills/recipe-share-document/SKILL.md @@ -0,0 +1,28 @@ +--- +name: recipe-share-document +version: 1.0.0 +description: "USE WHEN the user needs to share a Drive document with one or more people." +metadata: + openclaw: + category: "recipe" + domain: "documents" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Share a Document with Specific People + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +USE WHEN the user needs to share a Drive document with one or more people. + +> [!CAUTION] +> Choose the correct role (reader, writer, commenter) for the intended access level. + +## Steps + +1. Find the document: `gws drive files list --params '{"q": "name = '\''Document Name'\''"}'` +2. Share with a user: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "user@company.com"}'` +3. Verify permissions: `gws drive permissions list --params '{"fileId": "FILE_ID"}'` + diff --git a/skills/recipe-share-job-posting/SKILL.md b/skills/recipe-share-job-posting/SKILL.md new file mode 100644 index 00000000..cca5e71c --- /dev/null +++ b/skills/recipe-share-job-posting/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-share-job-posting +version: 1.0.0 +description: "USE WHEN the user needs to distribute a job posting internally." +metadata: + openclaw: + category: "recipe" + domain: "hiring" + requires: + bins: ["gws"] + skills: ["gws-drive", "gws-chat", "gws-gmail"] +--- + +# Share a Job Posting with Team + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-chat`, `gws-gmail` + +USE WHEN the user needs to distribute a job posting internally. + +## Steps + +1. Upload the job description to Drive: `gws drive +upload job-description.pdf` +2. Announce in the team Chat space: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID --message 'New opening: [Position]'` +3. Email to hiring managers: `gws gmail +send --to hiring-team@company.com --subject 'New Job Posting: [Position]'` + diff --git a/skills/recipe-upload-and-share/SKILL.md b/skills/recipe-upload-and-share/SKILL.md new file mode 100644 index 00000000..14d17483 --- /dev/null +++ b/skills/recipe-upload-and-share/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-upload-and-share +version: 1.0.0 +description: "USE WHEN the user needs to upload a file to Drive and share it with someone." +metadata: + openclaw: + category: "recipe" + domain: "documents" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Upload a File and Share It + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +USE WHEN the user needs to upload a file to Drive and share it with someone. + +## Steps + +1. Upload the file: `gws drive +upload report.pdf` +2. Note the file ID from the upload output +3. Share with a user: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "user@company.com"}'` +4. Optionally announce in Chat: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID` + diff --git a/skills/recipe-weekly-status-report/SKILL.md b/skills/recipe-weekly-status-report/SKILL.md new file mode 100644 index 00000000..45829c07 --- /dev/null +++ b/skills/recipe-weekly-status-report/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-weekly-status-report +version: 1.0.0 +description: "USE WHEN the user needs a summary of the week's activity." +metadata: + openclaw: + category: "recipe" + domain: "reporting" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-gmail", "gws-sheets"] +--- + +# Generate a Weekly Status Report + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail`, `gws-sheets` + +USE WHEN the user needs a summary of the week's activity. + +## Steps + +1. Get the weekly digest: `gws workflow +weekly-digest --format json` +2. Get today's standup: `gws workflow +standup-report --format json` +3. Optionally log to a Sheet: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Reports' --values '["Week of ...", meetings_count, unread_count]'` + diff --git a/skills/registry/personas.yaml b/skills/registry/personas.yaml new file mode 100644 index 00000000..bb87a7a7 --- /dev/null +++ b/skills/registry/personas.yaml @@ -0,0 +1,171 @@ +# Persona Packs — Role-based skill bundles for AI agents +# +# Each persona defines a role-based context with: +# - name: unique id (used as directory name: persona-{name}) +# - title: human-readable name +# - description: when to use this persona +# - services: which gws services this persona commonly uses +# - workflows: which workflow commands are relevant +# - instructions: step-by-step guidance for agents adopting this role +# - tips: useful reminders + +personas: + - name: exec-assistant + title: Executive Assistant + description: "USE WHEN the user needs help managing an executive's schedule, inbox, and communications." + services: [gmail, calendar, drive, chat] + workflows: ["+standup-report", "+meeting-prep", "+weekly-digest"] + instructions: + - "Start each day with `gws workflow +standup-report` to get the executive's agenda and open tasks." + - "Before each meeting, run `gws workflow +meeting-prep` to see attendees, description, and linked docs." + - "Triage the inbox with `gws gmail +triage --max 10` — prioritize emails from direct reports and leadership." + - "Schedule meetings with `gws calendar +insert` — always check for conflicts first using `gws calendar +agenda`." + - "Draft replies with `gws gmail +send` — keep tone professional and concise." + tips: + - "Always confirm calendar changes with the executive before committing." + - "Use `--format table` for quick visual scans of agenda and triage output." + - "Check `gws calendar +agenda --week` on Monday mornings for weekly planning." + + - name: project-manager + title: Project Manager + description: "USE WHEN the user needs help coordinating projects across Workspace — tracking tasks, scheduling, and sharing documents." + services: [drive, sheets, calendar, gmail, chat] + workflows: ["+standup-report", "+weekly-digest", "+file-announce"] + instructions: + - "Start the week with `gws workflow +weekly-digest` for a snapshot of upcoming meetings and unread items." + - "Track project status in Sheets using `gws sheets +append` to log updates." + - "Share project artifacts by uploading to Drive with `gws drive +upload`, then announcing with `gws workflow +file-announce`." + - "Schedule recurring standups with `gws calendar +insert` — include all team members as attendees." + - "Send status update emails to stakeholders with `gws gmail +send`." + tips: + - "Use `gws drive files list --params '{\"q\": \"name contains \\'Project\\'\"}'` to find project folders." + - "Pipe triage output through `jq` for filtering by sender or subject." + - "Use `--dry-run` before any write operations to preview what will happen." + + - name: hr-coordinator + title: HR Coordinator + description: "USE WHEN the user needs help with HR workflows — onboarding, announcements, and employee communications." + services: [gmail, calendar, drive, chat, admin] + workflows: ["+email-to-task", "+file-announce"] + instructions: + - "For new hire onboarding, create calendar events for orientation sessions with `gws calendar +insert`." + - "Upload onboarding docs to a shared Drive folder with `gws drive +upload`." + - "Announce new hires in Chat spaces with `gws workflow +file-announce` to share their profile doc." + - "Convert email requests into tracked tasks with `gws workflow +email-to-task`." + - "Send bulk announcements with `gws gmail +send` — use clear subject lines." + tips: + - "Always use `--sanitize` for PII-sensitive operations." + - "Create a dedicated 'HR Onboarding' calendar for tracking orientation schedules." + - "Use `gws admin` for user account management (creating accounts, resetting passwords)." + + - name: sales-ops + title: Sales Operations + description: "USE WHEN the user needs help with sales workflows — tracking deals, scheduling calls, and managing client communications." + services: [gmail, calendar, sheets, drive] + workflows: ["+meeting-prep", "+email-to-task", "+weekly-digest"] + instructions: + - "Prepare for client calls with `gws workflow +meeting-prep` to review attendees and agenda." + - "Log deal updates in a tracking spreadsheet with `gws sheets +append`." + - "Convert follow-up emails into tasks with `gws workflow +email-to-task`." + - "Share proposals by uploading to Drive with `gws drive +upload`." + - "Get a weekly sales pipeline summary with `gws workflow +weekly-digest`." + tips: + - "Use `gws gmail +triage --query 'from:client-domain.com'` to filter client emails." + - "Schedule follow-up calls immediately after meetings to maintain momentum." + - "Keep all client-facing documents in a dedicated shared Drive folder." + + - name: it-admin + title: IT Administrator + description: "USE WHEN the user needs help with IT administration — managing users, monitoring security, and configuring Workspace." + services: [admin, gmail, drive, calendar] + workflows: ["+standup-report"] + instructions: + - "Start the day with `gws workflow +standup-report` to review any pending IT requests." + - "Manage user accounts with `gws admin` — create, suspend, or update users." + - "Monitor suspicious login activity and review audit logs." + - "Configure Drive sharing policies to enforce organizational security." + - "Set up group email aliases and distribution lists." + tips: + - "Use `gws admin` extensively — it covers user management, groups, and org units." + - "Always use `--dry-run` before bulk user operations." + - "Review `gws auth status` regularly to verify service account permissions." + + - name: content-creator + title: Content Creator + description: "USE WHEN the user needs help creating, organizing, and distributing content across Workspace." + services: [docs, drive, gmail, chat, slides] + workflows: ["+file-announce"] + instructions: + - "Draft content in Google Docs with `gws docs +write`." + - "Organize content assets in Drive folders — use `gws drive files list` to browse." + - "Share finished content by announcing in Chat with `gws workflow +file-announce`." + - "Send content review requests via email with `gws gmail +send`." + - "Upload media assets to Drive with `gws drive +upload`." + tips: + - "Use `gws docs +write` for quick content updates — it handles the Docs API formatting." + - "Keep a 'Content Calendar' in a shared Sheet for tracking publication schedules." + - "Use `--format yaml` for human-readable output when debugging API responses." + + - name: customer-support + title: Customer Support Agent + description: "USE WHEN the user needs help managing customer support workflows — tracking tickets, sending responses, and escalating issues." + services: [gmail, sheets, chat, calendar] + workflows: ["+email-to-task", "+standup-report"] + instructions: + - "Triage the support inbox with `gws gmail +triage --query 'label:support'`." + - "Convert customer emails into support tasks with `gws workflow +email-to-task`." + - "Log ticket status updates in a tracking sheet with `gws sheets +append`." + - "Escalate urgent issues to the team Chat space." + - "Schedule follow-up calls with customers using `gws calendar +insert`." + tips: + - "Use `gws gmail +triage --labels` to see email categories at a glance." + - "Set up Gmail filters for auto-labeling support requests." + - "Use `--format table` for quick status dashboard views." + + - name: event-coordinator + title: Event Coordinator + description: "USE WHEN the user needs help planning and managing events — scheduling, invitations, and logistics." + services: [calendar, gmail, drive, chat, sheets] + workflows: ["+meeting-prep", "+file-announce", "+weekly-digest"] + instructions: + - "Create event calendar entries with `gws calendar +insert` — include location and attendee lists." + - "Prepare event materials and upload to Drive with `gws drive +upload`." + - "Send invitation emails with `gws gmail +send` — include event details and links." + - "Announce updates in Chat spaces with `gws workflow +file-announce`." + - "Track RSVPs and logistics in Sheets with `gws sheets +append`." + tips: + - "Use `gws calendar +agenda --days 30` for long-range event planning." + - "Create a dedicated calendar for each major event series." + - "Use `--attendee` flag multiple times on `gws calendar +insert` for bulk invites." + + - name: team-lead + title: Team Lead + description: "USE WHEN the user needs help managing a team — standups, task coordination, and team communications." + services: [calendar, gmail, chat, drive, sheets] + workflows: ["+standup-report", "+meeting-prep", "+weekly-digest", "+email-to-task"] + instructions: + - "Run daily standups with `gws workflow +standup-report` — share output in team Chat." + - "Prepare for 1:1s with `gws workflow +meeting-prep`." + - "Get weekly snapshots with `gws workflow +weekly-digest`." + - "Delegate email action items with `gws workflow +email-to-task`." + - "Track team OKRs in a shared Sheet with `gws sheets +append`." + tips: + - "Use `gws calendar +agenda --week --format table` for weekly team calendar views." + - "Pipe standup reports to Chat with `gws chat spaces messages create`." + - "Use `--sanitize` for any operations involving sensitive team data." + + - name: researcher + title: Researcher + description: "USE WHEN the user needs help organizing research — managing references, notes, and collaboration." + services: [drive, docs, sheets, gmail] + workflows: ["+file-announce"] + instructions: + - "Organize research papers and notes in Drive folders." + - "Write research notes and summaries with `gws docs +write`." + - "Track research data in Sheets — use `gws sheets +append` for data logging." + - "Share findings with collaborators via `gws workflow +file-announce`." + - "Request peer reviews via `gws gmail +send`." + tips: + - "Use `gws drive files list` with search queries to find specific documents." + - "Keep a running log of experiments and findings in a shared Sheet." + - "Use `--format csv` when exporting data for analysis tools." diff --git a/skills/registry/recipes.yaml b/skills/registry/recipes.yaml new file mode 100644 index 00000000..fe0d341a --- /dev/null +++ b/skills/registry/recipes.yaml @@ -0,0 +1,32083 @@ +# Domain Recipes + +recipes: +- name: schedule-interview + title: Schedule a Job Interview + description: USE WHEN the user needs to schedule an interview with a candidate. + category: hiring + services: + - calendar + - gmail + steps: + - 'Check interviewer availability: `gws calendar +agenda --days 5 --format table`' + - 'Create the interview event: `gws calendar events insert --params ''{"calendarId": "primary"}'' --json ''{"summary": "Interview: [Candidate]", "start": {"dateTime": "..."}, "end": {"dateTime": "..."}, "attendees": [{"email": "interviewer@company.com"}, {"email": "candidate@email.com"}]}''`' + - 'Send confirmation email: `gws gmail +send --to candidate@email.com --subject ''Interview Confirmation'' --body ''Your interview has been scheduled...''`' + caution: Confirm the interview time with the interviewer before sending the invitation. +- name: share-job-posting + title: Share a Job Posting with Team + description: USE WHEN the user needs to distribute a job posting internally. + category: hiring + services: + - drive + - chat + - gmail + steps: + - 'Upload the job description to Drive: `gws drive +upload job-description.pdf`' + - 'Announce in the team Chat space: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID --message ''New opening: [Position]''`' + - 'Email to hiring managers: `gws gmail +send --to hiring-team@company.com --subject ''New Job Posting: [Position]''`' +- name: new-hire-onboarding + title: Set Up New Hire Onboarding + description: USE WHEN a new employee is joining and needs onboarding materials and calendar events. + category: onboarding + services: + - calendar + - drive + - gmail + - admin + steps: + - 'Create the user account: `gws admin users insert --json ''{"primaryEmail": "newhire@company.com", "name": {"givenName": "First", "familyName": "Last"}, "password": "..."}'' --params ''{}''`' + - 'Schedule orientation sessions: `gws calendar events insert --params ''{"calendarId": "primary"}'' --json ''{"summary": "Orientation: [New Hire]", ...}''`' + - 'Share onboarding docs folder: `gws drive permissions create --params ''{"fileId": "FOLDER_ID"}'' --json ''{"role": "reader", "type": "user", "emailAddress": "newhire@company.com"}''`' + - 'Send welcome email: `gws gmail +send --to newhire@company.com --subject ''Welcome aboard!''`' + caution: Verify the new hire's email address before creating the account. +- name: onboarding-checklist + title: Track Onboarding Progress + description: USE WHEN you need to track onboarding task completion in a spreadsheet. + category: onboarding + services: + - sheets + steps: + - 'Find the onboarding tracker: `gws drive files list --params ''{"q": "name contains ''\''''Onboarding Tracker''\''''"}''`' + - 'Append a new row for the hire: `gws sheets +append --spreadsheet-id SHEET_ID --range ''Sheet1'' --values ''["New Hire Name", "Start Date", "Pending", "Pending", "Pending"]''`' + - 'Check current status: `gws sheets values get --params ''{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}''`' +- name: recurring-meeting + title: Create a Recurring Team Meeting + description: USE WHEN the user needs to set up a recurring meeting (standup, weekly sync, etc.). + category: meetings + services: + - calendar + steps: + - 'Check existing schedule: `gws calendar +agenda --week --format table`' + - 'Create recurring event: `gws calendar events insert --params ''{"calendarId": "primary"}'' --json ''{"summary": "Team Standup", "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"], "start": {"dateTime": "...", "timeZone": "..."}, "end": {"dateTime": "...", "timeZone": "..."}}''`' + caution: Confirm time zone and recurrence rule with the team before creating. +- name: cancel-meeting + title: Cancel a Meeting and Notify Attendees + description: USE WHEN a meeting needs to be cancelled with notifications to all attendees. + category: meetings + services: + - calendar + - gmail + steps: + - 'Find the meeting: `gws calendar +agenda --format json` and locate the event ID' + - 'Delete the event (sends cancellation to attendees): `gws calendar events delete --params ''{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}''`' + - 'Optionally send a follow-up explanation: `gws gmail +send --to attendees --subject ''Meeting Cancelled: [Title]''`' + caution: The delete command will immediately cancel the event and notify attendees. +- name: share-document + title: Share a Document with Specific People + description: USE WHEN the user needs to share a Drive document with one or more people. + category: documents + services: + - drive + steps: + - 'Find the document: `gws drive files list --params ''{"q": "name = ''\''''Document Name''\''''"}''`' + - 'Share with a user: `gws drive permissions create --params ''{"fileId": "FILE_ID"}'' --json ''{"role": "writer", "type": "user", "emailAddress": "user@company.com"}''`' + - 'Verify permissions: `gws drive permissions list --params ''{"fileId": "FILE_ID"}''`' + caution: Choose the correct role (reader, writer, commenter) for the intended access level. +- name: organize-drive-folder + title: Create and Organize a Drive Folder + description: USE WHEN the user needs to create a folder structure in Drive. + category: documents + services: + - drive + steps: + - 'Create the parent folder: `gws drive files create --json ''{"name": "Project Folder", "mimeType": "application/vnd.google-apps.folder"}''`' + - 'Create a subfolder: `gws drive files create --json ''{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}''`' + - 'Upload files to the folder: `gws drive +upload myfile.pdf --parent FOLDER_ID`' + - 'List contents: `gws drive files list --params ''{"q": "''\''''FOLDER_ID''\'''' in parents"}''`' +- name: email-announcement + title: Send a Company-Wide Announcement + description: USE WHEN the user needs to send an announcement email to a distribution list. + category: communications + services: + - gmail + steps: + - 'Draft the announcement: `gws gmail +send --to all-company@company.com --subject ''Important Update: [Topic]'' --body ''...''`' + caution: Company-wide emails reach everyone. Double-check recipients and content before sending. +- name: follow-up-email + title: Send Follow-Up Emails After a Meeting + description: USE WHEN the user needs to send follow-up notes and action items after a meeting. + category: communications + services: + - gmail + - calendar + steps: + - 'Get meeting details: `gws workflow +meeting-prep` or `gws calendar events get --params ''{"calendarId": "primary", "eventId": "EVENT_ID"}''`' + - 'Send follow-up to attendees: `gws gmail +send --to attendees@company.com --subject ''Follow-up: [Meeting Title]'' --body ''Action items: ...''`' + - 'Create tasks from action items: `gws workflow +email-to-task --message-id MSG_ID`' +- name: chat-announcement + title: Post an Announcement to a Chat Space + description: USE WHEN the user needs to post a message in a Google Chat space. + category: communications + services: + - chat + steps: + - 'List available spaces: `gws chat spaces list --params ''{}''`' + - 'Send the message: `gws chat spaces messages create --params ''{"parent": "spaces/SPACE_ID"}'' --json ''{"text": "📢 Announcement: ..."}''`' +- name: create-chat-space + title: Create a New Chat Space for a Project + description: USE WHEN the user needs to create a dedicated Chat space for a team or project. + category: communications + services: + - chat + steps: + - 'Create the space: `gws chat spaces create --json ''{"displayName": "Project Alpha", "spaceType": "SPACE"}''`' + - 'Add members: Invite team members to join the space' + - 'Post welcome message: `gws chat spaces messages create --params ''{"parent": "spaces/SPACE_ID"}'' --json ''{"text": "Welcome to Project Alpha! 👋"}''`' +- name: weekly-status-report + title: Generate a Weekly Status Report + description: USE WHEN the user needs a summary of the week's activity. + category: reporting + services: + - calendar + - gmail + - sheets + steps: + - 'Get the weekly digest: `gws workflow +weekly-digest --format json`' + - 'Get today''s standup: `gws workflow +standup-report --format json`' + - 'Optionally log to a Sheet: `gws sheets +append --spreadsheet-id SHEET_ID --range ''Reports'' --values ''["Week of ...", meetings_count, unread_count]''`' +- name: log-data-to-sheet + title: Log Data to a Google Sheet + description: USE WHEN the user needs to append structured data to a spreadsheet. + category: reporting + services: + - sheets + steps: + - 'Find the spreadsheet: `gws drive files list --params ''{"q": "name = ''\''''My Tracker''\'''' and mimeType = ''\''''application/vnd.google-apps.spreadsheet''\''''"}''`' + - 'Read existing data: `gws sheets values get --params ''{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}''`' + - 'Append new rows: `gws sheets +append --spreadsheet-id SHEET_ID --range ''Sheet1'' --values ''["timestamp", "value1", "value2"]''`' +- name: audit-drive-sharing + title: Audit External Sharing on Drive + description: USE WHEN the user needs to check which files are shared externally. + category: security + services: + - drive + steps: + - 'Search for externally shared files: `gws drive files list --params ''{"q": "visibility = ''\''''anyoneWithLink''\'''' or visibility = ''\''''anyoneCanFind''\''''"}''`' + - 'Check permissions on a specific file: `gws drive permissions list --params ''{"fileId": "FILE_ID"}''`' + - 'Revoke external access if needed: `gws drive permissions delete --params ''{"fileId": "FILE_ID", "permissionId": "PERM_ID"}''`' + caution: Revoking permissions immediately removes access. Confirm with the file owner first. +- name: sanitize-response + title: Screen API Responses Through Model Armor + description: USE WHEN the user needs to sanitize content for PII or safety before processing. + category: security + services: + - modelarmor + - gmail + - drive + steps: + - 'Create a sanitize template: See `gws modelarmor +create-template --help`' + - 'Use the template on API calls: Add `--sanitize TEMPLATE_NAME` to any gws command' + - 'Example: `gws gmail users messages get --params ''{"userId": "me", "id": "MSG_ID"}'' --sanitize my-template`' +- name: upload-and-share + title: Upload a File and Share It + description: USE WHEN the user needs to upload a file to Drive and share it with someone. + category: documents + services: + - drive + steps: + - 'Upload the file: `gws drive +upload report.pdf`' + - Note the file ID from the upload output + - 'Share with a user: `gws drive permissions create --params ''{"fileId": "FILE_ID"}'' --json ''{"role": "reader", "type": "user", "emailAddress": "user@company.com"}''`' + - 'Optionally announce in Chat: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID`' +- name: bulk-download + title: Download Multiple Drive Files + description: USE WHEN the user needs to download multiple files from a Drive folder. + category: documents + services: + - drive + steps: + - 'List files in the folder: `gws drive files list --params ''{"q": "''\''''FOLDER_ID''\'''' in parents"}'' --format json`' + - 'Download each file: `gws drive files get --params ''{"fileId": "FILE_ID", "alt": "media"}'' -o filename.ext`' + - 'For Google Docs format, use export: `gws drive files export --params ''{"fileId": "FILE_ID", "mimeType": "application/pdf"}'' -o document.pdf`' +- name: create-task-from-email + title: Convert an Email to a Task + description: USE WHEN the user wants to turn an email into an actionable task. + category: productivity + services: + - gmail + - workflow + steps: + - 'Find the email: `gws gmail +triage --max 5` to see recent messages' + - Get the message ID from the triage output + - 'Convert to task: `gws workflow +email-to-task --message-id MSG_ID`' + - 'Verify the task was created: Check the output for the task ID and title' +- name: daily-standup + title: Run a Daily Standup Report + description: USE WHEN the user wants a quick morning briefing of today's schedule and tasks. + category: productivity + services: + - workflow + steps: + - 'Generate standup report: `gws workflow +standup-report`' + - 'For table format: `gws workflow +standup-report --format table`' + - 'Share in team Chat if needed: Copy output and send via `gws chat spaces messages create`' +- name: sales-audit-weekly-lead-2 + title: Audit Weekly Lead (sales) + description: Standard workflow to audit weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly lead requests. + - Execute audit procedure on the designated lead. + - Notify stakeholders via email. +- name: sales-audit-monthly-lead-3 + title: Audit Monthly Lead (sales) + description: Standard workflow to audit monthly lead within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly lead records. + - Review and audit the monthly lead. + - Send a status update to the sales team chat space. +- name: sales-audit-urgent-lead-4 + title: Audit Urgent Lead (sales) + description: Standard workflow to audit urgent lead within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent lead data. + - Apply sales policies to audit the lead. + - Log completion in the master tracking spreadsheet. +- name: sales-audit-secure-lead-5 + title: Audit Secure Lead (sales) + description: Standard workflow to audit secure lead within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure lead requests. + - Execute audit procedure on the designated lead. + - Archive results in a secure Drive folder. +- name: sales-audit-weekly-opportunity-6 + title: Audit Weekly Opportunity (sales) + description: Standard workflow to audit weekly opportunity within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly opportunity records. + - Review and audit the weekly opportunity. + - Notify stakeholders via email. +- name: sales-audit-monthly-opportunity-7 + title: Audit Monthly Opportunity (sales) + description: Standard workflow to audit monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly opportunity data. + - Apply sales policies to audit the opportunity. + - Send a status update to the sales team chat space. +- name: sales-audit-urgent-opportunity-8 + title: Audit Urgent Opportunity (sales) + description: Standard workflow to audit urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent opportunity requests. + - Execute audit procedure on the designated opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-audit-secure-opportunity-9 + title: Audit Secure Opportunity (sales) + description: Standard workflow to audit secure opportunity within the sales department. + category: sales + services: + - drive + steps: + - Search for secure opportunity records. + - Review and audit the secure opportunity. + - Archive results in a secure Drive folder. +- name: sales-audit-weekly-account-10 + title: Audit Weekly Account (sales) + description: Standard workflow to audit weekly account within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly account data. + - Apply sales policies to audit the account. + - Notify stakeholders via email. +- name: sales-audit-monthly-account-11 + title: Audit Monthly Account (sales) + description: Standard workflow to audit monthly account within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly account requests. + - Execute audit procedure on the designated account. + - Send a status update to the sales team chat space. +- name: sales-audit-urgent-account-12 + title: Audit Urgent Account (sales) + description: Standard workflow to audit urgent account within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent account records. + - Review and audit the urgent account. + - Log completion in the master tracking spreadsheet. +- name: sales-audit-secure-account-13 + title: Audit Secure Account (sales) + description: Standard workflow to audit secure account within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure account data. + - Apply sales policies to audit the account. + - Archive results in a secure Drive folder. +- name: sales-audit-weekly-contract-14 + title: Audit Weekly Contract (sales) + description: Standard workflow to audit weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly contract requests. + - Execute audit procedure on the designated contract. + - Notify stakeholders via email. +- name: sales-audit-monthly-contract-15 + title: Audit Monthly Contract (sales) + description: Standard workflow to audit monthly contract within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly contract records. + - Review and audit the monthly contract. + - Send a status update to the sales team chat space. +- name: sales-audit-urgent-contract-16 + title: Audit Urgent Contract (sales) + description: Standard workflow to audit urgent contract within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent contract data. + - Apply sales policies to audit the contract. + - Log completion in the master tracking spreadsheet. +- name: sales-audit-secure-contract-17 + title: Audit Secure Contract (sales) + description: Standard workflow to audit secure contract within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure contract requests. + - Execute audit procedure on the designated contract. + - Archive results in a secure Drive folder. +- name: sales-audit-weekly-quote-18 + title: Audit Weekly Quote (sales) + description: Standard workflow to audit weekly quote within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly quote records. + - Review and audit the weekly quote. + - Notify stakeholders via email. +- name: sales-audit-monthly-quote-19 + title: Audit Monthly Quote (sales) + description: Standard workflow to audit monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly quote data. + - Apply sales policies to audit the quote. + - Send a status update to the sales team chat space. +- name: sales-audit-urgent-quote-20 + title: Audit Urgent Quote (sales) + description: Standard workflow to audit urgent quote within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent quote requests. + - Execute audit procedure on the designated quote. + - Log completion in the master tracking spreadsheet. +- name: sales-audit-secure-quote-21 + title: Audit Secure Quote (sales) + description: Standard workflow to audit secure quote within the sales department. + category: sales + services: + - drive + steps: + - Search for secure quote records. + - Review and audit the secure quote. + - Archive results in a secure Drive folder. +- name: sales-onboard-weekly-lead-22 + title: Onboard Weekly Lead (sales) + description: Standard workflow to onboard weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly lead data. + - Apply sales policies to onboard the lead. + - Notify stakeholders via email. +- name: sales-onboard-monthly-lead-23 + title: Onboard Monthly Lead (sales) + description: Standard workflow to onboard monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly lead requests. + - Execute onboard procedure on the designated lead. + - Send a status update to the sales team chat space. +- name: sales-onboard-urgent-lead-24 + title: Onboard Urgent Lead (sales) + description: Standard workflow to onboard urgent lead within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent lead records. + - Review and onboard the urgent lead. + - Log completion in the master tracking spreadsheet. +- name: sales-onboard-secure-lead-25 + title: Onboard Secure Lead (sales) + description: Standard workflow to onboard secure lead within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure lead data. + - Apply sales policies to onboard the lead. + - Archive results in a secure Drive folder. +- name: sales-onboard-weekly-opportunity-26 + title: Onboard Weekly Opportunity (sales) + description: Standard workflow to onboard weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly opportunity requests. + - Execute onboard procedure on the designated opportunity. + - Notify stakeholders via email. +- name: sales-onboard-monthly-opportunity-27 + title: Onboard Monthly Opportunity (sales) + description: Standard workflow to onboard monthly opportunity within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly opportunity records. + - Review and onboard the monthly opportunity. + - Send a status update to the sales team chat space. +- name: sales-onboard-urgent-opportunity-28 + title: Onboard Urgent Opportunity (sales) + description: Standard workflow to onboard urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent opportunity data. + - Apply sales policies to onboard the opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-onboard-secure-opportunity-29 + title: Onboard Secure Opportunity (sales) + description: Standard workflow to onboard secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure opportunity requests. + - Execute onboard procedure on the designated opportunity. + - Archive results in a secure Drive folder. +- name: sales-onboard-weekly-account-30 + title: Onboard Weekly Account (sales) + description: Standard workflow to onboard weekly account within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly account records. + - Review and onboard the weekly account. + - Notify stakeholders via email. +- name: sales-onboard-monthly-account-31 + title: Onboard Monthly Account (sales) + description: Standard workflow to onboard monthly account within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly account data. + - Apply sales policies to onboard the account. + - Send a status update to the sales team chat space. +- name: sales-onboard-urgent-account-32 + title: Onboard Urgent Account (sales) + description: Standard workflow to onboard urgent account within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent account requests. + - Execute onboard procedure on the designated account. + - Log completion in the master tracking spreadsheet. +- name: sales-onboard-secure-account-33 + title: Onboard Secure Account (sales) + description: Standard workflow to onboard secure account within the sales department. + category: sales + services: + - drive + steps: + - Search for secure account records. + - Review and onboard the secure account. + - Archive results in a secure Drive folder. +- name: sales-onboard-weekly-contract-34 + title: Onboard Weekly Contract (sales) + description: Standard workflow to onboard weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly contract data. + - Apply sales policies to onboard the contract. + - Notify stakeholders via email. +- name: sales-onboard-monthly-contract-35 + title: Onboard Monthly Contract (sales) + description: Standard workflow to onboard monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly contract requests. + - Execute onboard procedure on the designated contract. + - Send a status update to the sales team chat space. +- name: sales-onboard-urgent-contract-36 + title: Onboard Urgent Contract (sales) + description: Standard workflow to onboard urgent contract within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent contract records. + - Review and onboard the urgent contract. + - Log completion in the master tracking spreadsheet. +- name: sales-onboard-secure-contract-37 + title: Onboard Secure Contract (sales) + description: Standard workflow to onboard secure contract within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure contract data. + - Apply sales policies to onboard the contract. + - Archive results in a secure Drive folder. +- name: sales-onboard-weekly-quote-38 + title: Onboard Weekly Quote (sales) + description: Standard workflow to onboard weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly quote requests. + - Execute onboard procedure on the designated quote. + - Notify stakeholders via email. +- name: sales-onboard-monthly-quote-39 + title: Onboard Monthly Quote (sales) + description: Standard workflow to onboard monthly quote within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly quote records. + - Review and onboard the monthly quote. + - Send a status update to the sales team chat space. +- name: sales-onboard-urgent-quote-40 + title: Onboard Urgent Quote (sales) + description: Standard workflow to onboard urgent quote within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent quote data. + - Apply sales policies to onboard the quote. + - Log completion in the master tracking spreadsheet. +- name: sales-onboard-secure-quote-41 + title: Onboard Secure Quote (sales) + description: Standard workflow to onboard secure quote within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure quote requests. + - Execute onboard procedure on the designated quote. + - Archive results in a secure Drive folder. +- name: sales-review-weekly-lead-42 + title: Review Weekly Lead (sales) + description: Standard workflow to review weekly lead within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly lead records. + - Review and review the weekly lead. + - Notify stakeholders via email. +- name: sales-review-monthly-lead-43 + title: Review Monthly Lead (sales) + description: Standard workflow to review monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly lead data. + - Apply sales policies to review the lead. + - Send a status update to the sales team chat space. +- name: sales-review-urgent-lead-44 + title: Review Urgent Lead (sales) + description: Standard workflow to review urgent lead within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent lead requests. + - Execute review procedure on the designated lead. + - Log completion in the master tracking spreadsheet. +- name: sales-review-secure-lead-45 + title: Review Secure Lead (sales) + description: Standard workflow to review secure lead within the sales department. + category: sales + services: + - drive + steps: + - Search for secure lead records. + - Review and review the secure lead. + - Archive results in a secure Drive folder. +- name: sales-review-weekly-opportunity-46 + title: Review Weekly Opportunity (sales) + description: Standard workflow to review weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly opportunity data. + - Apply sales policies to review the opportunity. + - Notify stakeholders via email. +- name: sales-review-monthly-opportunity-47 + title: Review Monthly Opportunity (sales) + description: Standard workflow to review monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly opportunity requests. + - Execute review procedure on the designated opportunity. + - Send a status update to the sales team chat space. +- name: sales-review-urgent-opportunity-48 + title: Review Urgent Opportunity (sales) + description: Standard workflow to review urgent opportunity within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent opportunity records. + - Review and review the urgent opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-review-secure-opportunity-49 + title: Review Secure Opportunity (sales) + description: Standard workflow to review secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure opportunity data. + - Apply sales policies to review the opportunity. + - Archive results in a secure Drive folder. +- name: sales-review-weekly-account-50 + title: Review Weekly Account (sales) + description: Standard workflow to review weekly account within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly account requests. + - Execute review procedure on the designated account. + - Notify stakeholders via email. +- name: sales-review-monthly-account-51 + title: Review Monthly Account (sales) + description: Standard workflow to review monthly account within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly account records. + - Review and review the monthly account. + - Send a status update to the sales team chat space. +- name: sales-review-urgent-account-52 + title: Review Urgent Account (sales) + description: Standard workflow to review urgent account within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent account data. + - Apply sales policies to review the account. + - Log completion in the master tracking spreadsheet. +- name: sales-review-secure-account-53 + title: Review Secure Account (sales) + description: Standard workflow to review secure account within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure account requests. + - Execute review procedure on the designated account. + - Archive results in a secure Drive folder. +- name: sales-review-weekly-contract-54 + title: Review Weekly Contract (sales) + description: Standard workflow to review weekly contract within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly contract records. + - Review and review the weekly contract. + - Notify stakeholders via email. +- name: sales-review-monthly-contract-55 + title: Review Monthly Contract (sales) + description: Standard workflow to review monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly contract data. + - Apply sales policies to review the contract. + - Send a status update to the sales team chat space. +- name: sales-review-urgent-contract-56 + title: Review Urgent Contract (sales) + description: Standard workflow to review urgent contract within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute review procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: sales-review-secure-contract-57 + title: Review Secure Contract (sales) + description: Standard workflow to review secure contract within the sales department. + category: sales + services: + - drive + steps: + - Search for secure contract records. + - Review and review the secure contract. + - Archive results in a secure Drive folder. +- name: sales-review-weekly-quote-58 + title: Review Weekly Quote (sales) + description: Standard workflow to review weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly quote data. + - Apply sales policies to review the quote. + - Notify stakeholders via email. +- name: sales-review-monthly-quote-59 + title: Review Monthly Quote (sales) + description: Standard workflow to review monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly quote requests. + - Execute review procedure on the designated quote. + - Send a status update to the sales team chat space. +- name: sales-review-urgent-quote-60 + title: Review Urgent Quote (sales) + description: Standard workflow to review urgent quote within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent quote records. + - Review and review the urgent quote. + - Log completion in the master tracking spreadsheet. +- name: sales-review-secure-quote-61 + title: Review Secure Quote (sales) + description: Standard workflow to review secure quote within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure quote data. + - Apply sales policies to review the quote. + - Archive results in a secure Drive folder. +- name: sales-approve-weekly-lead-62 + title: Approve Weekly Lead (sales) + description: Standard workflow to approve weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly lead requests. + - Execute approve procedure on the designated lead. + - Notify stakeholders via email. +- name: sales-approve-monthly-lead-63 + title: Approve Monthly Lead (sales) + description: Standard workflow to approve monthly lead within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly lead records. + - Review and approve the monthly lead. + - Send a status update to the sales team chat space. +- name: sales-approve-urgent-lead-64 + title: Approve Urgent Lead (sales) + description: Standard workflow to approve urgent lead within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent lead data. + - Apply sales policies to approve the lead. + - Log completion in the master tracking spreadsheet. +- name: sales-approve-secure-lead-65 + title: Approve Secure Lead (sales) + description: Standard workflow to approve secure lead within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure lead requests. + - Execute approve procedure on the designated lead. + - Archive results in a secure Drive folder. +- name: sales-approve-weekly-opportunity-66 + title: Approve Weekly Opportunity (sales) + description: Standard workflow to approve weekly opportunity within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly opportunity records. + - Review and approve the weekly opportunity. + - Notify stakeholders via email. +- name: sales-approve-monthly-opportunity-67 + title: Approve Monthly Opportunity (sales) + description: Standard workflow to approve monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly opportunity data. + - Apply sales policies to approve the opportunity. + - Send a status update to the sales team chat space. +- name: sales-approve-urgent-opportunity-68 + title: Approve Urgent Opportunity (sales) + description: Standard workflow to approve urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent opportunity requests. + - Execute approve procedure on the designated opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-approve-secure-opportunity-69 + title: Approve Secure Opportunity (sales) + description: Standard workflow to approve secure opportunity within the sales department. + category: sales + services: + - drive + steps: + - Search for secure opportunity records. + - Review and approve the secure opportunity. + - Archive results in a secure Drive folder. +- name: sales-approve-weekly-account-70 + title: Approve Weekly Account (sales) + description: Standard workflow to approve weekly account within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly account data. + - Apply sales policies to approve the account. + - Notify stakeholders via email. +- name: sales-approve-monthly-account-71 + title: Approve Monthly Account (sales) + description: Standard workflow to approve monthly account within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly account requests. + - Execute approve procedure on the designated account. + - Send a status update to the sales team chat space. +- name: sales-approve-urgent-account-72 + title: Approve Urgent Account (sales) + description: Standard workflow to approve urgent account within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent account records. + - Review and approve the urgent account. + - Log completion in the master tracking spreadsheet. +- name: sales-approve-secure-account-73 + title: Approve Secure Account (sales) + description: Standard workflow to approve secure account within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure account data. + - Apply sales policies to approve the account. + - Archive results in a secure Drive folder. +- name: sales-approve-weekly-contract-74 + title: Approve Weekly Contract (sales) + description: Standard workflow to approve weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly contract requests. + - Execute approve procedure on the designated contract. + - Notify stakeholders via email. +- name: sales-approve-monthly-contract-75 + title: Approve Monthly Contract (sales) + description: Standard workflow to approve monthly contract within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly contract records. + - Review and approve the monthly contract. + - Send a status update to the sales team chat space. +- name: sales-approve-urgent-contract-76 + title: Approve Urgent Contract (sales) + description: Standard workflow to approve urgent contract within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent contract data. + - Apply sales policies to approve the contract. + - Log completion in the master tracking spreadsheet. +- name: sales-approve-secure-contract-77 + title: Approve Secure Contract (sales) + description: Standard workflow to approve secure contract within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure contract requests. + - Execute approve procedure on the designated contract. + - Archive results in a secure Drive folder. +- name: sales-approve-weekly-quote-78 + title: Approve Weekly Quote (sales) + description: Standard workflow to approve weekly quote within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly quote records. + - Review and approve the weekly quote. + - Notify stakeholders via email. +- name: sales-approve-monthly-quote-79 + title: Approve Monthly Quote (sales) + description: Standard workflow to approve monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly quote data. + - Apply sales policies to approve the quote. + - Send a status update to the sales team chat space. +- name: sales-approve-urgent-quote-80 + title: Approve Urgent Quote (sales) + description: Standard workflow to approve urgent quote within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent quote requests. + - Execute approve procedure on the designated quote. + - Log completion in the master tracking spreadsheet. +- name: sales-approve-secure-quote-81 + title: Approve Secure Quote (sales) + description: Standard workflow to approve secure quote within the sales department. + category: sales + services: + - drive + steps: + - Search for secure quote records. + - Review and approve the secure quote. + - Archive results in a secure Drive folder. +- name: sales-share-weekly-lead-82 + title: Share Weekly Lead (sales) + description: Standard workflow to share weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly lead data. + - Apply sales policies to share the lead. + - Notify stakeholders via email. +- name: sales-share-monthly-lead-83 + title: Share Monthly Lead (sales) + description: Standard workflow to share monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly lead requests. + - Execute share procedure on the designated lead. + - Send a status update to the sales team chat space. +- name: sales-share-urgent-lead-84 + title: Share Urgent Lead (sales) + description: Standard workflow to share urgent lead within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent lead records. + - Review and share the urgent lead. + - Log completion in the master tracking spreadsheet. +- name: sales-share-secure-lead-85 + title: Share Secure Lead (sales) + description: Standard workflow to share secure lead within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure lead data. + - Apply sales policies to share the lead. + - Archive results in a secure Drive folder. +- name: sales-share-weekly-opportunity-86 + title: Share Weekly Opportunity (sales) + description: Standard workflow to share weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly opportunity requests. + - Execute share procedure on the designated opportunity. + - Notify stakeholders via email. +- name: sales-share-monthly-opportunity-87 + title: Share Monthly Opportunity (sales) + description: Standard workflow to share monthly opportunity within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly opportunity records. + - Review and share the monthly opportunity. + - Send a status update to the sales team chat space. +- name: sales-share-urgent-opportunity-88 + title: Share Urgent Opportunity (sales) + description: Standard workflow to share urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent opportunity data. + - Apply sales policies to share the opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-share-secure-opportunity-89 + title: Share Secure Opportunity (sales) + description: Standard workflow to share secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure opportunity requests. + - Execute share procedure on the designated opportunity. + - Archive results in a secure Drive folder. +- name: sales-share-weekly-account-90 + title: Share Weekly Account (sales) + description: Standard workflow to share weekly account within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly account records. + - Review and share the weekly account. + - Notify stakeholders via email. +- name: sales-share-monthly-account-91 + title: Share Monthly Account (sales) + description: Standard workflow to share monthly account within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly account data. + - Apply sales policies to share the account. + - Send a status update to the sales team chat space. +- name: sales-share-urgent-account-92 + title: Share Urgent Account (sales) + description: Standard workflow to share urgent account within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent account requests. + - Execute share procedure on the designated account. + - Log completion in the master tracking spreadsheet. +- name: sales-share-secure-account-93 + title: Share Secure Account (sales) + description: Standard workflow to share secure account within the sales department. + category: sales + services: + - drive + steps: + - Search for secure account records. + - Review and share the secure account. + - Archive results in a secure Drive folder. +- name: sales-share-weekly-contract-94 + title: Share Weekly Contract (sales) + description: Standard workflow to share weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly contract data. + - Apply sales policies to share the contract. + - Notify stakeholders via email. +- name: sales-share-monthly-contract-95 + title: Share Monthly Contract (sales) + description: Standard workflow to share monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly contract requests. + - Execute share procedure on the designated contract. + - Send a status update to the sales team chat space. +- name: sales-share-urgent-contract-96 + title: Share Urgent Contract (sales) + description: Standard workflow to share urgent contract within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent contract records. + - Review and share the urgent contract. + - Log completion in the master tracking spreadsheet. +- name: sales-share-secure-contract-97 + title: Share Secure Contract (sales) + description: Standard workflow to share secure contract within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure contract data. + - Apply sales policies to share the contract. + - Archive results in a secure Drive folder. +- name: sales-share-weekly-quote-98 + title: Share Weekly Quote (sales) + description: Standard workflow to share weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly quote requests. + - Execute share procedure on the designated quote. + - Notify stakeholders via email. +- name: sales-share-monthly-quote-99 + title: Share Monthly Quote (sales) + description: Standard workflow to share monthly quote within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly quote records. + - Review and share the monthly quote. + - Send a status update to the sales team chat space. +- name: sales-share-urgent-quote-100 + title: Share Urgent Quote (sales) + description: Standard workflow to share urgent quote within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent quote data. + - Apply sales policies to share the quote. + - Log completion in the master tracking spreadsheet. +- name: sales-share-secure-quote-101 + title: Share Secure Quote (sales) + description: Standard workflow to share secure quote within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure quote requests. + - Execute share procedure on the designated quote. + - Archive results in a secure Drive folder. +- name: sales-publish-weekly-lead-102 + title: Publish Weekly Lead (sales) + description: Standard workflow to publish weekly lead within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly lead records. + - Review and publish the weekly lead. + - Notify stakeholders via email. +- name: sales-publish-monthly-lead-103 + title: Publish Monthly Lead (sales) + description: Standard workflow to publish monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly lead data. + - Apply sales policies to publish the lead. + - Send a status update to the sales team chat space. +- name: sales-publish-urgent-lead-104 + title: Publish Urgent Lead (sales) + description: Standard workflow to publish urgent lead within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent lead requests. + - Execute publish procedure on the designated lead. + - Log completion in the master tracking spreadsheet. +- name: sales-publish-secure-lead-105 + title: Publish Secure Lead (sales) + description: Standard workflow to publish secure lead within the sales department. + category: sales + services: + - drive + steps: + - Search for secure lead records. + - Review and publish the secure lead. + - Archive results in a secure Drive folder. +- name: sales-publish-weekly-opportunity-106 + title: Publish Weekly Opportunity (sales) + description: Standard workflow to publish weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly opportunity data. + - Apply sales policies to publish the opportunity. + - Notify stakeholders via email. +- name: sales-publish-monthly-opportunity-107 + title: Publish Monthly Opportunity (sales) + description: Standard workflow to publish monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly opportunity requests. + - Execute publish procedure on the designated opportunity. + - Send a status update to the sales team chat space. +- name: sales-publish-urgent-opportunity-108 + title: Publish Urgent Opportunity (sales) + description: Standard workflow to publish urgent opportunity within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent opportunity records. + - Review and publish the urgent opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-publish-secure-opportunity-109 + title: Publish Secure Opportunity (sales) + description: Standard workflow to publish secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure opportunity data. + - Apply sales policies to publish the opportunity. + - Archive results in a secure Drive folder. +- name: sales-publish-weekly-account-110 + title: Publish Weekly Account (sales) + description: Standard workflow to publish weekly account within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly account requests. + - Execute publish procedure on the designated account. + - Notify stakeholders via email. +- name: sales-publish-monthly-account-111 + title: Publish Monthly Account (sales) + description: Standard workflow to publish monthly account within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly account records. + - Review and publish the monthly account. + - Send a status update to the sales team chat space. +- name: sales-publish-urgent-account-112 + title: Publish Urgent Account (sales) + description: Standard workflow to publish urgent account within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent account data. + - Apply sales policies to publish the account. + - Log completion in the master tracking spreadsheet. +- name: sales-publish-secure-account-113 + title: Publish Secure Account (sales) + description: Standard workflow to publish secure account within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure account requests. + - Execute publish procedure on the designated account. + - Archive results in a secure Drive folder. +- name: sales-publish-weekly-contract-114 + title: Publish Weekly Contract (sales) + description: Standard workflow to publish weekly contract within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly contract records. + - Review and publish the weekly contract. + - Notify stakeholders via email. +- name: sales-publish-monthly-contract-115 + title: Publish Monthly Contract (sales) + description: Standard workflow to publish monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly contract data. + - Apply sales policies to publish the contract. + - Send a status update to the sales team chat space. +- name: sales-publish-urgent-contract-116 + title: Publish Urgent Contract (sales) + description: Standard workflow to publish urgent contract within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute publish procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: sales-publish-secure-contract-117 + title: Publish Secure Contract (sales) + description: Standard workflow to publish secure contract within the sales department. + category: sales + services: + - drive + steps: + - Search for secure contract records. + - Review and publish the secure contract. + - Archive results in a secure Drive folder. +- name: sales-publish-weekly-quote-118 + title: Publish Weekly Quote (sales) + description: Standard workflow to publish weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly quote data. + - Apply sales policies to publish the quote. + - Notify stakeholders via email. +- name: sales-publish-monthly-quote-119 + title: Publish Monthly Quote (sales) + description: Standard workflow to publish monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly quote requests. + - Execute publish procedure on the designated quote. + - Send a status update to the sales team chat space. +- name: sales-publish-urgent-quote-120 + title: Publish Urgent Quote (sales) + description: Standard workflow to publish urgent quote within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent quote records. + - Review and publish the urgent quote. + - Log completion in the master tracking spreadsheet. +- name: sales-publish-secure-quote-121 + title: Publish Secure Quote (sales) + description: Standard workflow to publish secure quote within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure quote data. + - Apply sales policies to publish the quote. + - Archive results in a secure Drive folder. +- name: sales-archive-weekly-lead-122 + title: Archive Weekly Lead (sales) + description: Standard workflow to archive weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly lead requests. + - Execute archive procedure on the designated lead. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly lead targets before running. +- name: sales-archive-monthly-lead-123 + title: Archive Monthly Lead (sales) + description: Standard workflow to archive monthly lead within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly lead records. + - Review and archive the monthly lead. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly lead targets before running. +- name: sales-archive-urgent-lead-124 + title: Archive Urgent Lead (sales) + description: Standard workflow to archive urgent lead within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent lead data. + - Apply sales policies to archive the lead. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent lead targets before running. +- name: sales-archive-secure-lead-125 + title: Archive Secure Lead (sales) + description: Standard workflow to archive secure lead within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure lead requests. + - Execute archive procedure on the designated lead. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure lead targets before running. +- name: sales-archive-weekly-opportunity-126 + title: Archive Weekly Opportunity (sales) + description: Standard workflow to archive weekly opportunity within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly opportunity records. + - Review and archive the weekly opportunity. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly opportunity targets before running. +- name: sales-archive-monthly-opportunity-127 + title: Archive Monthly Opportunity (sales) + description: Standard workflow to archive monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly opportunity data. + - Apply sales policies to archive the opportunity. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly opportunity targets before running. +- name: sales-archive-urgent-opportunity-128 + title: Archive Urgent Opportunity (sales) + description: Standard workflow to archive urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent opportunity requests. + - Execute archive procedure on the designated opportunity. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent opportunity targets before running. +- name: sales-archive-secure-opportunity-129 + title: Archive Secure Opportunity (sales) + description: Standard workflow to archive secure opportunity within the sales department. + category: sales + services: + - drive + steps: + - Search for secure opportunity records. + - Review and archive the secure opportunity. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure opportunity targets before running. +- name: sales-archive-weekly-account-130 + title: Archive Weekly Account (sales) + description: Standard workflow to archive weekly account within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly account data. + - Apply sales policies to archive the account. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly account targets before running. +- name: sales-archive-monthly-account-131 + title: Archive Monthly Account (sales) + description: Standard workflow to archive monthly account within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly account requests. + - Execute archive procedure on the designated account. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly account targets before running. +- name: sales-archive-urgent-account-132 + title: Archive Urgent Account (sales) + description: Standard workflow to archive urgent account within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent account records. + - Review and archive the urgent account. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent account targets before running. +- name: sales-archive-secure-account-133 + title: Archive Secure Account (sales) + description: Standard workflow to archive secure account within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure account data. + - Apply sales policies to archive the account. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure account targets before running. +- name: sales-archive-weekly-contract-134 + title: Archive Weekly Contract (sales) + description: Standard workflow to archive weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly contract requests. + - Execute archive procedure on the designated contract. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. +- name: sales-archive-monthly-contract-135 + title: Archive Monthly Contract (sales) + description: Standard workflow to archive monthly contract within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly contract records. + - Review and archive the monthly contract. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. +- name: sales-archive-urgent-contract-136 + title: Archive Urgent Contract (sales) + description: Standard workflow to archive urgent contract within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent contract data. + - Apply sales policies to archive the contract. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. +- name: sales-archive-secure-contract-137 + title: Archive Secure Contract (sales) + description: Standard workflow to archive secure contract within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure contract requests. + - Execute archive procedure on the designated contract. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure contract targets before running. +- name: sales-archive-weekly-quote-138 + title: Archive Weekly Quote (sales) + description: Standard workflow to archive weekly quote within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly quote records. + - Review and archive the weekly quote. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly quote targets before running. +- name: sales-archive-monthly-quote-139 + title: Archive Monthly Quote (sales) + description: Standard workflow to archive monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly quote data. + - Apply sales policies to archive the quote. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly quote targets before running. +- name: sales-archive-urgent-quote-140 + title: Archive Urgent Quote (sales) + description: Standard workflow to archive urgent quote within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent quote requests. + - Execute archive procedure on the designated quote. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent quote targets before running. +- name: sales-archive-secure-quote-141 + title: Archive Secure Quote (sales) + description: Standard workflow to archive secure quote within the sales department. + category: sales + services: + - drive + steps: + - Search for secure quote records. + - Review and archive the secure quote. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure quote targets before running. +- name: sales-export-weekly-lead-142 + title: Export Weekly Lead (sales) + description: Standard workflow to export weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly lead data. + - Apply sales policies to export the lead. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly lead targets before running. +- name: sales-export-monthly-lead-143 + title: Export Monthly Lead (sales) + description: Standard workflow to export monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly lead requests. + - Execute export procedure on the designated lead. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly lead targets before running. +- name: sales-export-urgent-lead-144 + title: Export Urgent Lead (sales) + description: Standard workflow to export urgent lead within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent lead records. + - Review and export the urgent lead. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent lead targets before running. +- name: sales-export-secure-lead-145 + title: Export Secure Lead (sales) + description: Standard workflow to export secure lead within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure lead data. + - Apply sales policies to export the lead. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure lead targets before running. +- name: sales-export-weekly-opportunity-146 + title: Export Weekly Opportunity (sales) + description: Standard workflow to export weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly opportunity requests. + - Execute export procedure on the designated opportunity. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly opportunity targets before running. +- name: sales-export-monthly-opportunity-147 + title: Export Monthly Opportunity (sales) + description: Standard workflow to export monthly opportunity within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly opportunity records. + - Review and export the monthly opportunity. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly opportunity targets before running. +- name: sales-export-urgent-opportunity-148 + title: Export Urgent Opportunity (sales) + description: Standard workflow to export urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent opportunity data. + - Apply sales policies to export the opportunity. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent opportunity targets before running. +- name: sales-export-secure-opportunity-149 + title: Export Secure Opportunity (sales) + description: Standard workflow to export secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure opportunity requests. + - Execute export procedure on the designated opportunity. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure opportunity targets before running. +- name: sales-export-weekly-account-150 + title: Export Weekly Account (sales) + description: Standard workflow to export weekly account within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly account records. + - Review and export the weekly account. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly account targets before running. +- name: sales-export-monthly-account-151 + title: Export Monthly Account (sales) + description: Standard workflow to export monthly account within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly account data. + - Apply sales policies to export the account. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly account targets before running. +- name: sales-export-urgent-account-152 + title: Export Urgent Account (sales) + description: Standard workflow to export urgent account within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent account requests. + - Execute export procedure on the designated account. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent account targets before running. +- name: sales-export-secure-account-153 + title: Export Secure Account (sales) + description: Standard workflow to export secure account within the sales department. + category: sales + services: + - drive + steps: + - Search for secure account records. + - Review and export the secure account. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure account targets before running. +- name: sales-export-weekly-contract-154 + title: Export Weekly Contract (sales) + description: Standard workflow to export weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly contract data. + - Apply sales policies to export the contract. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. +- name: sales-export-monthly-contract-155 + title: Export Monthly Contract (sales) + description: Standard workflow to export monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly contract requests. + - Execute export procedure on the designated contract. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. +- name: sales-export-urgent-contract-156 + title: Export Urgent Contract (sales) + description: Standard workflow to export urgent contract within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent contract records. + - Review and export the urgent contract. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. +- name: sales-export-secure-contract-157 + title: Export Secure Contract (sales) + description: Standard workflow to export secure contract within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure contract data. + - Apply sales policies to export the contract. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure contract targets before running. +- name: sales-export-weekly-quote-158 + title: Export Weekly Quote (sales) + description: Standard workflow to export weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly quote requests. + - Execute export procedure on the designated quote. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly quote targets before running. +- name: sales-export-monthly-quote-159 + title: Export Monthly Quote (sales) + description: Standard workflow to export monthly quote within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly quote records. + - Review and export the monthly quote. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly quote targets before running. +- name: sales-export-urgent-quote-160 + title: Export Urgent Quote (sales) + description: Standard workflow to export urgent quote within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent quote data. + - Apply sales policies to export the quote. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent quote targets before running. +- name: sales-export-secure-quote-161 + title: Export Secure Quote (sales) + description: Standard workflow to export secure quote within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure quote requests. + - Execute export procedure on the designated quote. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure quote targets before running. +- name: sales-import-weekly-lead-162 + title: Import Weekly Lead (sales) + description: Standard workflow to import weekly lead within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly lead records. + - Review and import the weekly lead. + - Notify stakeholders via email. +- name: sales-import-monthly-lead-163 + title: Import Monthly Lead (sales) + description: Standard workflow to import monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly lead data. + - Apply sales policies to import the lead. + - Send a status update to the sales team chat space. +- name: sales-import-urgent-lead-164 + title: Import Urgent Lead (sales) + description: Standard workflow to import urgent lead within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent lead requests. + - Execute import procedure on the designated lead. + - Log completion in the master tracking spreadsheet. +- name: sales-import-secure-lead-165 + title: Import Secure Lead (sales) + description: Standard workflow to import secure lead within the sales department. + category: sales + services: + - drive + steps: + - Search for secure lead records. + - Review and import the secure lead. + - Archive results in a secure Drive folder. +- name: sales-import-weekly-opportunity-166 + title: Import Weekly Opportunity (sales) + description: Standard workflow to import weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly opportunity data. + - Apply sales policies to import the opportunity. + - Notify stakeholders via email. +- name: sales-import-monthly-opportunity-167 + title: Import Monthly Opportunity (sales) + description: Standard workflow to import monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly opportunity requests. + - Execute import procedure on the designated opportunity. + - Send a status update to the sales team chat space. +- name: sales-import-urgent-opportunity-168 + title: Import Urgent Opportunity (sales) + description: Standard workflow to import urgent opportunity within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent opportunity records. + - Review and import the urgent opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-import-secure-opportunity-169 + title: Import Secure Opportunity (sales) + description: Standard workflow to import secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure opportunity data. + - Apply sales policies to import the opportunity. + - Archive results in a secure Drive folder. +- name: sales-import-weekly-account-170 + title: Import Weekly Account (sales) + description: Standard workflow to import weekly account within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly account requests. + - Execute import procedure on the designated account. + - Notify stakeholders via email. +- name: sales-import-monthly-account-171 + title: Import Monthly Account (sales) + description: Standard workflow to import monthly account within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly account records. + - Review and import the monthly account. + - Send a status update to the sales team chat space. +- name: sales-import-urgent-account-172 + title: Import Urgent Account (sales) + description: Standard workflow to import urgent account within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent account data. + - Apply sales policies to import the account. + - Log completion in the master tracking spreadsheet. +- name: sales-import-secure-account-173 + title: Import Secure Account (sales) + description: Standard workflow to import secure account within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure account requests. + - Execute import procedure on the designated account. + - Archive results in a secure Drive folder. +- name: sales-import-weekly-contract-174 + title: Import Weekly Contract (sales) + description: Standard workflow to import weekly contract within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly contract records. + - Review and import the weekly contract. + - Notify stakeholders via email. +- name: sales-import-monthly-contract-175 + title: Import Monthly Contract (sales) + description: Standard workflow to import monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly contract data. + - Apply sales policies to import the contract. + - Send a status update to the sales team chat space. +- name: sales-import-urgent-contract-176 + title: Import Urgent Contract (sales) + description: Standard workflow to import urgent contract within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute import procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: sales-import-secure-contract-177 + title: Import Secure Contract (sales) + description: Standard workflow to import secure contract within the sales department. + category: sales + services: + - drive + steps: + - Search for secure contract records. + - Review and import the secure contract. + - Archive results in a secure Drive folder. +- name: sales-import-weekly-quote-178 + title: Import Weekly Quote (sales) + description: Standard workflow to import weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly quote data. + - Apply sales policies to import the quote. + - Notify stakeholders via email. +- name: sales-import-monthly-quote-179 + title: Import Monthly Quote (sales) + description: Standard workflow to import monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly quote requests. + - Execute import procedure on the designated quote. + - Send a status update to the sales team chat space. +- name: sales-import-urgent-quote-180 + title: Import Urgent Quote (sales) + description: Standard workflow to import urgent quote within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent quote records. + - Review and import the urgent quote. + - Log completion in the master tracking spreadsheet. +- name: sales-import-secure-quote-181 + title: Import Secure Quote (sales) + description: Standard workflow to import secure quote within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure quote data. + - Apply sales policies to import the quote. + - Archive results in a secure Drive folder. +- name: sales-sync-weekly-lead-182 + title: Sync Weekly Lead (sales) + description: Standard workflow to sync weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly lead requests. + - Execute sync procedure on the designated lead. + - Notify stakeholders via email. +- name: sales-sync-monthly-lead-183 + title: Sync Monthly Lead (sales) + description: Standard workflow to sync monthly lead within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly lead records. + - Review and sync the monthly lead. + - Send a status update to the sales team chat space. +- name: sales-sync-urgent-lead-184 + title: Sync Urgent Lead (sales) + description: Standard workflow to sync urgent lead within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent lead data. + - Apply sales policies to sync the lead. + - Log completion in the master tracking spreadsheet. +- name: sales-sync-secure-lead-185 + title: Sync Secure Lead (sales) + description: Standard workflow to sync secure lead within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure lead requests. + - Execute sync procedure on the designated lead. + - Archive results in a secure Drive folder. +- name: sales-sync-weekly-opportunity-186 + title: Sync Weekly Opportunity (sales) + description: Standard workflow to sync weekly opportunity within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly opportunity records. + - Review and sync the weekly opportunity. + - Notify stakeholders via email. +- name: sales-sync-monthly-opportunity-187 + title: Sync Monthly Opportunity (sales) + description: Standard workflow to sync monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly opportunity data. + - Apply sales policies to sync the opportunity. + - Send a status update to the sales team chat space. +- name: sales-sync-urgent-opportunity-188 + title: Sync Urgent Opportunity (sales) + description: Standard workflow to sync urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent opportunity requests. + - Execute sync procedure on the designated opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-sync-secure-opportunity-189 + title: Sync Secure Opportunity (sales) + description: Standard workflow to sync secure opportunity within the sales department. + category: sales + services: + - drive + steps: + - Search for secure opportunity records. + - Review and sync the secure opportunity. + - Archive results in a secure Drive folder. +- name: sales-sync-weekly-account-190 + title: Sync Weekly Account (sales) + description: Standard workflow to sync weekly account within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly account data. + - Apply sales policies to sync the account. + - Notify stakeholders via email. +- name: sales-sync-monthly-account-191 + title: Sync Monthly Account (sales) + description: Standard workflow to sync monthly account within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly account requests. + - Execute sync procedure on the designated account. + - Send a status update to the sales team chat space. +- name: sales-sync-urgent-account-192 + title: Sync Urgent Account (sales) + description: Standard workflow to sync urgent account within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent account records. + - Review and sync the urgent account. + - Log completion in the master tracking spreadsheet. +- name: sales-sync-secure-account-193 + title: Sync Secure Account (sales) + description: Standard workflow to sync secure account within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure account data. + - Apply sales policies to sync the account. + - Archive results in a secure Drive folder. +- name: sales-sync-weekly-contract-194 + title: Sync Weekly Contract (sales) + description: Standard workflow to sync weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly contract requests. + - Execute sync procedure on the designated contract. + - Notify stakeholders via email. +- name: sales-sync-monthly-contract-195 + title: Sync Monthly Contract (sales) + description: Standard workflow to sync monthly contract within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly contract records. + - Review and sync the monthly contract. + - Send a status update to the sales team chat space. +- name: sales-sync-urgent-contract-196 + title: Sync Urgent Contract (sales) + description: Standard workflow to sync urgent contract within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent contract data. + - Apply sales policies to sync the contract. + - Log completion in the master tracking spreadsheet. +- name: sales-sync-secure-contract-197 + title: Sync Secure Contract (sales) + description: Standard workflow to sync secure contract within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure contract requests. + - Execute sync procedure on the designated contract. + - Archive results in a secure Drive folder. +- name: sales-sync-weekly-quote-198 + title: Sync Weekly Quote (sales) + description: Standard workflow to sync weekly quote within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly quote records. + - Review and sync the weekly quote. + - Notify stakeholders via email. +- name: sales-sync-monthly-quote-199 + title: Sync Monthly Quote (sales) + description: Standard workflow to sync monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly quote data. + - Apply sales policies to sync the quote. + - Send a status update to the sales team chat space. +- name: sales-sync-urgent-quote-200 + title: Sync Urgent Quote (sales) + description: Standard workflow to sync urgent quote within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent quote requests. + - Execute sync procedure on the designated quote. + - Log completion in the master tracking spreadsheet. +- name: sales-sync-secure-quote-201 + title: Sync Secure Quote (sales) + description: Standard workflow to sync secure quote within the sales department. + category: sales + services: + - drive + steps: + - Search for secure quote records. + - Review and sync the secure quote. + - Archive results in a secure Drive folder. +- name: sales-migrate-weekly-lead-202 + title: Migrate Weekly Lead (sales) + description: Standard workflow to migrate weekly lead within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly lead data. + - Apply sales policies to migrate the lead. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly lead targets before running. +- name: sales-migrate-monthly-lead-203 + title: Migrate Monthly Lead (sales) + description: Standard workflow to migrate monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly lead requests. + - Execute migrate procedure on the designated lead. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly lead targets before running. +- name: sales-migrate-urgent-lead-204 + title: Migrate Urgent Lead (sales) + description: Standard workflow to migrate urgent lead within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent lead records. + - Review and migrate the urgent lead. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent lead targets before running. +- name: sales-migrate-secure-lead-205 + title: Migrate Secure Lead (sales) + description: Standard workflow to migrate secure lead within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure lead data. + - Apply sales policies to migrate the lead. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure lead targets before running. +- name: sales-migrate-weekly-opportunity-206 + title: Migrate Weekly Opportunity (sales) + description: Standard workflow to migrate weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly opportunity requests. + - Execute migrate procedure on the designated opportunity. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly opportunity targets before running. +- name: sales-migrate-monthly-opportunity-207 + title: Migrate Monthly Opportunity (sales) + description: Standard workflow to migrate monthly opportunity within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly opportunity records. + - Review and migrate the monthly opportunity. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly opportunity targets before running. +- name: sales-migrate-urgent-opportunity-208 + title: Migrate Urgent Opportunity (sales) + description: Standard workflow to migrate urgent opportunity within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent opportunity data. + - Apply sales policies to migrate the opportunity. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent opportunity targets before running. +- name: sales-migrate-secure-opportunity-209 + title: Migrate Secure Opportunity (sales) + description: Standard workflow to migrate secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure opportunity requests. + - Execute migrate procedure on the designated opportunity. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure opportunity targets before running. +- name: sales-migrate-weekly-account-210 + title: Migrate Weekly Account (sales) + description: Standard workflow to migrate weekly account within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly account records. + - Review and migrate the weekly account. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly account targets before running. +- name: sales-migrate-monthly-account-211 + title: Migrate Monthly Account (sales) + description: Standard workflow to migrate monthly account within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly account data. + - Apply sales policies to migrate the account. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly account targets before running. +- name: sales-migrate-urgent-account-212 + title: Migrate Urgent Account (sales) + description: Standard workflow to migrate urgent account within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent account requests. + - Execute migrate procedure on the designated account. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent account targets before running. +- name: sales-migrate-secure-account-213 + title: Migrate Secure Account (sales) + description: Standard workflow to migrate secure account within the sales department. + category: sales + services: + - drive + steps: + - Search for secure account records. + - Review and migrate the secure account. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure account targets before running. +- name: sales-migrate-weekly-contract-214 + title: Migrate Weekly Contract (sales) + description: Standard workflow to migrate weekly contract within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly contract data. + - Apply sales policies to migrate the contract. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. +- name: sales-migrate-monthly-contract-215 + title: Migrate Monthly Contract (sales) + description: Standard workflow to migrate monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly contract requests. + - Execute migrate procedure on the designated contract. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. +- name: sales-migrate-urgent-contract-216 + title: Migrate Urgent Contract (sales) + description: Standard workflow to migrate urgent contract within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent contract records. + - Review and migrate the urgent contract. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. +- name: sales-migrate-secure-contract-217 + title: Migrate Secure Contract (sales) + description: Standard workflow to migrate secure contract within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure contract data. + - Apply sales policies to migrate the contract. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure contract targets before running. +- name: sales-migrate-weekly-quote-218 + title: Migrate Weekly Quote (sales) + description: Standard workflow to migrate weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly quote requests. + - Execute migrate procedure on the designated quote. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly quote targets before running. +- name: sales-migrate-monthly-quote-219 + title: Migrate Monthly Quote (sales) + description: Standard workflow to migrate monthly quote within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly quote records. + - Review and migrate the monthly quote. + - Send a status update to the sales team chat space. + caution: Action involves bulk data manipulation. Confirm monthly quote targets before running. +- name: sales-migrate-urgent-quote-220 + title: Migrate Urgent Quote (sales) + description: Standard workflow to migrate urgent quote within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent quote data. + - Apply sales policies to migrate the quote. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent quote targets before running. +- name: sales-migrate-secure-quote-221 + title: Migrate Secure Quote (sales) + description: Standard workflow to migrate secure quote within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure quote requests. + - Execute migrate procedure on the designated quote. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure quote targets before running. +- name: sales-backup-weekly-lead-222 + title: Backup Weekly Lead (sales) + description: Standard workflow to backup weekly lead within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly lead records. + - Review and backup the weekly lead. + - Notify stakeholders via email. +- name: sales-backup-monthly-lead-223 + title: Backup Monthly Lead (sales) + description: Standard workflow to backup monthly lead within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly lead data. + - Apply sales policies to backup the lead. + - Send a status update to the sales team chat space. +- name: sales-backup-urgent-lead-224 + title: Backup Urgent Lead (sales) + description: Standard workflow to backup urgent lead within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent lead requests. + - Execute backup procedure on the designated lead. + - Log completion in the master tracking spreadsheet. +- name: sales-backup-secure-lead-225 + title: Backup Secure Lead (sales) + description: Standard workflow to backup secure lead within the sales department. + category: sales + services: + - drive + steps: + - Search for secure lead records. + - Review and backup the secure lead. + - Archive results in a secure Drive folder. +- name: sales-backup-weekly-opportunity-226 + title: Backup Weekly Opportunity (sales) + description: Standard workflow to backup weekly opportunity within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly opportunity data. + - Apply sales policies to backup the opportunity. + - Notify stakeholders via email. +- name: sales-backup-monthly-opportunity-227 + title: Backup Monthly Opportunity (sales) + description: Standard workflow to backup monthly opportunity within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly opportunity requests. + - Execute backup procedure on the designated opportunity. + - Send a status update to the sales team chat space. +- name: sales-backup-urgent-opportunity-228 + title: Backup Urgent Opportunity (sales) + description: Standard workflow to backup urgent opportunity within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent opportunity records. + - Review and backup the urgent opportunity. + - Log completion in the master tracking spreadsheet. +- name: sales-backup-secure-opportunity-229 + title: Backup Secure Opportunity (sales) + description: Standard workflow to backup secure opportunity within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure opportunity data. + - Apply sales policies to backup the opportunity. + - Archive results in a secure Drive folder. +- name: sales-backup-weekly-account-230 + title: Backup Weekly Account (sales) + description: Standard workflow to backup weekly account within the sales department. + category: sales + services: + - gmail + - sheets + - calendar + steps: + - Check system for pending weekly account requests. + - Execute backup procedure on the designated account. + - Notify stakeholders via email. +- name: sales-backup-monthly-account-231 + title: Backup Monthly Account (sales) + description: Standard workflow to backup monthly account within the sales department. + category: sales + services: + - sheets + steps: + - Search for monthly account records. + - Review and backup the monthly account. + - Send a status update to the sales team chat space. +- name: sales-backup-urgent-account-232 + title: Backup Urgent Account (sales) + description: Standard workflow to backup urgent account within the sales department. + category: sales + services: + - calendar + - drive + steps: + - Fetch latest urgent account data. + - Apply sales policies to backup the account. + - Log completion in the master tracking spreadsheet. +- name: sales-backup-secure-account-233 + title: Backup Secure Account (sales) + description: Standard workflow to backup secure account within the sales department. + category: sales + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure account requests. + - Execute backup procedure on the designated account. + - Archive results in a secure Drive folder. +- name: sales-backup-weekly-contract-234 + title: Backup Weekly Contract (sales) + description: Standard workflow to backup weekly contract within the sales department. + category: sales + services: + - gmail + steps: + - Search for weekly contract records. + - Review and backup the weekly contract. + - Notify stakeholders via email. +- name: sales-backup-monthly-contract-235 + title: Backup Monthly Contract (sales) + description: Standard workflow to backup monthly contract within the sales department. + category: sales + services: + - sheets + - calendar + steps: + - Fetch latest monthly contract data. + - Apply sales policies to backup the contract. + - Send a status update to the sales team chat space. +- name: sales-backup-urgent-contract-236 + title: Backup Urgent Contract (sales) + description: Standard workflow to backup urgent contract within the sales department. + category: sales + services: + - calendar + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute backup procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: sales-backup-secure-contract-237 + title: Backup Secure Contract (sales) + description: Standard workflow to backup secure contract within the sales department. + category: sales + services: + - drive + steps: + - Search for secure contract records. + - Review and backup the secure contract. + - Archive results in a secure Drive folder. +- name: sales-backup-weekly-quote-238 + title: Backup Weekly Quote (sales) + description: Standard workflow to backup weekly quote within the sales department. + category: sales + services: + - gmail + - sheets + steps: + - Fetch latest weekly quote data. + - Apply sales policies to backup the quote. + - Notify stakeholders via email. +- name: sales-backup-monthly-quote-239 + title: Backup Monthly Quote (sales) + description: Standard workflow to backup monthly quote within the sales department. + category: sales + services: + - sheets + - calendar + - drive + steps: + - Check system for pending monthly quote requests. + - Execute backup procedure on the designated quote. + - Send a status update to the sales team chat space. +- name: sales-backup-urgent-quote-240 + title: Backup Urgent Quote (sales) + description: Standard workflow to backup urgent quote within the sales department. + category: sales + services: + - calendar + steps: + - Search for urgent quote records. + - Review and backup the urgent quote. + - Log completion in the master tracking spreadsheet. +- name: sales-backup-secure-quote-241 + title: Backup Secure Quote (sales) + description: Standard workflow to backup secure quote within the sales department. + category: sales + services: + - drive + - gmail + steps: + - Fetch latest secure quote data. + - Apply sales policies to backup the quote. + - Archive results in a secure Drive folder. +- name: hr-audit-weekly-employee-242 + title: Audit Weekly Employee (hr) + description: Standard workflow to audit weekly employee within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending weekly employee requests. + - Execute audit procedure on the designated employee. + - Notify stakeholders via email. +- name: hr-audit-monthly-employee-243 + title: Audit Monthly Employee (hr) + description: Standard workflow to audit monthly employee within the hr department. + category: hr + services: + - drive + steps: + - Search for monthly employee records. + - Review and audit the monthly employee. + - Send a status update to the hr team chat space. +- name: hr-audit-urgent-employee-244 + title: Audit Urgent Employee (hr) + description: Standard workflow to audit urgent employee within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest urgent employee data. + - Apply hr policies to audit the employee. + - Log completion in the master tracking spreadsheet. +- name: hr-audit-secure-employee-245 + title: Audit Secure Employee (hr) + description: Standard workflow to audit secure employee within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending secure employee requests. + - Execute audit procedure on the designated employee. + - Archive results in a secure Drive folder. +- name: hr-audit-weekly-candidate-246 + title: Audit Weekly Candidate (hr) + description: Standard workflow to audit weekly candidate within the hr department. + category: hr + services: + - calendar + steps: + - Search for weekly candidate records. + - Review and audit the weekly candidate. + - Notify stakeholders via email. +- name: hr-audit-monthly-candidate-247 + title: Audit Monthly Candidate (hr) + description: Standard workflow to audit monthly candidate within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest monthly candidate data. + - Apply hr policies to audit the candidate. + - Send a status update to the hr team chat space. +- name: hr-audit-urgent-candidate-248 + title: Audit Urgent Candidate (hr) + description: Standard workflow to audit urgent candidate within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending urgent candidate requests. + - Execute audit procedure on the designated candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-audit-secure-candidate-249 + title: Audit Secure Candidate (hr) + description: Standard workflow to audit secure candidate within the hr department. + category: hr + services: + - gmail + steps: + - Search for secure candidate records. + - Review and audit the secure candidate. + - Archive results in a secure Drive folder. +- name: hr-audit-weekly-offer-250 + title: Audit Weekly Offer (hr) + description: Standard workflow to audit weekly offer within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest weekly offer data. + - Apply hr policies to audit the offer. + - Notify stakeholders via email. +- name: hr-audit-monthly-offer-251 + title: Audit Monthly Offer (hr) + description: Standard workflow to audit monthly offer within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending monthly offer requests. + - Execute audit procedure on the designated offer. + - Send a status update to the hr team chat space. +- name: hr-audit-urgent-offer-252 + title: Audit Urgent Offer (hr) + description: Standard workflow to audit urgent offer within the hr department. + category: hr + services: + - chat + steps: + - Search for urgent offer records. + - Review and audit the urgent offer. + - Log completion in the master tracking spreadsheet. +- name: hr-audit-secure-offer-253 + title: Audit Secure Offer (hr) + description: Standard workflow to audit secure offer within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest secure offer data. + - Apply hr policies to audit the offer. + - Archive results in a secure Drive folder. +- name: hr-audit-weekly-benefits-254 + title: Audit Weekly Benefits (hr) + description: Standard workflow to audit weekly benefits within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending weekly benefits requests. + - Execute audit procedure on the designated benefits. + - Notify stakeholders via email. +- name: hr-audit-monthly-benefits-255 + title: Audit Monthly Benefits (hr) + description: Standard workflow to audit monthly benefits within the hr department. + category: hr + services: + - admin + steps: + - Search for monthly benefits records. + - Review and audit the monthly benefits. + - Send a status update to the hr team chat space. +- name: hr-audit-urgent-benefits-256 + title: Audit Urgent Benefits (hr) + description: Standard workflow to audit urgent benefits within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest urgent benefits data. + - Apply hr policies to audit the benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-audit-secure-benefits-257 + title: Audit Secure Benefits (hr) + description: Standard workflow to audit secure benefits within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending secure benefits requests. + - Execute audit procedure on the designated benefits. + - Archive results in a secure Drive folder. +- name: hr-audit-weekly-payroll-258 + title: Audit Weekly Payroll (hr) + description: Standard workflow to audit weekly payroll within the hr department. + category: hr + services: + - drive + steps: + - Search for weekly payroll records. + - Review and audit the weekly payroll. + - Notify stakeholders via email. +- name: hr-audit-monthly-payroll-259 + title: Audit Monthly Payroll (hr) + description: Standard workflow to audit monthly payroll within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest monthly payroll data. + - Apply hr policies to audit the payroll. + - Send a status update to the hr team chat space. +- name: hr-audit-urgent-payroll-260 + title: Audit Urgent Payroll (hr) + description: Standard workflow to audit urgent payroll within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending urgent payroll requests. + - Execute audit procedure on the designated payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-audit-secure-payroll-261 + title: Audit Secure Payroll (hr) + description: Standard workflow to audit secure payroll within the hr department. + category: hr + services: + - calendar + steps: + - Search for secure payroll records. + - Review and audit the secure payroll. + - Archive results in a secure Drive folder. +- name: hr-audit-weekly-performance-review-262 + title: Audit Weekly Performance Review (hr) + description: Standard workflow to audit weekly performance review within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest weekly performance review data. + - Apply hr policies to audit the performance review. + - Notify stakeholders via email. +- name: hr-audit-monthly-performance-review-263 + title: Audit Monthly Performance Review (hr) + description: Standard workflow to audit monthly performance review within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending monthly performance review requests. + - Execute audit procedure on the designated performance review. + - Send a status update to the hr team chat space. +- name: hr-audit-urgent-performance-review-264 + title: Audit Urgent Performance Review (hr) + description: Standard workflow to audit urgent performance review within the hr department. + category: hr + services: + - gmail + steps: + - Search for urgent performance review records. + - Review and audit the urgent performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-audit-secure-performance-review-265 + title: Audit Secure Performance Review (hr) + description: Standard workflow to audit secure performance review within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest secure performance review data. + - Apply hr policies to audit the performance review. + - Archive results in a secure Drive folder. +- name: hr-audit-weekly-onboarding-checklist-266 + title: Audit Weekly Onboarding Checklist (hr) + description: Standard workflow to audit weekly onboarding checklist within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending weekly onboarding checklist requests. + - Execute audit procedure on the designated onboarding checklist. + - Notify stakeholders via email. +- name: hr-audit-monthly-onboarding-checklist-267 + title: Audit Monthly Onboarding Checklist (hr) + description: Standard workflow to audit monthly onboarding checklist within the hr department. + category: hr + services: + - chat + steps: + - Search for monthly onboarding checklist records. + - Review and audit the monthly onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-audit-urgent-onboarding-checklist-268 + title: Audit Urgent Onboarding Checklist (hr) + description: Standard workflow to audit urgent onboarding checklist within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest urgent onboarding checklist data. + - Apply hr policies to audit the onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-audit-secure-onboarding-checklist-269 + title: Audit Secure Onboarding Checklist (hr) + description: Standard workflow to audit secure onboarding checklist within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending secure onboarding checklist requests. + - Execute audit procedure on the designated onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-onboard-weekly-employee-270 + title: Onboard Weekly Employee (hr) + description: Standard workflow to onboard weekly employee within the hr department. + category: hr + services: + - admin + steps: + - Search for weekly employee records. + - Review and onboard the weekly employee. + - Notify stakeholders via email. +- name: hr-onboard-monthly-employee-271 + title: Onboard Monthly Employee (hr) + description: Standard workflow to onboard monthly employee within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest monthly employee data. + - Apply hr policies to onboard the employee. + - Send a status update to the hr team chat space. +- name: hr-onboard-urgent-employee-272 + title: Onboard Urgent Employee (hr) + description: Standard workflow to onboard urgent employee within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending urgent employee requests. + - Execute onboard procedure on the designated employee. + - Log completion in the master tracking spreadsheet. +- name: hr-onboard-secure-employee-273 + title: Onboard Secure Employee (hr) + description: Standard workflow to onboard secure employee within the hr department. + category: hr + services: + - drive + steps: + - Search for secure employee records. + - Review and onboard the secure employee. + - Archive results in a secure Drive folder. +- name: hr-onboard-weekly-candidate-274 + title: Onboard Weekly Candidate (hr) + description: Standard workflow to onboard weekly candidate within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest weekly candidate data. + - Apply hr policies to onboard the candidate. + - Notify stakeholders via email. +- name: hr-onboard-monthly-candidate-275 + title: Onboard Monthly Candidate (hr) + description: Standard workflow to onboard monthly candidate within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending monthly candidate requests. + - Execute onboard procedure on the designated candidate. + - Send a status update to the hr team chat space. +- name: hr-onboard-urgent-candidate-276 + title: Onboard Urgent Candidate (hr) + description: Standard workflow to onboard urgent candidate within the hr department. + category: hr + services: + - calendar + steps: + - Search for urgent candidate records. + - Review and onboard the urgent candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-onboard-secure-candidate-277 + title: Onboard Secure Candidate (hr) + description: Standard workflow to onboard secure candidate within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest secure candidate data. + - Apply hr policies to onboard the candidate. + - Archive results in a secure Drive folder. +- name: hr-onboard-weekly-offer-278 + title: Onboard Weekly Offer (hr) + description: Standard workflow to onboard weekly offer within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending weekly offer requests. + - Execute onboard procedure on the designated offer. + - Notify stakeholders via email. +- name: hr-onboard-monthly-offer-279 + title: Onboard Monthly Offer (hr) + description: Standard workflow to onboard monthly offer within the hr department. + category: hr + services: + - gmail + steps: + - Search for monthly offer records. + - Review and onboard the monthly offer. + - Send a status update to the hr team chat space. +- name: hr-onboard-urgent-offer-280 + title: Onboard Urgent Offer (hr) + description: Standard workflow to onboard urgent offer within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest urgent offer data. + - Apply hr policies to onboard the offer. + - Log completion in the master tracking spreadsheet. +- name: hr-onboard-secure-offer-281 + title: Onboard Secure Offer (hr) + description: Standard workflow to onboard secure offer within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending secure offer requests. + - Execute onboard procedure on the designated offer. + - Archive results in a secure Drive folder. +- name: hr-onboard-weekly-benefits-282 + title: Onboard Weekly Benefits (hr) + description: Standard workflow to onboard weekly benefits within the hr department. + category: hr + services: + - chat + steps: + - Search for weekly benefits records. + - Review and onboard the weekly benefits. + - Notify stakeholders via email. +- name: hr-onboard-monthly-benefits-283 + title: Onboard Monthly Benefits (hr) + description: Standard workflow to onboard monthly benefits within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest monthly benefits data. + - Apply hr policies to onboard the benefits. + - Send a status update to the hr team chat space. +- name: hr-onboard-urgent-benefits-284 + title: Onboard Urgent Benefits (hr) + description: Standard workflow to onboard urgent benefits within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending urgent benefits requests. + - Execute onboard procedure on the designated benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-onboard-secure-benefits-285 + title: Onboard Secure Benefits (hr) + description: Standard workflow to onboard secure benefits within the hr department. + category: hr + services: + - admin + steps: + - Search for secure benefits records. + - Review and onboard the secure benefits. + - Archive results in a secure Drive folder. +- name: hr-onboard-weekly-payroll-286 + title: Onboard Weekly Payroll (hr) + description: Standard workflow to onboard weekly payroll within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest weekly payroll data. + - Apply hr policies to onboard the payroll. + - Notify stakeholders via email. +- name: hr-onboard-monthly-payroll-287 + title: Onboard Monthly Payroll (hr) + description: Standard workflow to onboard monthly payroll within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending monthly payroll requests. + - Execute onboard procedure on the designated payroll. + - Send a status update to the hr team chat space. +- name: hr-onboard-urgent-payroll-288 + title: Onboard Urgent Payroll (hr) + description: Standard workflow to onboard urgent payroll within the hr department. + category: hr + services: + - drive + steps: + - Search for urgent payroll records. + - Review and onboard the urgent payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-onboard-secure-payroll-289 + title: Onboard Secure Payroll (hr) + description: Standard workflow to onboard secure payroll within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest secure payroll data. + - Apply hr policies to onboard the payroll. + - Archive results in a secure Drive folder. +- name: hr-onboard-weekly-performance-review-290 + title: Onboard Weekly Performance Review (hr) + description: Standard workflow to onboard weekly performance review within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending weekly performance review requests. + - Execute onboard procedure on the designated performance review. + - Notify stakeholders via email. +- name: hr-onboard-monthly-performance-review-291 + title: Onboard Monthly Performance Review (hr) + description: Standard workflow to onboard monthly performance review within the hr department. + category: hr + services: + - calendar + steps: + - Search for monthly performance review records. + - Review and onboard the monthly performance review. + - Send a status update to the hr team chat space. +- name: hr-onboard-urgent-performance-review-292 + title: Onboard Urgent Performance Review (hr) + description: Standard workflow to onboard urgent performance review within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest urgent performance review data. + - Apply hr policies to onboard the performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-onboard-secure-performance-review-293 + title: Onboard Secure Performance Review (hr) + description: Standard workflow to onboard secure performance review within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending secure performance review requests. + - Execute onboard procedure on the designated performance review. + - Archive results in a secure Drive folder. +- name: hr-onboard-weekly-onboarding-checklist-294 + title: Onboard Weekly Onboarding Checklist (hr) + description: Standard workflow to onboard weekly onboarding checklist within the hr department. + category: hr + services: + - gmail + steps: + - Search for weekly onboarding checklist records. + - Review and onboard the weekly onboarding checklist. + - Notify stakeholders via email. +- name: hr-onboard-monthly-onboarding-checklist-295 + title: Onboard Monthly Onboarding Checklist (hr) + description: Standard workflow to onboard monthly onboarding checklist within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest monthly onboarding checklist data. + - Apply hr policies to onboard the onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-onboard-urgent-onboarding-checklist-296 + title: Onboard Urgent Onboarding Checklist (hr) + description: Standard workflow to onboard urgent onboarding checklist within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent onboarding checklist requests. + - Execute onboard procedure on the designated onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-onboard-secure-onboarding-checklist-297 + title: Onboard Secure Onboarding Checklist (hr) + description: Standard workflow to onboard secure onboarding checklist within the hr department. + category: hr + services: + - chat + steps: + - Search for secure onboarding checklist records. + - Review and onboard the secure onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-review-weekly-employee-298 + title: Review Weekly Employee (hr) + description: Standard workflow to review weekly employee within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest weekly employee data. + - Apply hr policies to review the employee. + - Notify stakeholders via email. +- name: hr-review-monthly-employee-299 + title: Review Monthly Employee (hr) + description: Standard workflow to review monthly employee within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending monthly employee requests. + - Execute review procedure on the designated employee. + - Send a status update to the hr team chat space. +- name: hr-review-urgent-employee-300 + title: Review Urgent Employee (hr) + description: Standard workflow to review urgent employee within the hr department. + category: hr + services: + - admin + steps: + - Search for urgent employee records. + - Review and review the urgent employee. + - Log completion in the master tracking spreadsheet. +- name: hr-review-secure-employee-301 + title: Review Secure Employee (hr) + description: Standard workflow to review secure employee within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest secure employee data. + - Apply hr policies to review the employee. + - Archive results in a secure Drive folder. +- name: hr-review-weekly-candidate-302 + title: Review Weekly Candidate (hr) + description: Standard workflow to review weekly candidate within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending weekly candidate requests. + - Execute review procedure on the designated candidate. + - Notify stakeholders via email. +- name: hr-review-monthly-candidate-303 + title: Review Monthly Candidate (hr) + description: Standard workflow to review monthly candidate within the hr department. + category: hr + services: + - drive + steps: + - Search for monthly candidate records. + - Review and review the monthly candidate. + - Send a status update to the hr team chat space. +- name: hr-review-urgent-candidate-304 + title: Review Urgent Candidate (hr) + description: Standard workflow to review urgent candidate within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest urgent candidate data. + - Apply hr policies to review the candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-review-secure-candidate-305 + title: Review Secure Candidate (hr) + description: Standard workflow to review secure candidate within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending secure candidate requests. + - Execute review procedure on the designated candidate. + - Archive results in a secure Drive folder. +- name: hr-review-weekly-offer-306 + title: Review Weekly Offer (hr) + description: Standard workflow to review weekly offer within the hr department. + category: hr + services: + - calendar + steps: + - Search for weekly offer records. + - Review and review the weekly offer. + - Notify stakeholders via email. +- name: hr-review-monthly-offer-307 + title: Review Monthly Offer (hr) + description: Standard workflow to review monthly offer within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest monthly offer data. + - Apply hr policies to review the offer. + - Send a status update to the hr team chat space. +- name: hr-review-urgent-offer-308 + title: Review Urgent Offer (hr) + description: Standard workflow to review urgent offer within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending urgent offer requests. + - Execute review procedure on the designated offer. + - Log completion in the master tracking spreadsheet. +- name: hr-review-secure-offer-309 + title: Review Secure Offer (hr) + description: Standard workflow to review secure offer within the hr department. + category: hr + services: + - gmail + steps: + - Search for secure offer records. + - Review and review the secure offer. + - Archive results in a secure Drive folder. +- name: hr-review-weekly-benefits-310 + title: Review Weekly Benefits (hr) + description: Standard workflow to review weekly benefits within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest weekly benefits data. + - Apply hr policies to review the benefits. + - Notify stakeholders via email. +- name: hr-review-monthly-benefits-311 + title: Review Monthly Benefits (hr) + description: Standard workflow to review monthly benefits within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending monthly benefits requests. + - Execute review procedure on the designated benefits. + - Send a status update to the hr team chat space. +- name: hr-review-urgent-benefits-312 + title: Review Urgent Benefits (hr) + description: Standard workflow to review urgent benefits within the hr department. + category: hr + services: + - chat + steps: + - Search for urgent benefits records. + - Review and review the urgent benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-review-secure-benefits-313 + title: Review Secure Benefits (hr) + description: Standard workflow to review secure benefits within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest secure benefits data. + - Apply hr policies to review the benefits. + - Archive results in a secure Drive folder. +- name: hr-review-weekly-payroll-314 + title: Review Weekly Payroll (hr) + description: Standard workflow to review weekly payroll within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending weekly payroll requests. + - Execute review procedure on the designated payroll. + - Notify stakeholders via email. +- name: hr-review-monthly-payroll-315 + title: Review Monthly Payroll (hr) + description: Standard workflow to review monthly payroll within the hr department. + category: hr + services: + - admin + steps: + - Search for monthly payroll records. + - Review and review the monthly payroll. + - Send a status update to the hr team chat space. +- name: hr-review-urgent-payroll-316 + title: Review Urgent Payroll (hr) + description: Standard workflow to review urgent payroll within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest urgent payroll data. + - Apply hr policies to review the payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-review-secure-payroll-317 + title: Review Secure Payroll (hr) + description: Standard workflow to review secure payroll within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending secure payroll requests. + - Execute review procedure on the designated payroll. + - Archive results in a secure Drive folder. +- name: hr-review-weekly-performance-review-318 + title: Review Weekly Performance Review (hr) + description: Standard workflow to review weekly performance review within the hr department. + category: hr + services: + - drive + steps: + - Search for weekly performance review records. + - Review and review the weekly performance review. + - Notify stakeholders via email. +- name: hr-review-monthly-performance-review-319 + title: Review Monthly Performance Review (hr) + description: Standard workflow to review monthly performance review within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest monthly performance review data. + - Apply hr policies to review the performance review. + - Send a status update to the hr team chat space. +- name: hr-review-urgent-performance-review-320 + title: Review Urgent Performance Review (hr) + description: Standard workflow to review urgent performance review within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending urgent performance review requests. + - Execute review procedure on the designated performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-review-secure-performance-review-321 + title: Review Secure Performance Review (hr) + description: Standard workflow to review secure performance review within the hr department. + category: hr + services: + - calendar + steps: + - Search for secure performance review records. + - Review and review the secure performance review. + - Archive results in a secure Drive folder. +- name: hr-review-weekly-onboarding-checklist-322 + title: Review Weekly Onboarding Checklist (hr) + description: Standard workflow to review weekly onboarding checklist within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest weekly onboarding checklist data. + - Apply hr policies to review the onboarding checklist. + - Notify stakeholders via email. +- name: hr-review-monthly-onboarding-checklist-323 + title: Review Monthly Onboarding Checklist (hr) + description: Standard workflow to review monthly onboarding checklist within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending monthly onboarding checklist requests. + - Execute review procedure on the designated onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-review-urgent-onboarding-checklist-324 + title: Review Urgent Onboarding Checklist (hr) + description: Standard workflow to review urgent onboarding checklist within the hr department. + category: hr + services: + - gmail + steps: + - Search for urgent onboarding checklist records. + - Review and review the urgent onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-review-secure-onboarding-checklist-325 + title: Review Secure Onboarding Checklist (hr) + description: Standard workflow to review secure onboarding checklist within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest secure onboarding checklist data. + - Apply hr policies to review the onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-approve-weekly-employee-326 + title: Approve Weekly Employee (hr) + description: Standard workflow to approve weekly employee within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending weekly employee requests. + - Execute approve procedure on the designated employee. + - Notify stakeholders via email. +- name: hr-approve-monthly-employee-327 + title: Approve Monthly Employee (hr) + description: Standard workflow to approve monthly employee within the hr department. + category: hr + services: + - chat + steps: + - Search for monthly employee records. + - Review and approve the monthly employee. + - Send a status update to the hr team chat space. +- name: hr-approve-urgent-employee-328 + title: Approve Urgent Employee (hr) + description: Standard workflow to approve urgent employee within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest urgent employee data. + - Apply hr policies to approve the employee. + - Log completion in the master tracking spreadsheet. +- name: hr-approve-secure-employee-329 + title: Approve Secure Employee (hr) + description: Standard workflow to approve secure employee within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending secure employee requests. + - Execute approve procedure on the designated employee. + - Archive results in a secure Drive folder. +- name: hr-approve-weekly-candidate-330 + title: Approve Weekly Candidate (hr) + description: Standard workflow to approve weekly candidate within the hr department. + category: hr + services: + - admin + steps: + - Search for weekly candidate records. + - Review and approve the weekly candidate. + - Notify stakeholders via email. +- name: hr-approve-monthly-candidate-331 + title: Approve Monthly Candidate (hr) + description: Standard workflow to approve monthly candidate within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest monthly candidate data. + - Apply hr policies to approve the candidate. + - Send a status update to the hr team chat space. +- name: hr-approve-urgent-candidate-332 + title: Approve Urgent Candidate (hr) + description: Standard workflow to approve urgent candidate within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending urgent candidate requests. + - Execute approve procedure on the designated candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-approve-secure-candidate-333 + title: Approve Secure Candidate (hr) + description: Standard workflow to approve secure candidate within the hr department. + category: hr + services: + - drive + steps: + - Search for secure candidate records. + - Review and approve the secure candidate. + - Archive results in a secure Drive folder. +- name: hr-approve-weekly-offer-334 + title: Approve Weekly Offer (hr) + description: Standard workflow to approve weekly offer within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest weekly offer data. + - Apply hr policies to approve the offer. + - Notify stakeholders via email. +- name: hr-approve-monthly-offer-335 + title: Approve Monthly Offer (hr) + description: Standard workflow to approve monthly offer within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending monthly offer requests. + - Execute approve procedure on the designated offer. + - Send a status update to the hr team chat space. +- name: hr-approve-urgent-offer-336 + title: Approve Urgent Offer (hr) + description: Standard workflow to approve urgent offer within the hr department. + category: hr + services: + - calendar + steps: + - Search for urgent offer records. + - Review and approve the urgent offer. + - Log completion in the master tracking spreadsheet. +- name: hr-approve-secure-offer-337 + title: Approve Secure Offer (hr) + description: Standard workflow to approve secure offer within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest secure offer data. + - Apply hr policies to approve the offer. + - Archive results in a secure Drive folder. +- name: hr-approve-weekly-benefits-338 + title: Approve Weekly Benefits (hr) + description: Standard workflow to approve weekly benefits within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending weekly benefits requests. + - Execute approve procedure on the designated benefits. + - Notify stakeholders via email. +- name: hr-approve-monthly-benefits-339 + title: Approve Monthly Benefits (hr) + description: Standard workflow to approve monthly benefits within the hr department. + category: hr + services: + - gmail + steps: + - Search for monthly benefits records. + - Review and approve the monthly benefits. + - Send a status update to the hr team chat space. +- name: hr-approve-urgent-benefits-340 + title: Approve Urgent Benefits (hr) + description: Standard workflow to approve urgent benefits within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest urgent benefits data. + - Apply hr policies to approve the benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-approve-secure-benefits-341 + title: Approve Secure Benefits (hr) + description: Standard workflow to approve secure benefits within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending secure benefits requests. + - Execute approve procedure on the designated benefits. + - Archive results in a secure Drive folder. +- name: hr-approve-weekly-payroll-342 + title: Approve Weekly Payroll (hr) + description: Standard workflow to approve weekly payroll within the hr department. + category: hr + services: + - chat + steps: + - Search for weekly payroll records. + - Review and approve the weekly payroll. + - Notify stakeholders via email. +- name: hr-approve-monthly-payroll-343 + title: Approve Monthly Payroll (hr) + description: Standard workflow to approve monthly payroll within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest monthly payroll data. + - Apply hr policies to approve the payroll. + - Send a status update to the hr team chat space. +- name: hr-approve-urgent-payroll-344 + title: Approve Urgent Payroll (hr) + description: Standard workflow to approve urgent payroll within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending urgent payroll requests. + - Execute approve procedure on the designated payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-approve-secure-payroll-345 + title: Approve Secure Payroll (hr) + description: Standard workflow to approve secure payroll within the hr department. + category: hr + services: + - admin + steps: + - Search for secure payroll records. + - Review and approve the secure payroll. + - Archive results in a secure Drive folder. +- name: hr-approve-weekly-performance-review-346 + title: Approve Weekly Performance Review (hr) + description: Standard workflow to approve weekly performance review within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest weekly performance review data. + - Apply hr policies to approve the performance review. + - Notify stakeholders via email. +- name: hr-approve-monthly-performance-review-347 + title: Approve Monthly Performance Review (hr) + description: Standard workflow to approve monthly performance review within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending monthly performance review requests. + - Execute approve procedure on the designated performance review. + - Send a status update to the hr team chat space. +- name: hr-approve-urgent-performance-review-348 + title: Approve Urgent Performance Review (hr) + description: Standard workflow to approve urgent performance review within the hr department. + category: hr + services: + - drive + steps: + - Search for urgent performance review records. + - Review and approve the urgent performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-approve-secure-performance-review-349 + title: Approve Secure Performance Review (hr) + description: Standard workflow to approve secure performance review within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest secure performance review data. + - Apply hr policies to approve the performance review. + - Archive results in a secure Drive folder. +- name: hr-approve-weekly-onboarding-checklist-350 + title: Approve Weekly Onboarding Checklist (hr) + description: Standard workflow to approve weekly onboarding checklist within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending weekly onboarding checklist requests. + - Execute approve procedure on the designated onboarding checklist. + - Notify stakeholders via email. +- name: hr-approve-monthly-onboarding-checklist-351 + title: Approve Monthly Onboarding Checklist (hr) + description: Standard workflow to approve monthly onboarding checklist within the hr department. + category: hr + services: + - calendar + steps: + - Search for monthly onboarding checklist records. + - Review and approve the monthly onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-approve-urgent-onboarding-checklist-352 + title: Approve Urgent Onboarding Checklist (hr) + description: Standard workflow to approve urgent onboarding checklist within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest urgent onboarding checklist data. + - Apply hr policies to approve the onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-approve-secure-onboarding-checklist-353 + title: Approve Secure Onboarding Checklist (hr) + description: Standard workflow to approve secure onboarding checklist within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending secure onboarding checklist requests. + - Execute approve procedure on the designated onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-share-weekly-employee-354 + title: Share Weekly Employee (hr) + description: Standard workflow to share weekly employee within the hr department. + category: hr + services: + - gmail + steps: + - Search for weekly employee records. + - Review and share the weekly employee. + - Notify stakeholders via email. +- name: hr-share-monthly-employee-355 + title: Share Monthly Employee (hr) + description: Standard workflow to share monthly employee within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest monthly employee data. + - Apply hr policies to share the employee. + - Send a status update to the hr team chat space. +- name: hr-share-urgent-employee-356 + title: Share Urgent Employee (hr) + description: Standard workflow to share urgent employee within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent employee requests. + - Execute share procedure on the designated employee. + - Log completion in the master tracking spreadsheet. +- name: hr-share-secure-employee-357 + title: Share Secure Employee (hr) + description: Standard workflow to share secure employee within the hr department. + category: hr + services: + - chat + steps: + - Search for secure employee records. + - Review and share the secure employee. + - Archive results in a secure Drive folder. +- name: hr-share-weekly-candidate-358 + title: Share Weekly Candidate (hr) + description: Standard workflow to share weekly candidate within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest weekly candidate data. + - Apply hr policies to share the candidate. + - Notify stakeholders via email. +- name: hr-share-monthly-candidate-359 + title: Share Monthly Candidate (hr) + description: Standard workflow to share monthly candidate within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending monthly candidate requests. + - Execute share procedure on the designated candidate. + - Send a status update to the hr team chat space. +- name: hr-share-urgent-candidate-360 + title: Share Urgent Candidate (hr) + description: Standard workflow to share urgent candidate within the hr department. + category: hr + services: + - admin + steps: + - Search for urgent candidate records. + - Review and share the urgent candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-share-secure-candidate-361 + title: Share Secure Candidate (hr) + description: Standard workflow to share secure candidate within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest secure candidate data. + - Apply hr policies to share the candidate. + - Archive results in a secure Drive folder. +- name: hr-share-weekly-offer-362 + title: Share Weekly Offer (hr) + description: Standard workflow to share weekly offer within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending weekly offer requests. + - Execute share procedure on the designated offer. + - Notify stakeholders via email. +- name: hr-share-monthly-offer-363 + title: Share Monthly Offer (hr) + description: Standard workflow to share monthly offer within the hr department. + category: hr + services: + - drive + steps: + - Search for monthly offer records. + - Review and share the monthly offer. + - Send a status update to the hr team chat space. +- name: hr-share-urgent-offer-364 + title: Share Urgent Offer (hr) + description: Standard workflow to share urgent offer within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest urgent offer data. + - Apply hr policies to share the offer. + - Log completion in the master tracking spreadsheet. +- name: hr-share-secure-offer-365 + title: Share Secure Offer (hr) + description: Standard workflow to share secure offer within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending secure offer requests. + - Execute share procedure on the designated offer. + - Archive results in a secure Drive folder. +- name: hr-share-weekly-benefits-366 + title: Share Weekly Benefits (hr) + description: Standard workflow to share weekly benefits within the hr department. + category: hr + services: + - calendar + steps: + - Search for weekly benefits records. + - Review and share the weekly benefits. + - Notify stakeholders via email. +- name: hr-share-monthly-benefits-367 + title: Share Monthly Benefits (hr) + description: Standard workflow to share monthly benefits within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest monthly benefits data. + - Apply hr policies to share the benefits. + - Send a status update to the hr team chat space. +- name: hr-share-urgent-benefits-368 + title: Share Urgent Benefits (hr) + description: Standard workflow to share urgent benefits within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending urgent benefits requests. + - Execute share procedure on the designated benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-share-secure-benefits-369 + title: Share Secure Benefits (hr) + description: Standard workflow to share secure benefits within the hr department. + category: hr + services: + - gmail + steps: + - Search for secure benefits records. + - Review and share the secure benefits. + - Archive results in a secure Drive folder. +- name: hr-share-weekly-payroll-370 + title: Share Weekly Payroll (hr) + description: Standard workflow to share weekly payroll within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest weekly payroll data. + - Apply hr policies to share the payroll. + - Notify stakeholders via email. +- name: hr-share-monthly-payroll-371 + title: Share Monthly Payroll (hr) + description: Standard workflow to share monthly payroll within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending monthly payroll requests. + - Execute share procedure on the designated payroll. + - Send a status update to the hr team chat space. +- name: hr-share-urgent-payroll-372 + title: Share Urgent Payroll (hr) + description: Standard workflow to share urgent payroll within the hr department. + category: hr + services: + - chat + steps: + - Search for urgent payroll records. + - Review and share the urgent payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-share-secure-payroll-373 + title: Share Secure Payroll (hr) + description: Standard workflow to share secure payroll within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest secure payroll data. + - Apply hr policies to share the payroll. + - Archive results in a secure Drive folder. +- name: hr-share-weekly-performance-review-374 + title: Share Weekly Performance Review (hr) + description: Standard workflow to share weekly performance review within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending weekly performance review requests. + - Execute share procedure on the designated performance review. + - Notify stakeholders via email. +- name: hr-share-monthly-performance-review-375 + title: Share Monthly Performance Review (hr) + description: Standard workflow to share monthly performance review within the hr department. + category: hr + services: + - admin + steps: + - Search for monthly performance review records. + - Review and share the monthly performance review. + - Send a status update to the hr team chat space. +- name: hr-share-urgent-performance-review-376 + title: Share Urgent Performance Review (hr) + description: Standard workflow to share urgent performance review within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest urgent performance review data. + - Apply hr policies to share the performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-share-secure-performance-review-377 + title: Share Secure Performance Review (hr) + description: Standard workflow to share secure performance review within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending secure performance review requests. + - Execute share procedure on the designated performance review. + - Archive results in a secure Drive folder. +- name: hr-share-weekly-onboarding-checklist-378 + title: Share Weekly Onboarding Checklist (hr) + description: Standard workflow to share weekly onboarding checklist within the hr department. + category: hr + services: + - drive + steps: + - Search for weekly onboarding checklist records. + - Review and share the weekly onboarding checklist. + - Notify stakeholders via email. +- name: hr-share-monthly-onboarding-checklist-379 + title: Share Monthly Onboarding Checklist (hr) + description: Standard workflow to share monthly onboarding checklist within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest monthly onboarding checklist data. + - Apply hr policies to share the onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-share-urgent-onboarding-checklist-380 + title: Share Urgent Onboarding Checklist (hr) + description: Standard workflow to share urgent onboarding checklist within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending urgent onboarding checklist requests. + - Execute share procedure on the designated onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-share-secure-onboarding-checklist-381 + title: Share Secure Onboarding Checklist (hr) + description: Standard workflow to share secure onboarding checklist within the hr department. + category: hr + services: + - calendar + steps: + - Search for secure onboarding checklist records. + - Review and share the secure onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-publish-weekly-employee-382 + title: Publish Weekly Employee (hr) + description: Standard workflow to publish weekly employee within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest weekly employee data. + - Apply hr policies to publish the employee. + - Notify stakeholders via email. +- name: hr-publish-monthly-employee-383 + title: Publish Monthly Employee (hr) + description: Standard workflow to publish monthly employee within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending monthly employee requests. + - Execute publish procedure on the designated employee. + - Send a status update to the hr team chat space. +- name: hr-publish-urgent-employee-384 + title: Publish Urgent Employee (hr) + description: Standard workflow to publish urgent employee within the hr department. + category: hr + services: + - gmail + steps: + - Search for urgent employee records. + - Review and publish the urgent employee. + - Log completion in the master tracking spreadsheet. +- name: hr-publish-secure-employee-385 + title: Publish Secure Employee (hr) + description: Standard workflow to publish secure employee within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest secure employee data. + - Apply hr policies to publish the employee. + - Archive results in a secure Drive folder. +- name: hr-publish-weekly-candidate-386 + title: Publish Weekly Candidate (hr) + description: Standard workflow to publish weekly candidate within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending weekly candidate requests. + - Execute publish procedure on the designated candidate. + - Notify stakeholders via email. +- name: hr-publish-monthly-candidate-387 + title: Publish Monthly Candidate (hr) + description: Standard workflow to publish monthly candidate within the hr department. + category: hr + services: + - chat + steps: + - Search for monthly candidate records. + - Review and publish the monthly candidate. + - Send a status update to the hr team chat space. +- name: hr-publish-urgent-candidate-388 + title: Publish Urgent Candidate (hr) + description: Standard workflow to publish urgent candidate within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest urgent candidate data. + - Apply hr policies to publish the candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-publish-secure-candidate-389 + title: Publish Secure Candidate (hr) + description: Standard workflow to publish secure candidate within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending secure candidate requests. + - Execute publish procedure on the designated candidate. + - Archive results in a secure Drive folder. +- name: hr-publish-weekly-offer-390 + title: Publish Weekly Offer (hr) + description: Standard workflow to publish weekly offer within the hr department. + category: hr + services: + - admin + steps: + - Search for weekly offer records. + - Review and publish the weekly offer. + - Notify stakeholders via email. +- name: hr-publish-monthly-offer-391 + title: Publish Monthly Offer (hr) + description: Standard workflow to publish monthly offer within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest monthly offer data. + - Apply hr policies to publish the offer. + - Send a status update to the hr team chat space. +- name: hr-publish-urgent-offer-392 + title: Publish Urgent Offer (hr) + description: Standard workflow to publish urgent offer within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending urgent offer requests. + - Execute publish procedure on the designated offer. + - Log completion in the master tracking spreadsheet. +- name: hr-publish-secure-offer-393 + title: Publish Secure Offer (hr) + description: Standard workflow to publish secure offer within the hr department. + category: hr + services: + - drive + steps: + - Search for secure offer records. + - Review and publish the secure offer. + - Archive results in a secure Drive folder. +- name: hr-publish-weekly-benefits-394 + title: Publish Weekly Benefits (hr) + description: Standard workflow to publish weekly benefits within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest weekly benefits data. + - Apply hr policies to publish the benefits. + - Notify stakeholders via email. +- name: hr-publish-monthly-benefits-395 + title: Publish Monthly Benefits (hr) + description: Standard workflow to publish monthly benefits within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending monthly benefits requests. + - Execute publish procedure on the designated benefits. + - Send a status update to the hr team chat space. +- name: hr-publish-urgent-benefits-396 + title: Publish Urgent Benefits (hr) + description: Standard workflow to publish urgent benefits within the hr department. + category: hr + services: + - calendar + steps: + - Search for urgent benefits records. + - Review and publish the urgent benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-publish-secure-benefits-397 + title: Publish Secure Benefits (hr) + description: Standard workflow to publish secure benefits within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest secure benefits data. + - Apply hr policies to publish the benefits. + - Archive results in a secure Drive folder. +- name: hr-publish-weekly-payroll-398 + title: Publish Weekly Payroll (hr) + description: Standard workflow to publish weekly payroll within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending weekly payroll requests. + - Execute publish procedure on the designated payroll. + - Notify stakeholders via email. +- name: hr-publish-monthly-payroll-399 + title: Publish Monthly Payroll (hr) + description: Standard workflow to publish monthly payroll within the hr department. + category: hr + services: + - gmail + steps: + - Search for monthly payroll records. + - Review and publish the monthly payroll. + - Send a status update to the hr team chat space. +- name: hr-publish-urgent-payroll-400 + title: Publish Urgent Payroll (hr) + description: Standard workflow to publish urgent payroll within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest urgent payroll data. + - Apply hr policies to publish the payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-publish-secure-payroll-401 + title: Publish Secure Payroll (hr) + description: Standard workflow to publish secure payroll within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending secure payroll requests. + - Execute publish procedure on the designated payroll. + - Archive results in a secure Drive folder. +- name: hr-publish-weekly-performance-review-402 + title: Publish Weekly Performance Review (hr) + description: Standard workflow to publish weekly performance review within the hr department. + category: hr + services: + - chat + steps: + - Search for weekly performance review records. + - Review and publish the weekly performance review. + - Notify stakeholders via email. +- name: hr-publish-monthly-performance-review-403 + title: Publish Monthly Performance Review (hr) + description: Standard workflow to publish monthly performance review within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest monthly performance review data. + - Apply hr policies to publish the performance review. + - Send a status update to the hr team chat space. +- name: hr-publish-urgent-performance-review-404 + title: Publish Urgent Performance Review (hr) + description: Standard workflow to publish urgent performance review within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending urgent performance review requests. + - Execute publish procedure on the designated performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-publish-secure-performance-review-405 + title: Publish Secure Performance Review (hr) + description: Standard workflow to publish secure performance review within the hr department. + category: hr + services: + - admin + steps: + - Search for secure performance review records. + - Review and publish the secure performance review. + - Archive results in a secure Drive folder. +- name: hr-publish-weekly-onboarding-checklist-406 + title: Publish Weekly Onboarding Checklist (hr) + description: Standard workflow to publish weekly onboarding checklist within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest weekly onboarding checklist data. + - Apply hr policies to publish the onboarding checklist. + - Notify stakeholders via email. +- name: hr-publish-monthly-onboarding-checklist-407 + title: Publish Monthly Onboarding Checklist (hr) + description: Standard workflow to publish monthly onboarding checklist within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending monthly onboarding checklist requests. + - Execute publish procedure on the designated onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-publish-urgent-onboarding-checklist-408 + title: Publish Urgent Onboarding Checklist (hr) + description: Standard workflow to publish urgent onboarding checklist within the hr department. + category: hr + services: + - drive + steps: + - Search for urgent onboarding checklist records. + - Review and publish the urgent onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-publish-secure-onboarding-checklist-409 + title: Publish Secure Onboarding Checklist (hr) + description: Standard workflow to publish secure onboarding checklist within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest secure onboarding checklist data. + - Apply hr policies to publish the onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-archive-weekly-employee-410 + title: Archive Weekly Employee (hr) + description: Standard workflow to archive weekly employee within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending weekly employee requests. + - Execute archive procedure on the designated employee. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly employee targets before running. +- name: hr-archive-monthly-employee-411 + title: Archive Monthly Employee (hr) + description: Standard workflow to archive monthly employee within the hr department. + category: hr + services: + - calendar + steps: + - Search for monthly employee records. + - Review and archive the monthly employee. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly employee targets before running. +- name: hr-archive-urgent-employee-412 + title: Archive Urgent Employee (hr) + description: Standard workflow to archive urgent employee within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest urgent employee data. + - Apply hr policies to archive the employee. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent employee targets before running. +- name: hr-archive-secure-employee-413 + title: Archive Secure Employee (hr) + description: Standard workflow to archive secure employee within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending secure employee requests. + - Execute archive procedure on the designated employee. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure employee targets before running. +- name: hr-archive-weekly-candidate-414 + title: Archive Weekly Candidate (hr) + description: Standard workflow to archive weekly candidate within the hr department. + category: hr + services: + - gmail + steps: + - Search for weekly candidate records. + - Review and archive the weekly candidate. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly candidate targets before running. +- name: hr-archive-monthly-candidate-415 + title: Archive Monthly Candidate (hr) + description: Standard workflow to archive monthly candidate within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest monthly candidate data. + - Apply hr policies to archive the candidate. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly candidate targets before running. +- name: hr-archive-urgent-candidate-416 + title: Archive Urgent Candidate (hr) + description: Standard workflow to archive urgent candidate within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent candidate requests. + - Execute archive procedure on the designated candidate. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent candidate targets before running. +- name: hr-archive-secure-candidate-417 + title: Archive Secure Candidate (hr) + description: Standard workflow to archive secure candidate within the hr department. + category: hr + services: + - chat + steps: + - Search for secure candidate records. + - Review and archive the secure candidate. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure candidate targets before running. +- name: hr-archive-weekly-offer-418 + title: Archive Weekly Offer (hr) + description: Standard workflow to archive weekly offer within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest weekly offer data. + - Apply hr policies to archive the offer. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly offer targets before running. +- name: hr-archive-monthly-offer-419 + title: Archive Monthly Offer (hr) + description: Standard workflow to archive monthly offer within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending monthly offer requests. + - Execute archive procedure on the designated offer. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly offer targets before running. +- name: hr-archive-urgent-offer-420 + title: Archive Urgent Offer (hr) + description: Standard workflow to archive urgent offer within the hr department. + category: hr + services: + - admin + steps: + - Search for urgent offer records. + - Review and archive the urgent offer. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent offer targets before running. +- name: hr-archive-secure-offer-421 + title: Archive Secure Offer (hr) + description: Standard workflow to archive secure offer within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest secure offer data. + - Apply hr policies to archive the offer. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure offer targets before running. +- name: hr-archive-weekly-benefits-422 + title: Archive Weekly Benefits (hr) + description: Standard workflow to archive weekly benefits within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending weekly benefits requests. + - Execute archive procedure on the designated benefits. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly benefits targets before running. +- name: hr-archive-monthly-benefits-423 + title: Archive Monthly Benefits (hr) + description: Standard workflow to archive monthly benefits within the hr department. + category: hr + services: + - drive + steps: + - Search for monthly benefits records. + - Review and archive the monthly benefits. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly benefits targets before running. +- name: hr-archive-urgent-benefits-424 + title: Archive Urgent Benefits (hr) + description: Standard workflow to archive urgent benefits within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest urgent benefits data. + - Apply hr policies to archive the benefits. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent benefits targets before running. +- name: hr-archive-secure-benefits-425 + title: Archive Secure Benefits (hr) + description: Standard workflow to archive secure benefits within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending secure benefits requests. + - Execute archive procedure on the designated benefits. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure benefits targets before running. +- name: hr-archive-weekly-payroll-426 + title: Archive Weekly Payroll (hr) + description: Standard workflow to archive weekly payroll within the hr department. + category: hr + services: + - calendar + steps: + - Search for weekly payroll records. + - Review and archive the weekly payroll. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly payroll targets before running. +- name: hr-archive-monthly-payroll-427 + title: Archive Monthly Payroll (hr) + description: Standard workflow to archive monthly payroll within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest monthly payroll data. + - Apply hr policies to archive the payroll. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly payroll targets before running. +- name: hr-archive-urgent-payroll-428 + title: Archive Urgent Payroll (hr) + description: Standard workflow to archive urgent payroll within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending urgent payroll requests. + - Execute archive procedure on the designated payroll. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent payroll targets before running. +- name: hr-archive-secure-payroll-429 + title: Archive Secure Payroll (hr) + description: Standard workflow to archive secure payroll within the hr department. + category: hr + services: + - gmail + steps: + - Search for secure payroll records. + - Review and archive the secure payroll. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure payroll targets before running. +- name: hr-archive-weekly-performance-review-430 + title: Archive Weekly Performance Review (hr) + description: Standard workflow to archive weekly performance review within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest weekly performance review data. + - Apply hr policies to archive the performance review. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly performance review targets before running. +- name: hr-archive-monthly-performance-review-431 + title: Archive Monthly Performance Review (hr) + description: Standard workflow to archive monthly performance review within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending monthly performance review requests. + - Execute archive procedure on the designated performance review. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly performance review targets before running. +- name: hr-archive-urgent-performance-review-432 + title: Archive Urgent Performance Review (hr) + description: Standard workflow to archive urgent performance review within the hr department. + category: hr + services: + - chat + steps: + - Search for urgent performance review records. + - Review and archive the urgent performance review. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent performance review targets before running. +- name: hr-archive-secure-performance-review-433 + title: Archive Secure Performance Review (hr) + description: Standard workflow to archive secure performance review within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest secure performance review data. + - Apply hr policies to archive the performance review. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure performance review targets before running. +- name: hr-archive-weekly-onboarding-checklist-434 + title: Archive Weekly Onboarding Checklist (hr) + description: Standard workflow to archive weekly onboarding checklist within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending weekly onboarding checklist requests. + - Execute archive procedure on the designated onboarding checklist. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly onboarding checklist targets before running. +- name: hr-archive-monthly-onboarding-checklist-435 + title: Archive Monthly Onboarding Checklist (hr) + description: Standard workflow to archive monthly onboarding checklist within the hr department. + category: hr + services: + - admin + steps: + - Search for monthly onboarding checklist records. + - Review and archive the monthly onboarding checklist. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly onboarding checklist targets before running. +- name: hr-archive-urgent-onboarding-checklist-436 + title: Archive Urgent Onboarding Checklist (hr) + description: Standard workflow to archive urgent onboarding checklist within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest urgent onboarding checklist data. + - Apply hr policies to archive the onboarding checklist. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent onboarding checklist targets before running. +- name: hr-archive-secure-onboarding-checklist-437 + title: Archive Secure Onboarding Checklist (hr) + description: Standard workflow to archive secure onboarding checklist within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending secure onboarding checklist requests. + - Execute archive procedure on the designated onboarding checklist. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure onboarding checklist targets before running. +- name: hr-export-weekly-employee-438 + title: Export Weekly Employee (hr) + description: Standard workflow to export weekly employee within the hr department. + category: hr + services: + - drive + steps: + - Search for weekly employee records. + - Review and export the weekly employee. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly employee targets before running. +- name: hr-export-monthly-employee-439 + title: Export Monthly Employee (hr) + description: Standard workflow to export monthly employee within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest monthly employee data. + - Apply hr policies to export the employee. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly employee targets before running. +- name: hr-export-urgent-employee-440 + title: Export Urgent Employee (hr) + description: Standard workflow to export urgent employee within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending urgent employee requests. + - Execute export procedure on the designated employee. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent employee targets before running. +- name: hr-export-secure-employee-441 + title: Export Secure Employee (hr) + description: Standard workflow to export secure employee within the hr department. + category: hr + services: + - calendar + steps: + - Search for secure employee records. + - Review and export the secure employee. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure employee targets before running. +- name: hr-export-weekly-candidate-442 + title: Export Weekly Candidate (hr) + description: Standard workflow to export weekly candidate within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest weekly candidate data. + - Apply hr policies to export the candidate. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly candidate targets before running. +- name: hr-export-monthly-candidate-443 + title: Export Monthly Candidate (hr) + description: Standard workflow to export monthly candidate within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending monthly candidate requests. + - Execute export procedure on the designated candidate. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly candidate targets before running. +- name: hr-export-urgent-candidate-444 + title: Export Urgent Candidate (hr) + description: Standard workflow to export urgent candidate within the hr department. + category: hr + services: + - gmail + steps: + - Search for urgent candidate records. + - Review and export the urgent candidate. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent candidate targets before running. +- name: hr-export-secure-candidate-445 + title: Export Secure Candidate (hr) + description: Standard workflow to export secure candidate within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest secure candidate data. + - Apply hr policies to export the candidate. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure candidate targets before running. +- name: hr-export-weekly-offer-446 + title: Export Weekly Offer (hr) + description: Standard workflow to export weekly offer within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending weekly offer requests. + - Execute export procedure on the designated offer. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly offer targets before running. +- name: hr-export-monthly-offer-447 + title: Export Monthly Offer (hr) + description: Standard workflow to export monthly offer within the hr department. + category: hr + services: + - chat + steps: + - Search for monthly offer records. + - Review and export the monthly offer. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly offer targets before running. +- name: hr-export-urgent-offer-448 + title: Export Urgent Offer (hr) + description: Standard workflow to export urgent offer within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest urgent offer data. + - Apply hr policies to export the offer. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent offer targets before running. +- name: hr-export-secure-offer-449 + title: Export Secure Offer (hr) + description: Standard workflow to export secure offer within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending secure offer requests. + - Execute export procedure on the designated offer. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure offer targets before running. +- name: hr-export-weekly-benefits-450 + title: Export Weekly Benefits (hr) + description: Standard workflow to export weekly benefits within the hr department. + category: hr + services: + - admin + steps: + - Search for weekly benefits records. + - Review and export the weekly benefits. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly benefits targets before running. +- name: hr-export-monthly-benefits-451 + title: Export Monthly Benefits (hr) + description: Standard workflow to export monthly benefits within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest monthly benefits data. + - Apply hr policies to export the benefits. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly benefits targets before running. +- name: hr-export-urgent-benefits-452 + title: Export Urgent Benefits (hr) + description: Standard workflow to export urgent benefits within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending urgent benefits requests. + - Execute export procedure on the designated benefits. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent benefits targets before running. +- name: hr-export-secure-benefits-453 + title: Export Secure Benefits (hr) + description: Standard workflow to export secure benefits within the hr department. + category: hr + services: + - drive + steps: + - Search for secure benefits records. + - Review and export the secure benefits. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure benefits targets before running. +- name: hr-export-weekly-payroll-454 + title: Export Weekly Payroll (hr) + description: Standard workflow to export weekly payroll within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest weekly payroll data. + - Apply hr policies to export the payroll. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly payroll targets before running. +- name: hr-export-monthly-payroll-455 + title: Export Monthly Payroll (hr) + description: Standard workflow to export monthly payroll within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending monthly payroll requests. + - Execute export procedure on the designated payroll. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly payroll targets before running. +- name: hr-export-urgent-payroll-456 + title: Export Urgent Payroll (hr) + description: Standard workflow to export urgent payroll within the hr department. + category: hr + services: + - calendar + steps: + - Search for urgent payroll records. + - Review and export the urgent payroll. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent payroll targets before running. +- name: hr-export-secure-payroll-457 + title: Export Secure Payroll (hr) + description: Standard workflow to export secure payroll within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest secure payroll data. + - Apply hr policies to export the payroll. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure payroll targets before running. +- name: hr-export-weekly-performance-review-458 + title: Export Weekly Performance Review (hr) + description: Standard workflow to export weekly performance review within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending weekly performance review requests. + - Execute export procedure on the designated performance review. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly performance review targets before running. +- name: hr-export-monthly-performance-review-459 + title: Export Monthly Performance Review (hr) + description: Standard workflow to export monthly performance review within the hr department. + category: hr + services: + - gmail + steps: + - Search for monthly performance review records. + - Review and export the monthly performance review. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly performance review targets before running. +- name: hr-export-urgent-performance-review-460 + title: Export Urgent Performance Review (hr) + description: Standard workflow to export urgent performance review within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest urgent performance review data. + - Apply hr policies to export the performance review. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent performance review targets before running. +- name: hr-export-secure-performance-review-461 + title: Export Secure Performance Review (hr) + description: Standard workflow to export secure performance review within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending secure performance review requests. + - Execute export procedure on the designated performance review. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure performance review targets before running. +- name: hr-export-weekly-onboarding-checklist-462 + title: Export Weekly Onboarding Checklist (hr) + description: Standard workflow to export weekly onboarding checklist within the hr department. + category: hr + services: + - chat + steps: + - Search for weekly onboarding checklist records. + - Review and export the weekly onboarding checklist. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly onboarding checklist targets before running. +- name: hr-export-monthly-onboarding-checklist-463 + title: Export Monthly Onboarding Checklist (hr) + description: Standard workflow to export monthly onboarding checklist within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest monthly onboarding checklist data. + - Apply hr policies to export the onboarding checklist. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly onboarding checklist targets before running. +- name: hr-export-urgent-onboarding-checklist-464 + title: Export Urgent Onboarding Checklist (hr) + description: Standard workflow to export urgent onboarding checklist within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending urgent onboarding checklist requests. + - Execute export procedure on the designated onboarding checklist. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent onboarding checklist targets before running. +- name: hr-export-secure-onboarding-checklist-465 + title: Export Secure Onboarding Checklist (hr) + description: Standard workflow to export secure onboarding checklist within the hr department. + category: hr + services: + - admin + steps: + - Search for secure onboarding checklist records. + - Review and export the secure onboarding checklist. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure onboarding checklist targets before running. +- name: hr-import-weekly-employee-466 + title: Import Weekly Employee (hr) + description: Standard workflow to import weekly employee within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest weekly employee data. + - Apply hr policies to import the employee. + - Notify stakeholders via email. +- name: hr-import-monthly-employee-467 + title: Import Monthly Employee (hr) + description: Standard workflow to import monthly employee within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending monthly employee requests. + - Execute import procedure on the designated employee. + - Send a status update to the hr team chat space. +- name: hr-import-urgent-employee-468 + title: Import Urgent Employee (hr) + description: Standard workflow to import urgent employee within the hr department. + category: hr + services: + - drive + steps: + - Search for urgent employee records. + - Review and import the urgent employee. + - Log completion in the master tracking spreadsheet. +- name: hr-import-secure-employee-469 + title: Import Secure Employee (hr) + description: Standard workflow to import secure employee within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest secure employee data. + - Apply hr policies to import the employee. + - Archive results in a secure Drive folder. +- name: hr-import-weekly-candidate-470 + title: Import Weekly Candidate (hr) + description: Standard workflow to import weekly candidate within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending weekly candidate requests. + - Execute import procedure on the designated candidate. + - Notify stakeholders via email. +- name: hr-import-monthly-candidate-471 + title: Import Monthly Candidate (hr) + description: Standard workflow to import monthly candidate within the hr department. + category: hr + services: + - calendar + steps: + - Search for monthly candidate records. + - Review and import the monthly candidate. + - Send a status update to the hr team chat space. +- name: hr-import-urgent-candidate-472 + title: Import Urgent Candidate (hr) + description: Standard workflow to import urgent candidate within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest urgent candidate data. + - Apply hr policies to import the candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-import-secure-candidate-473 + title: Import Secure Candidate (hr) + description: Standard workflow to import secure candidate within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending secure candidate requests. + - Execute import procedure on the designated candidate. + - Archive results in a secure Drive folder. +- name: hr-import-weekly-offer-474 + title: Import Weekly Offer (hr) + description: Standard workflow to import weekly offer within the hr department. + category: hr + services: + - gmail + steps: + - Search for weekly offer records. + - Review and import the weekly offer. + - Notify stakeholders via email. +- name: hr-import-monthly-offer-475 + title: Import Monthly Offer (hr) + description: Standard workflow to import monthly offer within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest monthly offer data. + - Apply hr policies to import the offer. + - Send a status update to the hr team chat space. +- name: hr-import-urgent-offer-476 + title: Import Urgent Offer (hr) + description: Standard workflow to import urgent offer within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent offer requests. + - Execute import procedure on the designated offer. + - Log completion in the master tracking spreadsheet. +- name: hr-import-secure-offer-477 + title: Import Secure Offer (hr) + description: Standard workflow to import secure offer within the hr department. + category: hr + services: + - chat + steps: + - Search for secure offer records. + - Review and import the secure offer. + - Archive results in a secure Drive folder. +- name: hr-import-weekly-benefits-478 + title: Import Weekly Benefits (hr) + description: Standard workflow to import weekly benefits within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest weekly benefits data. + - Apply hr policies to import the benefits. + - Notify stakeholders via email. +- name: hr-import-monthly-benefits-479 + title: Import Monthly Benefits (hr) + description: Standard workflow to import monthly benefits within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending monthly benefits requests. + - Execute import procedure on the designated benefits. + - Send a status update to the hr team chat space. +- name: hr-import-urgent-benefits-480 + title: Import Urgent Benefits (hr) + description: Standard workflow to import urgent benefits within the hr department. + category: hr + services: + - admin + steps: + - Search for urgent benefits records. + - Review and import the urgent benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-import-secure-benefits-481 + title: Import Secure Benefits (hr) + description: Standard workflow to import secure benefits within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest secure benefits data. + - Apply hr policies to import the benefits. + - Archive results in a secure Drive folder. +- name: hr-import-weekly-payroll-482 + title: Import Weekly Payroll (hr) + description: Standard workflow to import weekly payroll within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending weekly payroll requests. + - Execute import procedure on the designated payroll. + - Notify stakeholders via email. +- name: hr-import-monthly-payroll-483 + title: Import Monthly Payroll (hr) + description: Standard workflow to import monthly payroll within the hr department. + category: hr + services: + - drive + steps: + - Search for monthly payroll records. + - Review and import the monthly payroll. + - Send a status update to the hr team chat space. +- name: hr-import-urgent-payroll-484 + title: Import Urgent Payroll (hr) + description: Standard workflow to import urgent payroll within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest urgent payroll data. + - Apply hr policies to import the payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-import-secure-payroll-485 + title: Import Secure Payroll (hr) + description: Standard workflow to import secure payroll within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending secure payroll requests. + - Execute import procedure on the designated payroll. + - Archive results in a secure Drive folder. +- name: hr-import-weekly-performance-review-486 + title: Import Weekly Performance Review (hr) + description: Standard workflow to import weekly performance review within the hr department. + category: hr + services: + - calendar + steps: + - Search for weekly performance review records. + - Review and import the weekly performance review. + - Notify stakeholders via email. +- name: hr-import-monthly-performance-review-487 + title: Import Monthly Performance Review (hr) + description: Standard workflow to import monthly performance review within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest monthly performance review data. + - Apply hr policies to import the performance review. + - Send a status update to the hr team chat space. +- name: hr-import-urgent-performance-review-488 + title: Import Urgent Performance Review (hr) + description: Standard workflow to import urgent performance review within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending urgent performance review requests. + - Execute import procedure on the designated performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-import-secure-performance-review-489 + title: Import Secure Performance Review (hr) + description: Standard workflow to import secure performance review within the hr department. + category: hr + services: + - gmail + steps: + - Search for secure performance review records. + - Review and import the secure performance review. + - Archive results in a secure Drive folder. +- name: hr-import-weekly-onboarding-checklist-490 + title: Import Weekly Onboarding Checklist (hr) + description: Standard workflow to import weekly onboarding checklist within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest weekly onboarding checklist data. + - Apply hr policies to import the onboarding checklist. + - Notify stakeholders via email. +- name: hr-import-monthly-onboarding-checklist-491 + title: Import Monthly Onboarding Checklist (hr) + description: Standard workflow to import monthly onboarding checklist within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending monthly onboarding checklist requests. + - Execute import procedure on the designated onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-import-urgent-onboarding-checklist-492 + title: Import Urgent Onboarding Checklist (hr) + description: Standard workflow to import urgent onboarding checklist within the hr department. + category: hr + services: + - chat + steps: + - Search for urgent onboarding checklist records. + - Review and import the urgent onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-import-secure-onboarding-checklist-493 + title: Import Secure Onboarding Checklist (hr) + description: Standard workflow to import secure onboarding checklist within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest secure onboarding checklist data. + - Apply hr policies to import the onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-sync-weekly-employee-494 + title: Sync Weekly Employee (hr) + description: Standard workflow to sync weekly employee within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending weekly employee requests. + - Execute sync procedure on the designated employee. + - Notify stakeholders via email. +- name: hr-sync-monthly-employee-495 + title: Sync Monthly Employee (hr) + description: Standard workflow to sync monthly employee within the hr department. + category: hr + services: + - admin + steps: + - Search for monthly employee records. + - Review and sync the monthly employee. + - Send a status update to the hr team chat space. +- name: hr-sync-urgent-employee-496 + title: Sync Urgent Employee (hr) + description: Standard workflow to sync urgent employee within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest urgent employee data. + - Apply hr policies to sync the employee. + - Log completion in the master tracking spreadsheet. +- name: hr-sync-secure-employee-497 + title: Sync Secure Employee (hr) + description: Standard workflow to sync secure employee within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending secure employee requests. + - Execute sync procedure on the designated employee. + - Archive results in a secure Drive folder. +- name: hr-sync-weekly-candidate-498 + title: Sync Weekly Candidate (hr) + description: Standard workflow to sync weekly candidate within the hr department. + category: hr + services: + - drive + steps: + - Search for weekly candidate records. + - Review and sync the weekly candidate. + - Notify stakeholders via email. +- name: hr-sync-monthly-candidate-499 + title: Sync Monthly Candidate (hr) + description: Standard workflow to sync monthly candidate within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest monthly candidate data. + - Apply hr policies to sync the candidate. + - Send a status update to the hr team chat space. +- name: hr-sync-urgent-candidate-500 + title: Sync Urgent Candidate (hr) + description: Standard workflow to sync urgent candidate within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending urgent candidate requests. + - Execute sync procedure on the designated candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-sync-secure-candidate-501 + title: Sync Secure Candidate (hr) + description: Standard workflow to sync secure candidate within the hr department. + category: hr + services: + - calendar + steps: + - Search for secure candidate records. + - Review and sync the secure candidate. + - Archive results in a secure Drive folder. +- name: hr-sync-weekly-offer-502 + title: Sync Weekly Offer (hr) + description: Standard workflow to sync weekly offer within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest weekly offer data. + - Apply hr policies to sync the offer. + - Notify stakeholders via email. +- name: hr-sync-monthly-offer-503 + title: Sync Monthly Offer (hr) + description: Standard workflow to sync monthly offer within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending monthly offer requests. + - Execute sync procedure on the designated offer. + - Send a status update to the hr team chat space. +- name: hr-sync-urgent-offer-504 + title: Sync Urgent Offer (hr) + description: Standard workflow to sync urgent offer within the hr department. + category: hr + services: + - gmail + steps: + - Search for urgent offer records. + - Review and sync the urgent offer. + - Log completion in the master tracking spreadsheet. +- name: hr-sync-secure-offer-505 + title: Sync Secure Offer (hr) + description: Standard workflow to sync secure offer within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest secure offer data. + - Apply hr policies to sync the offer. + - Archive results in a secure Drive folder. +- name: hr-sync-weekly-benefits-506 + title: Sync Weekly Benefits (hr) + description: Standard workflow to sync weekly benefits within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending weekly benefits requests. + - Execute sync procedure on the designated benefits. + - Notify stakeholders via email. +- name: hr-sync-monthly-benefits-507 + title: Sync Monthly Benefits (hr) + description: Standard workflow to sync monthly benefits within the hr department. + category: hr + services: + - chat + steps: + - Search for monthly benefits records. + - Review and sync the monthly benefits. + - Send a status update to the hr team chat space. +- name: hr-sync-urgent-benefits-508 + title: Sync Urgent Benefits (hr) + description: Standard workflow to sync urgent benefits within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest urgent benefits data. + - Apply hr policies to sync the benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-sync-secure-benefits-509 + title: Sync Secure Benefits (hr) + description: Standard workflow to sync secure benefits within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending secure benefits requests. + - Execute sync procedure on the designated benefits. + - Archive results in a secure Drive folder. +- name: hr-sync-weekly-payroll-510 + title: Sync Weekly Payroll (hr) + description: Standard workflow to sync weekly payroll within the hr department. + category: hr + services: + - admin + steps: + - Search for weekly payroll records. + - Review and sync the weekly payroll. + - Notify stakeholders via email. +- name: hr-sync-monthly-payroll-511 + title: Sync Monthly Payroll (hr) + description: Standard workflow to sync monthly payroll within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest monthly payroll data. + - Apply hr policies to sync the payroll. + - Send a status update to the hr team chat space. +- name: hr-sync-urgent-payroll-512 + title: Sync Urgent Payroll (hr) + description: Standard workflow to sync urgent payroll within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending urgent payroll requests. + - Execute sync procedure on the designated payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-sync-secure-payroll-513 + title: Sync Secure Payroll (hr) + description: Standard workflow to sync secure payroll within the hr department. + category: hr + services: + - drive + steps: + - Search for secure payroll records. + - Review and sync the secure payroll. + - Archive results in a secure Drive folder. +- name: hr-sync-weekly-performance-review-514 + title: Sync Weekly Performance Review (hr) + description: Standard workflow to sync weekly performance review within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest weekly performance review data. + - Apply hr policies to sync the performance review. + - Notify stakeholders via email. +- name: hr-sync-monthly-performance-review-515 + title: Sync Monthly Performance Review (hr) + description: Standard workflow to sync monthly performance review within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending monthly performance review requests. + - Execute sync procedure on the designated performance review. + - Send a status update to the hr team chat space. +- name: hr-sync-urgent-performance-review-516 + title: Sync Urgent Performance Review (hr) + description: Standard workflow to sync urgent performance review within the hr department. + category: hr + services: + - calendar + steps: + - Search for urgent performance review records. + - Review and sync the urgent performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-sync-secure-performance-review-517 + title: Sync Secure Performance Review (hr) + description: Standard workflow to sync secure performance review within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest secure performance review data. + - Apply hr policies to sync the performance review. + - Archive results in a secure Drive folder. +- name: hr-sync-weekly-onboarding-checklist-518 + title: Sync Weekly Onboarding Checklist (hr) + description: Standard workflow to sync weekly onboarding checklist within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending weekly onboarding checklist requests. + - Execute sync procedure on the designated onboarding checklist. + - Notify stakeholders via email. +- name: hr-sync-monthly-onboarding-checklist-519 + title: Sync Monthly Onboarding Checklist (hr) + description: Standard workflow to sync monthly onboarding checklist within the hr department. + category: hr + services: + - gmail + steps: + - Search for monthly onboarding checklist records. + - Review and sync the monthly onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-sync-urgent-onboarding-checklist-520 + title: Sync Urgent Onboarding Checklist (hr) + description: Standard workflow to sync urgent onboarding checklist within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest urgent onboarding checklist data. + - Apply hr policies to sync the onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-sync-secure-onboarding-checklist-521 + title: Sync Secure Onboarding Checklist (hr) + description: Standard workflow to sync secure onboarding checklist within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending secure onboarding checklist requests. + - Execute sync procedure on the designated onboarding checklist. + - Archive results in a secure Drive folder. +- name: hr-migrate-weekly-employee-522 + title: Migrate Weekly Employee (hr) + description: Standard workflow to migrate weekly employee within the hr department. + category: hr + services: + - chat + steps: + - Search for weekly employee records. + - Review and migrate the weekly employee. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly employee targets before running. +- name: hr-migrate-monthly-employee-523 + title: Migrate Monthly Employee (hr) + description: Standard workflow to migrate monthly employee within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest monthly employee data. + - Apply hr policies to migrate the employee. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly employee targets before running. +- name: hr-migrate-urgent-employee-524 + title: Migrate Urgent Employee (hr) + description: Standard workflow to migrate urgent employee within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending urgent employee requests. + - Execute migrate procedure on the designated employee. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent employee targets before running. +- name: hr-migrate-secure-employee-525 + title: Migrate Secure Employee (hr) + description: Standard workflow to migrate secure employee within the hr department. + category: hr + services: + - admin + steps: + - Search for secure employee records. + - Review and migrate the secure employee. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure employee targets before running. +- name: hr-migrate-weekly-candidate-526 + title: Migrate Weekly Candidate (hr) + description: Standard workflow to migrate weekly candidate within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest weekly candidate data. + - Apply hr policies to migrate the candidate. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly candidate targets before running. +- name: hr-migrate-monthly-candidate-527 + title: Migrate Monthly Candidate (hr) + description: Standard workflow to migrate monthly candidate within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending monthly candidate requests. + - Execute migrate procedure on the designated candidate. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly candidate targets before running. +- name: hr-migrate-urgent-candidate-528 + title: Migrate Urgent Candidate (hr) + description: Standard workflow to migrate urgent candidate within the hr department. + category: hr + services: + - drive + steps: + - Search for urgent candidate records. + - Review and migrate the urgent candidate. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent candidate targets before running. +- name: hr-migrate-secure-candidate-529 + title: Migrate Secure Candidate (hr) + description: Standard workflow to migrate secure candidate within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest secure candidate data. + - Apply hr policies to migrate the candidate. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure candidate targets before running. +- name: hr-migrate-weekly-offer-530 + title: Migrate Weekly Offer (hr) + description: Standard workflow to migrate weekly offer within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending weekly offer requests. + - Execute migrate procedure on the designated offer. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly offer targets before running. +- name: hr-migrate-monthly-offer-531 + title: Migrate Monthly Offer (hr) + description: Standard workflow to migrate monthly offer within the hr department. + category: hr + services: + - calendar + steps: + - Search for monthly offer records. + - Review and migrate the monthly offer. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly offer targets before running. +- name: hr-migrate-urgent-offer-532 + title: Migrate Urgent Offer (hr) + description: Standard workflow to migrate urgent offer within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest urgent offer data. + - Apply hr policies to migrate the offer. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent offer targets before running. +- name: hr-migrate-secure-offer-533 + title: Migrate Secure Offer (hr) + description: Standard workflow to migrate secure offer within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending secure offer requests. + - Execute migrate procedure on the designated offer. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure offer targets before running. +- name: hr-migrate-weekly-benefits-534 + title: Migrate Weekly Benefits (hr) + description: Standard workflow to migrate weekly benefits within the hr department. + category: hr + services: + - gmail + steps: + - Search for weekly benefits records. + - Review and migrate the weekly benefits. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly benefits targets before running. +- name: hr-migrate-monthly-benefits-535 + title: Migrate Monthly Benefits (hr) + description: Standard workflow to migrate monthly benefits within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest monthly benefits data. + - Apply hr policies to migrate the benefits. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly benefits targets before running. +- name: hr-migrate-urgent-benefits-536 + title: Migrate Urgent Benefits (hr) + description: Standard workflow to migrate urgent benefits within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent benefits requests. + - Execute migrate procedure on the designated benefits. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent benefits targets before running. +- name: hr-migrate-secure-benefits-537 + title: Migrate Secure Benefits (hr) + description: Standard workflow to migrate secure benefits within the hr department. + category: hr + services: + - chat + steps: + - Search for secure benefits records. + - Review and migrate the secure benefits. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure benefits targets before running. +- name: hr-migrate-weekly-payroll-538 + title: Migrate Weekly Payroll (hr) + description: Standard workflow to migrate weekly payroll within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest weekly payroll data. + - Apply hr policies to migrate the payroll. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly payroll targets before running. +- name: hr-migrate-monthly-payroll-539 + title: Migrate Monthly Payroll (hr) + description: Standard workflow to migrate monthly payroll within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending monthly payroll requests. + - Execute migrate procedure on the designated payroll. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly payroll targets before running. +- name: hr-migrate-urgent-payroll-540 + title: Migrate Urgent Payroll (hr) + description: Standard workflow to migrate urgent payroll within the hr department. + category: hr + services: + - admin + steps: + - Search for urgent payroll records. + - Review and migrate the urgent payroll. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent payroll targets before running. +- name: hr-migrate-secure-payroll-541 + title: Migrate Secure Payroll (hr) + description: Standard workflow to migrate secure payroll within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest secure payroll data. + - Apply hr policies to migrate the payroll. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure payroll targets before running. +- name: hr-migrate-weekly-performance-review-542 + title: Migrate Weekly Performance Review (hr) + description: Standard workflow to migrate weekly performance review within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending weekly performance review requests. + - Execute migrate procedure on the designated performance review. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly performance review targets before running. +- name: hr-migrate-monthly-performance-review-543 + title: Migrate Monthly Performance Review (hr) + description: Standard workflow to migrate monthly performance review within the hr department. + category: hr + services: + - drive + steps: + - Search for monthly performance review records. + - Review and migrate the monthly performance review. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly performance review targets before running. +- name: hr-migrate-urgent-performance-review-544 + title: Migrate Urgent Performance Review (hr) + description: Standard workflow to migrate urgent performance review within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest urgent performance review data. + - Apply hr policies to migrate the performance review. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent performance review targets before running. +- name: hr-migrate-secure-performance-review-545 + title: Migrate Secure Performance Review (hr) + description: Standard workflow to migrate secure performance review within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending secure performance review requests. + - Execute migrate procedure on the designated performance review. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure performance review targets before running. +- name: hr-migrate-weekly-onboarding-checklist-546 + title: Migrate Weekly Onboarding Checklist (hr) + description: Standard workflow to migrate weekly onboarding checklist within the hr department. + category: hr + services: + - calendar + steps: + - Search for weekly onboarding checklist records. + - Review and migrate the weekly onboarding checklist. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly onboarding checklist targets before running. +- name: hr-migrate-monthly-onboarding-checklist-547 + title: Migrate Monthly Onboarding Checklist (hr) + description: Standard workflow to migrate monthly onboarding checklist within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest monthly onboarding checklist data. + - Apply hr policies to migrate the onboarding checklist. + - Send a status update to the hr team chat space. + caution: Action involves bulk data manipulation. Confirm monthly onboarding checklist targets before running. +- name: hr-migrate-urgent-onboarding-checklist-548 + title: Migrate Urgent Onboarding Checklist (hr) + description: Standard workflow to migrate urgent onboarding checklist within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending urgent onboarding checklist requests. + - Execute migrate procedure on the designated onboarding checklist. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent onboarding checklist targets before running. +- name: hr-migrate-secure-onboarding-checklist-549 + title: Migrate Secure Onboarding Checklist (hr) + description: Standard workflow to migrate secure onboarding checklist within the hr department. + category: hr + services: + - gmail + steps: + - Search for secure onboarding checklist records. + - Review and migrate the secure onboarding checklist. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure onboarding checklist targets before running. +- name: hr-backup-weekly-employee-550 + title: Backup Weekly Employee (hr) + description: Standard workflow to backup weekly employee within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest weekly employee data. + - Apply hr policies to backup the employee. + - Notify stakeholders via email. +- name: hr-backup-monthly-employee-551 + title: Backup Monthly Employee (hr) + description: Standard workflow to backup monthly employee within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending monthly employee requests. + - Execute backup procedure on the designated employee. + - Send a status update to the hr team chat space. +- name: hr-backup-urgent-employee-552 + title: Backup Urgent Employee (hr) + description: Standard workflow to backup urgent employee within the hr department. + category: hr + services: + - chat + steps: + - Search for urgent employee records. + - Review and backup the urgent employee. + - Log completion in the master tracking spreadsheet. +- name: hr-backup-secure-employee-553 + title: Backup Secure Employee (hr) + description: Standard workflow to backup secure employee within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest secure employee data. + - Apply hr policies to backup the employee. + - Archive results in a secure Drive folder. +- name: hr-backup-weekly-candidate-554 + title: Backup Weekly Candidate (hr) + description: Standard workflow to backup weekly candidate within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending weekly candidate requests. + - Execute backup procedure on the designated candidate. + - Notify stakeholders via email. +- name: hr-backup-monthly-candidate-555 + title: Backup Monthly Candidate (hr) + description: Standard workflow to backup monthly candidate within the hr department. + category: hr + services: + - admin + steps: + - Search for monthly candidate records. + - Review and backup the monthly candidate. + - Send a status update to the hr team chat space. +- name: hr-backup-urgent-candidate-556 + title: Backup Urgent Candidate (hr) + description: Standard workflow to backup urgent candidate within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest urgent candidate data. + - Apply hr policies to backup the candidate. + - Log completion in the master tracking spreadsheet. +- name: hr-backup-secure-candidate-557 + title: Backup Secure Candidate (hr) + description: Standard workflow to backup secure candidate within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending secure candidate requests. + - Execute backup procedure on the designated candidate. + - Archive results in a secure Drive folder. +- name: hr-backup-weekly-offer-558 + title: Backup Weekly Offer (hr) + description: Standard workflow to backup weekly offer within the hr department. + category: hr + services: + - drive + steps: + - Search for weekly offer records. + - Review and backup the weekly offer. + - Notify stakeholders via email. +- name: hr-backup-monthly-offer-559 + title: Backup Monthly Offer (hr) + description: Standard workflow to backup monthly offer within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest monthly offer data. + - Apply hr policies to backup the offer. + - Send a status update to the hr team chat space. +- name: hr-backup-urgent-offer-560 + title: Backup Urgent Offer (hr) + description: Standard workflow to backup urgent offer within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending urgent offer requests. + - Execute backup procedure on the designated offer. + - Log completion in the master tracking spreadsheet. +- name: hr-backup-secure-offer-561 + title: Backup Secure Offer (hr) + description: Standard workflow to backup secure offer within the hr department. + category: hr + services: + - calendar + steps: + - Search for secure offer records. + - Review and backup the secure offer. + - Archive results in a secure Drive folder. +- name: hr-backup-weekly-benefits-562 + title: Backup Weekly Benefits (hr) + description: Standard workflow to backup weekly benefits within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest weekly benefits data. + - Apply hr policies to backup the benefits. + - Notify stakeholders via email. +- name: hr-backup-monthly-benefits-563 + title: Backup Monthly Benefits (hr) + description: Standard workflow to backup monthly benefits within the hr department. + category: hr + services: + - drive + - gmail + - admin + steps: + - Check system for pending monthly benefits requests. + - Execute backup procedure on the designated benefits. + - Send a status update to the hr team chat space. +- name: hr-backup-urgent-benefits-564 + title: Backup Urgent Benefits (hr) + description: Standard workflow to backup urgent benefits within the hr department. + category: hr + services: + - gmail + steps: + - Search for urgent benefits records. + - Review and backup the urgent benefits. + - Log completion in the master tracking spreadsheet. +- name: hr-backup-secure-benefits-565 + title: Backup Secure Benefits (hr) + description: Standard workflow to backup secure benefits within the hr department. + category: hr + services: + - admin + - calendar + steps: + - Fetch latest secure benefits data. + - Apply hr policies to backup the benefits. + - Archive results in a secure Drive folder. +- name: hr-backup-weekly-payroll-566 + title: Backup Weekly Payroll (hr) + description: Standard workflow to backup weekly payroll within the hr department. + category: hr + services: + - calendar + - chat + - drive + steps: + - Check system for pending weekly payroll requests. + - Execute backup procedure on the designated payroll. + - Notify stakeholders via email. +- name: hr-backup-monthly-payroll-567 + title: Backup Monthly Payroll (hr) + description: Standard workflow to backup monthly payroll within the hr department. + category: hr + services: + - chat + steps: + - Search for monthly payroll records. + - Review and backup the monthly payroll. + - Send a status update to the hr team chat space. +- name: hr-backup-urgent-payroll-568 + title: Backup Urgent Payroll (hr) + description: Standard workflow to backup urgent payroll within the hr department. + category: hr + services: + - drive + - gmail + steps: + - Fetch latest urgent payroll data. + - Apply hr policies to backup the payroll. + - Log completion in the master tracking spreadsheet. +- name: hr-backup-secure-payroll-569 + title: Backup Secure Payroll (hr) + description: Standard workflow to backup secure payroll within the hr department. + category: hr + services: + - gmail + - admin + - calendar + steps: + - Check system for pending secure payroll requests. + - Execute backup procedure on the designated payroll. + - Archive results in a secure Drive folder. +- name: hr-backup-weekly-performance-review-570 + title: Backup Weekly Performance Review (hr) + description: Standard workflow to backup weekly performance review within the hr department. + category: hr + services: + - admin + steps: + - Search for weekly performance review records. + - Review and backup the weekly performance review. + - Notify stakeholders via email. +- name: hr-backup-monthly-performance-review-571 + title: Backup Monthly Performance Review (hr) + description: Standard workflow to backup monthly performance review within the hr department. + category: hr + services: + - calendar + - chat + steps: + - Fetch latest monthly performance review data. + - Apply hr policies to backup the performance review. + - Send a status update to the hr team chat space. +- name: hr-backup-urgent-performance-review-572 + title: Backup Urgent Performance Review (hr) + description: Standard workflow to backup urgent performance review within the hr department. + category: hr + services: + - chat + - drive + - gmail + steps: + - Check system for pending urgent performance review requests. + - Execute backup procedure on the designated performance review. + - Log completion in the master tracking spreadsheet. +- name: hr-backup-secure-performance-review-573 + title: Backup Secure Performance Review (hr) + description: Standard workflow to backup secure performance review within the hr department. + category: hr + services: + - drive + steps: + - Search for secure performance review records. + - Review and backup the secure performance review. + - Archive results in a secure Drive folder. +- name: hr-backup-weekly-onboarding-checklist-574 + title: Backup Weekly Onboarding Checklist (hr) + description: Standard workflow to backup weekly onboarding checklist within the hr department. + category: hr + services: + - gmail + - admin + steps: + - Fetch latest weekly onboarding checklist data. + - Apply hr policies to backup the onboarding checklist. + - Notify stakeholders via email. +- name: hr-backup-monthly-onboarding-checklist-575 + title: Backup Monthly Onboarding Checklist (hr) + description: Standard workflow to backup monthly onboarding checklist within the hr department. + category: hr + services: + - admin + - calendar + - chat + steps: + - Check system for pending monthly onboarding checklist requests. + - Execute backup procedure on the designated onboarding checklist. + - Send a status update to the hr team chat space. +- name: hr-backup-urgent-onboarding-checklist-576 + title: Backup Urgent Onboarding Checklist (hr) + description: Standard workflow to backup urgent onboarding checklist within the hr department. + category: hr + services: + - calendar + steps: + - Search for urgent onboarding checklist records. + - Review and backup the urgent onboarding checklist. + - Log completion in the master tracking spreadsheet. +- name: hr-backup-secure-onboarding-checklist-577 + title: Backup Secure Onboarding Checklist (hr) + description: Standard workflow to backup secure onboarding checklist within the hr department. + category: hr + services: + - chat + - drive + steps: + - Fetch latest secure onboarding checklist data. + - Apply hr policies to backup the onboarding checklist. + - Archive results in a secure Drive folder. +- name: marketing-audit-weekly-campaign-578 + title: Audit Weekly Campaign (marketing) + description: Standard workflow to audit weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly campaign requests. + - Execute audit procedure on the designated campaign. + - Notify stakeholders via email. +- name: marketing-audit-monthly-campaign-579 + title: Audit Monthly Campaign (marketing) + description: Standard workflow to audit monthly campaign within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly campaign records. + - Review and audit the monthly campaign. + - Send a status update to the marketing team chat space. +- name: marketing-audit-urgent-campaign-580 + title: Audit Urgent Campaign (marketing) + description: Standard workflow to audit urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent campaign data. + - Apply marketing policies to audit the campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-audit-secure-campaign-581 + title: Audit Secure Campaign (marketing) + description: Standard workflow to audit secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure campaign requests. + - Execute audit procedure on the designated campaign. + - Archive results in a secure Drive folder. +- name: marketing-audit-weekly-asset-582 + title: Audit Weekly Asset (marketing) + description: Standard workflow to audit weekly asset within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly asset records. + - Review and audit the weekly asset. + - Notify stakeholders via email. +- name: marketing-audit-monthly-asset-583 + title: Audit Monthly Asset (marketing) + description: Standard workflow to audit monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly asset data. + - Apply marketing policies to audit the asset. + - Send a status update to the marketing team chat space. +- name: marketing-audit-urgent-asset-584 + title: Audit Urgent Asset (marketing) + description: Standard workflow to audit urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent asset requests. + - Execute audit procedure on the designated asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-audit-secure-asset-585 + title: Audit Secure Asset (marketing) + description: Standard workflow to audit secure asset within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure asset records. + - Review and audit the secure asset. + - Archive results in a secure Drive folder. +- name: marketing-audit-weekly-newsletter-586 + title: Audit Weekly Newsletter (marketing) + description: Standard workflow to audit weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly newsletter data. + - Apply marketing policies to audit the newsletter. + - Notify stakeholders via email. +- name: marketing-audit-monthly-newsletter-587 + title: Audit Monthly Newsletter (marketing) + description: Standard workflow to audit monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly newsletter requests. + - Execute audit procedure on the designated newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-audit-urgent-newsletter-588 + title: Audit Urgent Newsletter (marketing) + description: Standard workflow to audit urgent newsletter within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent newsletter records. + - Review and audit the urgent newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-audit-secure-newsletter-589 + title: Audit Secure Newsletter (marketing) + description: Standard workflow to audit secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure newsletter data. + - Apply marketing policies to audit the newsletter. + - Archive results in a secure Drive folder. +- name: marketing-audit-weekly-event-590 + title: Audit Weekly Event (marketing) + description: Standard workflow to audit weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly event requests. + - Execute audit procedure on the designated event. + - Notify stakeholders via email. +- name: marketing-audit-monthly-event-591 + title: Audit Monthly Event (marketing) + description: Standard workflow to audit monthly event within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly event records. + - Review and audit the monthly event. + - Send a status update to the marketing team chat space. +- name: marketing-audit-urgent-event-592 + title: Audit Urgent Event (marketing) + description: Standard workflow to audit urgent event within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent event data. + - Apply marketing policies to audit the event. + - Log completion in the master tracking spreadsheet. +- name: marketing-audit-secure-event-593 + title: Audit Secure Event (marketing) + description: Standard workflow to audit secure event within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure event requests. + - Execute audit procedure on the designated event. + - Archive results in a secure Drive folder. +- name: marketing-audit-weekly-social-post-594 + title: Audit Weekly Social Post (marketing) + description: Standard workflow to audit weekly social post within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly social post records. + - Review and audit the weekly social post. + - Notify stakeholders via email. +- name: marketing-audit-monthly-social-post-595 + title: Audit Monthly Social Post (marketing) + description: Standard workflow to audit monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly social post data. + - Apply marketing policies to audit the social post. + - Send a status update to the marketing team chat space. +- name: marketing-audit-urgent-social-post-596 + title: Audit Urgent Social Post (marketing) + description: Standard workflow to audit urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent social post requests. + - Execute audit procedure on the designated social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-audit-secure-social-post-597 + title: Audit Secure Social Post (marketing) + description: Standard workflow to audit secure social post within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure social post records. + - Review and audit the secure social post. + - Archive results in a secure Drive folder. +- name: marketing-audit-weekly-press-release-598 + title: Audit Weekly Press Release (marketing) + description: Standard workflow to audit weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly press release data. + - Apply marketing policies to audit the press release. + - Notify stakeholders via email. +- name: marketing-audit-monthly-press-release-599 + title: Audit Monthly Press Release (marketing) + description: Standard workflow to audit monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly press release requests. + - Execute audit procedure on the designated press release. + - Send a status update to the marketing team chat space. +- name: marketing-audit-urgent-press-release-600 + title: Audit Urgent Press Release (marketing) + description: Standard workflow to audit urgent press release within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent press release records. + - Review and audit the urgent press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-audit-secure-press-release-601 + title: Audit Secure Press Release (marketing) + description: Standard workflow to audit secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure press release data. + - Apply marketing policies to audit the press release. + - Archive results in a secure Drive folder. +- name: marketing-audit-weekly-brand-guidelines-602 + title: Audit Weekly Brand Guidelines (marketing) + description: Standard workflow to audit weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly brand guidelines requests. + - Execute audit procedure on the designated brand guidelines. + - Notify stakeholders via email. +- name: marketing-audit-monthly-brand-guidelines-603 + title: Audit Monthly Brand Guidelines (marketing) + description: Standard workflow to audit monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly brand guidelines records. + - Review and audit the monthly brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-audit-urgent-brand-guidelines-604 + title: Audit Urgent Brand Guidelines (marketing) + description: Standard workflow to audit urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent brand guidelines data. + - Apply marketing policies to audit the brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-audit-secure-brand-guidelines-605 + title: Audit Secure Brand Guidelines (marketing) + description: Standard workflow to audit secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure brand guidelines requests. + - Execute audit procedure on the designated brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-onboard-weekly-campaign-606 + title: Onboard Weekly Campaign (marketing) + description: Standard workflow to onboard weekly campaign within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly campaign records. + - Review and onboard the weekly campaign. + - Notify stakeholders via email. +- name: marketing-onboard-monthly-campaign-607 + title: Onboard Monthly Campaign (marketing) + description: Standard workflow to onboard monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly campaign data. + - Apply marketing policies to onboard the campaign. + - Send a status update to the marketing team chat space. +- name: marketing-onboard-urgent-campaign-608 + title: Onboard Urgent Campaign (marketing) + description: Standard workflow to onboard urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent campaign requests. + - Execute onboard procedure on the designated campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-onboard-secure-campaign-609 + title: Onboard Secure Campaign (marketing) + description: Standard workflow to onboard secure campaign within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure campaign records. + - Review and onboard the secure campaign. + - Archive results in a secure Drive folder. +- name: marketing-onboard-weekly-asset-610 + title: Onboard Weekly Asset (marketing) + description: Standard workflow to onboard weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly asset data. + - Apply marketing policies to onboard the asset. + - Notify stakeholders via email. +- name: marketing-onboard-monthly-asset-611 + title: Onboard Monthly Asset (marketing) + description: Standard workflow to onboard monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly asset requests. + - Execute onboard procedure on the designated asset. + - Send a status update to the marketing team chat space. +- name: marketing-onboard-urgent-asset-612 + title: Onboard Urgent Asset (marketing) + description: Standard workflow to onboard urgent asset within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent asset records. + - Review and onboard the urgent asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-onboard-secure-asset-613 + title: Onboard Secure Asset (marketing) + description: Standard workflow to onboard secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure asset data. + - Apply marketing policies to onboard the asset. + - Archive results in a secure Drive folder. +- name: marketing-onboard-weekly-newsletter-614 + title: Onboard Weekly Newsletter (marketing) + description: Standard workflow to onboard weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly newsletter requests. + - Execute onboard procedure on the designated newsletter. + - Notify stakeholders via email. +- name: marketing-onboard-monthly-newsletter-615 + title: Onboard Monthly Newsletter (marketing) + description: Standard workflow to onboard monthly newsletter within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly newsletter records. + - Review and onboard the monthly newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-onboard-urgent-newsletter-616 + title: Onboard Urgent Newsletter (marketing) + description: Standard workflow to onboard urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent newsletter data. + - Apply marketing policies to onboard the newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-onboard-secure-newsletter-617 + title: Onboard Secure Newsletter (marketing) + description: Standard workflow to onboard secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure newsletter requests. + - Execute onboard procedure on the designated newsletter. + - Archive results in a secure Drive folder. +- name: marketing-onboard-weekly-event-618 + title: Onboard Weekly Event (marketing) + description: Standard workflow to onboard weekly event within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly event records. + - Review and onboard the weekly event. + - Notify stakeholders via email. +- name: marketing-onboard-monthly-event-619 + title: Onboard Monthly Event (marketing) + description: Standard workflow to onboard monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly event data. + - Apply marketing policies to onboard the event. + - Send a status update to the marketing team chat space. +- name: marketing-onboard-urgent-event-620 + title: Onboard Urgent Event (marketing) + description: Standard workflow to onboard urgent event within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent event requests. + - Execute onboard procedure on the designated event. + - Log completion in the master tracking spreadsheet. +- name: marketing-onboard-secure-event-621 + title: Onboard Secure Event (marketing) + description: Standard workflow to onboard secure event within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure event records. + - Review and onboard the secure event. + - Archive results in a secure Drive folder. +- name: marketing-onboard-weekly-social-post-622 + title: Onboard Weekly Social Post (marketing) + description: Standard workflow to onboard weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly social post data. + - Apply marketing policies to onboard the social post. + - Notify stakeholders via email. +- name: marketing-onboard-monthly-social-post-623 + title: Onboard Monthly Social Post (marketing) + description: Standard workflow to onboard monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly social post requests. + - Execute onboard procedure on the designated social post. + - Send a status update to the marketing team chat space. +- name: marketing-onboard-urgent-social-post-624 + title: Onboard Urgent Social Post (marketing) + description: Standard workflow to onboard urgent social post within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent social post records. + - Review and onboard the urgent social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-onboard-secure-social-post-625 + title: Onboard Secure Social Post (marketing) + description: Standard workflow to onboard secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure social post data. + - Apply marketing policies to onboard the social post. + - Archive results in a secure Drive folder. +- name: marketing-onboard-weekly-press-release-626 + title: Onboard Weekly Press Release (marketing) + description: Standard workflow to onboard weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly press release requests. + - Execute onboard procedure on the designated press release. + - Notify stakeholders via email. +- name: marketing-onboard-monthly-press-release-627 + title: Onboard Monthly Press Release (marketing) + description: Standard workflow to onboard monthly press release within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly press release records. + - Review and onboard the monthly press release. + - Send a status update to the marketing team chat space. +- name: marketing-onboard-urgent-press-release-628 + title: Onboard Urgent Press Release (marketing) + description: Standard workflow to onboard urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent press release data. + - Apply marketing policies to onboard the press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-onboard-secure-press-release-629 + title: Onboard Secure Press Release (marketing) + description: Standard workflow to onboard secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure press release requests. + - Execute onboard procedure on the designated press release. + - Archive results in a secure Drive folder. +- name: marketing-onboard-weekly-brand-guidelines-630 + title: Onboard Weekly Brand Guidelines (marketing) + description: Standard workflow to onboard weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly brand guidelines records. + - Review and onboard the weekly brand guidelines. + - Notify stakeholders via email. +- name: marketing-onboard-monthly-brand-guidelines-631 + title: Onboard Monthly Brand Guidelines (marketing) + description: Standard workflow to onboard monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly brand guidelines data. + - Apply marketing policies to onboard the brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-onboard-urgent-brand-guidelines-632 + title: Onboard Urgent Brand Guidelines (marketing) + description: Standard workflow to onboard urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent brand guidelines requests. + - Execute onboard procedure on the designated brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-onboard-secure-brand-guidelines-633 + title: Onboard Secure Brand Guidelines (marketing) + description: Standard workflow to onboard secure brand guidelines within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure brand guidelines records. + - Review and onboard the secure brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-review-weekly-campaign-634 + title: Review Weekly Campaign (marketing) + description: Standard workflow to review weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly campaign data. + - Apply marketing policies to review the campaign. + - Notify stakeholders via email. +- name: marketing-review-monthly-campaign-635 + title: Review Monthly Campaign (marketing) + description: Standard workflow to review monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly campaign requests. + - Execute review procedure on the designated campaign. + - Send a status update to the marketing team chat space. +- name: marketing-review-urgent-campaign-636 + title: Review Urgent Campaign (marketing) + description: Standard workflow to review urgent campaign within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent campaign records. + - Review and review the urgent campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-review-secure-campaign-637 + title: Review Secure Campaign (marketing) + description: Standard workflow to review secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure campaign data. + - Apply marketing policies to review the campaign. + - Archive results in a secure Drive folder. +- name: marketing-review-weekly-asset-638 + title: Review Weekly Asset (marketing) + description: Standard workflow to review weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly asset requests. + - Execute review procedure on the designated asset. + - Notify stakeholders via email. +- name: marketing-review-monthly-asset-639 + title: Review Monthly Asset (marketing) + description: Standard workflow to review monthly asset within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly asset records. + - Review and review the monthly asset. + - Send a status update to the marketing team chat space. +- name: marketing-review-urgent-asset-640 + title: Review Urgent Asset (marketing) + description: Standard workflow to review urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent asset data. + - Apply marketing policies to review the asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-review-secure-asset-641 + title: Review Secure Asset (marketing) + description: Standard workflow to review secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure asset requests. + - Execute review procedure on the designated asset. + - Archive results in a secure Drive folder. +- name: marketing-review-weekly-newsletter-642 + title: Review Weekly Newsletter (marketing) + description: Standard workflow to review weekly newsletter within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly newsletter records. + - Review and review the weekly newsletter. + - Notify stakeholders via email. +- name: marketing-review-monthly-newsletter-643 + title: Review Monthly Newsletter (marketing) + description: Standard workflow to review monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly newsletter data. + - Apply marketing policies to review the newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-review-urgent-newsletter-644 + title: Review Urgent Newsletter (marketing) + description: Standard workflow to review urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent newsletter requests. + - Execute review procedure on the designated newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-review-secure-newsletter-645 + title: Review Secure Newsletter (marketing) + description: Standard workflow to review secure newsletter within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure newsletter records. + - Review and review the secure newsletter. + - Archive results in a secure Drive folder. +- name: marketing-review-weekly-event-646 + title: Review Weekly Event (marketing) + description: Standard workflow to review weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly event data. + - Apply marketing policies to review the event. + - Notify stakeholders via email. +- name: marketing-review-monthly-event-647 + title: Review Monthly Event (marketing) + description: Standard workflow to review monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly event requests. + - Execute review procedure on the designated event. + - Send a status update to the marketing team chat space. +- name: marketing-review-urgent-event-648 + title: Review Urgent Event (marketing) + description: Standard workflow to review urgent event within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent event records. + - Review and review the urgent event. + - Log completion in the master tracking spreadsheet. +- name: marketing-review-secure-event-649 + title: Review Secure Event (marketing) + description: Standard workflow to review secure event within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure event data. + - Apply marketing policies to review the event. + - Archive results in a secure Drive folder. +- name: marketing-review-weekly-social-post-650 + title: Review Weekly Social Post (marketing) + description: Standard workflow to review weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly social post requests. + - Execute review procedure on the designated social post. + - Notify stakeholders via email. +- name: marketing-review-monthly-social-post-651 + title: Review Monthly Social Post (marketing) + description: Standard workflow to review monthly social post within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly social post records. + - Review and review the monthly social post. + - Send a status update to the marketing team chat space. +- name: marketing-review-urgent-social-post-652 + title: Review Urgent Social Post (marketing) + description: Standard workflow to review urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent social post data. + - Apply marketing policies to review the social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-review-secure-social-post-653 + title: Review Secure Social Post (marketing) + description: Standard workflow to review secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure social post requests. + - Execute review procedure on the designated social post. + - Archive results in a secure Drive folder. +- name: marketing-review-weekly-press-release-654 + title: Review Weekly Press Release (marketing) + description: Standard workflow to review weekly press release within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly press release records. + - Review and review the weekly press release. + - Notify stakeholders via email. +- name: marketing-review-monthly-press-release-655 + title: Review Monthly Press Release (marketing) + description: Standard workflow to review monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly press release data. + - Apply marketing policies to review the press release. + - Send a status update to the marketing team chat space. +- name: marketing-review-urgent-press-release-656 + title: Review Urgent Press Release (marketing) + description: Standard workflow to review urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent press release requests. + - Execute review procedure on the designated press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-review-secure-press-release-657 + title: Review Secure Press Release (marketing) + description: Standard workflow to review secure press release within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure press release records. + - Review and review the secure press release. + - Archive results in a secure Drive folder. +- name: marketing-review-weekly-brand-guidelines-658 + title: Review Weekly Brand Guidelines (marketing) + description: Standard workflow to review weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly brand guidelines data. + - Apply marketing policies to review the brand guidelines. + - Notify stakeholders via email. +- name: marketing-review-monthly-brand-guidelines-659 + title: Review Monthly Brand Guidelines (marketing) + description: Standard workflow to review monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly brand guidelines requests. + - Execute review procedure on the designated brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-review-urgent-brand-guidelines-660 + title: Review Urgent Brand Guidelines (marketing) + description: Standard workflow to review urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent brand guidelines records. + - Review and review the urgent brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-review-secure-brand-guidelines-661 + title: Review Secure Brand Guidelines (marketing) + description: Standard workflow to review secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure brand guidelines data. + - Apply marketing policies to review the brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-approve-weekly-campaign-662 + title: Approve Weekly Campaign (marketing) + description: Standard workflow to approve weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly campaign requests. + - Execute approve procedure on the designated campaign. + - Notify stakeholders via email. +- name: marketing-approve-monthly-campaign-663 + title: Approve Monthly Campaign (marketing) + description: Standard workflow to approve monthly campaign within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly campaign records. + - Review and approve the monthly campaign. + - Send a status update to the marketing team chat space. +- name: marketing-approve-urgent-campaign-664 + title: Approve Urgent Campaign (marketing) + description: Standard workflow to approve urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent campaign data. + - Apply marketing policies to approve the campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-approve-secure-campaign-665 + title: Approve Secure Campaign (marketing) + description: Standard workflow to approve secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure campaign requests. + - Execute approve procedure on the designated campaign. + - Archive results in a secure Drive folder. +- name: marketing-approve-weekly-asset-666 + title: Approve Weekly Asset (marketing) + description: Standard workflow to approve weekly asset within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly asset records. + - Review and approve the weekly asset. + - Notify stakeholders via email. +- name: marketing-approve-monthly-asset-667 + title: Approve Monthly Asset (marketing) + description: Standard workflow to approve monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly asset data. + - Apply marketing policies to approve the asset. + - Send a status update to the marketing team chat space. +- name: marketing-approve-urgent-asset-668 + title: Approve Urgent Asset (marketing) + description: Standard workflow to approve urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent asset requests. + - Execute approve procedure on the designated asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-approve-secure-asset-669 + title: Approve Secure Asset (marketing) + description: Standard workflow to approve secure asset within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure asset records. + - Review and approve the secure asset. + - Archive results in a secure Drive folder. +- name: marketing-approve-weekly-newsletter-670 + title: Approve Weekly Newsletter (marketing) + description: Standard workflow to approve weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly newsletter data. + - Apply marketing policies to approve the newsletter. + - Notify stakeholders via email. +- name: marketing-approve-monthly-newsletter-671 + title: Approve Monthly Newsletter (marketing) + description: Standard workflow to approve monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly newsletter requests. + - Execute approve procedure on the designated newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-approve-urgent-newsletter-672 + title: Approve Urgent Newsletter (marketing) + description: Standard workflow to approve urgent newsletter within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent newsletter records. + - Review and approve the urgent newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-approve-secure-newsletter-673 + title: Approve Secure Newsletter (marketing) + description: Standard workflow to approve secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure newsletter data. + - Apply marketing policies to approve the newsletter. + - Archive results in a secure Drive folder. +- name: marketing-approve-weekly-event-674 + title: Approve Weekly Event (marketing) + description: Standard workflow to approve weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly event requests. + - Execute approve procedure on the designated event. + - Notify stakeholders via email. +- name: marketing-approve-monthly-event-675 + title: Approve Monthly Event (marketing) + description: Standard workflow to approve monthly event within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly event records. + - Review and approve the monthly event. + - Send a status update to the marketing team chat space. +- name: marketing-approve-urgent-event-676 + title: Approve Urgent Event (marketing) + description: Standard workflow to approve urgent event within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent event data. + - Apply marketing policies to approve the event. + - Log completion in the master tracking spreadsheet. +- name: marketing-approve-secure-event-677 + title: Approve Secure Event (marketing) + description: Standard workflow to approve secure event within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure event requests. + - Execute approve procedure on the designated event. + - Archive results in a secure Drive folder. +- name: marketing-approve-weekly-social-post-678 + title: Approve Weekly Social Post (marketing) + description: Standard workflow to approve weekly social post within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly social post records. + - Review and approve the weekly social post. + - Notify stakeholders via email. +- name: marketing-approve-monthly-social-post-679 + title: Approve Monthly Social Post (marketing) + description: Standard workflow to approve monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly social post data. + - Apply marketing policies to approve the social post. + - Send a status update to the marketing team chat space. +- name: marketing-approve-urgent-social-post-680 + title: Approve Urgent Social Post (marketing) + description: Standard workflow to approve urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent social post requests. + - Execute approve procedure on the designated social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-approve-secure-social-post-681 + title: Approve Secure Social Post (marketing) + description: Standard workflow to approve secure social post within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure social post records. + - Review and approve the secure social post. + - Archive results in a secure Drive folder. +- name: marketing-approve-weekly-press-release-682 + title: Approve Weekly Press Release (marketing) + description: Standard workflow to approve weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly press release data. + - Apply marketing policies to approve the press release. + - Notify stakeholders via email. +- name: marketing-approve-monthly-press-release-683 + title: Approve Monthly Press Release (marketing) + description: Standard workflow to approve monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly press release requests. + - Execute approve procedure on the designated press release. + - Send a status update to the marketing team chat space. +- name: marketing-approve-urgent-press-release-684 + title: Approve Urgent Press Release (marketing) + description: Standard workflow to approve urgent press release within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent press release records. + - Review and approve the urgent press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-approve-secure-press-release-685 + title: Approve Secure Press Release (marketing) + description: Standard workflow to approve secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure press release data. + - Apply marketing policies to approve the press release. + - Archive results in a secure Drive folder. +- name: marketing-approve-weekly-brand-guidelines-686 + title: Approve Weekly Brand Guidelines (marketing) + description: Standard workflow to approve weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly brand guidelines requests. + - Execute approve procedure on the designated brand guidelines. + - Notify stakeholders via email. +- name: marketing-approve-monthly-brand-guidelines-687 + title: Approve Monthly Brand Guidelines (marketing) + description: Standard workflow to approve monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly brand guidelines records. + - Review and approve the monthly brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-approve-urgent-brand-guidelines-688 + title: Approve Urgent Brand Guidelines (marketing) + description: Standard workflow to approve urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent brand guidelines data. + - Apply marketing policies to approve the brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-approve-secure-brand-guidelines-689 + title: Approve Secure Brand Guidelines (marketing) + description: Standard workflow to approve secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure brand guidelines requests. + - Execute approve procedure on the designated brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-share-weekly-campaign-690 + title: Share Weekly Campaign (marketing) + description: Standard workflow to share weekly campaign within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly campaign records. + - Review and share the weekly campaign. + - Notify stakeholders via email. +- name: marketing-share-monthly-campaign-691 + title: Share Monthly Campaign (marketing) + description: Standard workflow to share monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly campaign data. + - Apply marketing policies to share the campaign. + - Send a status update to the marketing team chat space. +- name: marketing-share-urgent-campaign-692 + title: Share Urgent Campaign (marketing) + description: Standard workflow to share urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent campaign requests. + - Execute share procedure on the designated campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-share-secure-campaign-693 + title: Share Secure Campaign (marketing) + description: Standard workflow to share secure campaign within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure campaign records. + - Review and share the secure campaign. + - Archive results in a secure Drive folder. +- name: marketing-share-weekly-asset-694 + title: Share Weekly Asset (marketing) + description: Standard workflow to share weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly asset data. + - Apply marketing policies to share the asset. + - Notify stakeholders via email. +- name: marketing-share-monthly-asset-695 + title: Share Monthly Asset (marketing) + description: Standard workflow to share monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly asset requests. + - Execute share procedure on the designated asset. + - Send a status update to the marketing team chat space. +- name: marketing-share-urgent-asset-696 + title: Share Urgent Asset (marketing) + description: Standard workflow to share urgent asset within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent asset records. + - Review and share the urgent asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-share-secure-asset-697 + title: Share Secure Asset (marketing) + description: Standard workflow to share secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure asset data. + - Apply marketing policies to share the asset. + - Archive results in a secure Drive folder. +- name: marketing-share-weekly-newsletter-698 + title: Share Weekly Newsletter (marketing) + description: Standard workflow to share weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly newsletter requests. + - Execute share procedure on the designated newsletter. + - Notify stakeholders via email. +- name: marketing-share-monthly-newsletter-699 + title: Share Monthly Newsletter (marketing) + description: Standard workflow to share monthly newsletter within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly newsletter records. + - Review and share the monthly newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-share-urgent-newsletter-700 + title: Share Urgent Newsletter (marketing) + description: Standard workflow to share urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent newsletter data. + - Apply marketing policies to share the newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-share-secure-newsletter-701 + title: Share Secure Newsletter (marketing) + description: Standard workflow to share secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure newsletter requests. + - Execute share procedure on the designated newsletter. + - Archive results in a secure Drive folder. +- name: marketing-share-weekly-event-702 + title: Share Weekly Event (marketing) + description: Standard workflow to share weekly event within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly event records. + - Review and share the weekly event. + - Notify stakeholders via email. +- name: marketing-share-monthly-event-703 + title: Share Monthly Event (marketing) + description: Standard workflow to share monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly event data. + - Apply marketing policies to share the event. + - Send a status update to the marketing team chat space. +- name: marketing-share-urgent-event-704 + title: Share Urgent Event (marketing) + description: Standard workflow to share urgent event within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent event requests. + - Execute share procedure on the designated event. + - Log completion in the master tracking spreadsheet. +- name: marketing-share-secure-event-705 + title: Share Secure Event (marketing) + description: Standard workflow to share secure event within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure event records. + - Review and share the secure event. + - Archive results in a secure Drive folder. +- name: marketing-share-weekly-social-post-706 + title: Share Weekly Social Post (marketing) + description: Standard workflow to share weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly social post data. + - Apply marketing policies to share the social post. + - Notify stakeholders via email. +- name: marketing-share-monthly-social-post-707 + title: Share Monthly Social Post (marketing) + description: Standard workflow to share monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly social post requests. + - Execute share procedure on the designated social post. + - Send a status update to the marketing team chat space. +- name: marketing-share-urgent-social-post-708 + title: Share Urgent Social Post (marketing) + description: Standard workflow to share urgent social post within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent social post records. + - Review and share the urgent social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-share-secure-social-post-709 + title: Share Secure Social Post (marketing) + description: Standard workflow to share secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure social post data. + - Apply marketing policies to share the social post. + - Archive results in a secure Drive folder. +- name: marketing-share-weekly-press-release-710 + title: Share Weekly Press Release (marketing) + description: Standard workflow to share weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly press release requests. + - Execute share procedure on the designated press release. + - Notify stakeholders via email. +- name: marketing-share-monthly-press-release-711 + title: Share Monthly Press Release (marketing) + description: Standard workflow to share monthly press release within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly press release records. + - Review and share the monthly press release. + - Send a status update to the marketing team chat space. +- name: marketing-share-urgent-press-release-712 + title: Share Urgent Press Release (marketing) + description: Standard workflow to share urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent press release data. + - Apply marketing policies to share the press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-share-secure-press-release-713 + title: Share Secure Press Release (marketing) + description: Standard workflow to share secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure press release requests. + - Execute share procedure on the designated press release. + - Archive results in a secure Drive folder. +- name: marketing-share-weekly-brand-guidelines-714 + title: Share Weekly Brand Guidelines (marketing) + description: Standard workflow to share weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly brand guidelines records. + - Review and share the weekly brand guidelines. + - Notify stakeholders via email. +- name: marketing-share-monthly-brand-guidelines-715 + title: Share Monthly Brand Guidelines (marketing) + description: Standard workflow to share monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly brand guidelines data. + - Apply marketing policies to share the brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-share-urgent-brand-guidelines-716 + title: Share Urgent Brand Guidelines (marketing) + description: Standard workflow to share urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent brand guidelines requests. + - Execute share procedure on the designated brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-share-secure-brand-guidelines-717 + title: Share Secure Brand Guidelines (marketing) + description: Standard workflow to share secure brand guidelines within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure brand guidelines records. + - Review and share the secure brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-publish-weekly-campaign-718 + title: Publish Weekly Campaign (marketing) + description: Standard workflow to publish weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly campaign data. + - Apply marketing policies to publish the campaign. + - Notify stakeholders via email. +- name: marketing-publish-monthly-campaign-719 + title: Publish Monthly Campaign (marketing) + description: Standard workflow to publish monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly campaign requests. + - Execute publish procedure on the designated campaign. + - Send a status update to the marketing team chat space. +- name: marketing-publish-urgent-campaign-720 + title: Publish Urgent Campaign (marketing) + description: Standard workflow to publish urgent campaign within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent campaign records. + - Review and publish the urgent campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-publish-secure-campaign-721 + title: Publish Secure Campaign (marketing) + description: Standard workflow to publish secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure campaign data. + - Apply marketing policies to publish the campaign. + - Archive results in a secure Drive folder. +- name: marketing-publish-weekly-asset-722 + title: Publish Weekly Asset (marketing) + description: Standard workflow to publish weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly asset requests. + - Execute publish procedure on the designated asset. + - Notify stakeholders via email. +- name: marketing-publish-monthly-asset-723 + title: Publish Monthly Asset (marketing) + description: Standard workflow to publish monthly asset within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly asset records. + - Review and publish the monthly asset. + - Send a status update to the marketing team chat space. +- name: marketing-publish-urgent-asset-724 + title: Publish Urgent Asset (marketing) + description: Standard workflow to publish urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent asset data. + - Apply marketing policies to publish the asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-publish-secure-asset-725 + title: Publish Secure Asset (marketing) + description: Standard workflow to publish secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure asset requests. + - Execute publish procedure on the designated asset. + - Archive results in a secure Drive folder. +- name: marketing-publish-weekly-newsletter-726 + title: Publish Weekly Newsletter (marketing) + description: Standard workflow to publish weekly newsletter within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly newsletter records. + - Review and publish the weekly newsletter. + - Notify stakeholders via email. +- name: marketing-publish-monthly-newsletter-727 + title: Publish Monthly Newsletter (marketing) + description: Standard workflow to publish monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly newsletter data. + - Apply marketing policies to publish the newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-publish-urgent-newsletter-728 + title: Publish Urgent Newsletter (marketing) + description: Standard workflow to publish urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent newsletter requests. + - Execute publish procedure on the designated newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-publish-secure-newsletter-729 + title: Publish Secure Newsletter (marketing) + description: Standard workflow to publish secure newsletter within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure newsletter records. + - Review and publish the secure newsletter. + - Archive results in a secure Drive folder. +- name: marketing-publish-weekly-event-730 + title: Publish Weekly Event (marketing) + description: Standard workflow to publish weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly event data. + - Apply marketing policies to publish the event. + - Notify stakeholders via email. +- name: marketing-publish-monthly-event-731 + title: Publish Monthly Event (marketing) + description: Standard workflow to publish monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly event requests. + - Execute publish procedure on the designated event. + - Send a status update to the marketing team chat space. +- name: marketing-publish-urgent-event-732 + title: Publish Urgent Event (marketing) + description: Standard workflow to publish urgent event within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent event records. + - Review and publish the urgent event. + - Log completion in the master tracking spreadsheet. +- name: marketing-publish-secure-event-733 + title: Publish Secure Event (marketing) + description: Standard workflow to publish secure event within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure event data. + - Apply marketing policies to publish the event. + - Archive results in a secure Drive folder. +- name: marketing-publish-weekly-social-post-734 + title: Publish Weekly Social Post (marketing) + description: Standard workflow to publish weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly social post requests. + - Execute publish procedure on the designated social post. + - Notify stakeholders via email. +- name: marketing-publish-monthly-social-post-735 + title: Publish Monthly Social Post (marketing) + description: Standard workflow to publish monthly social post within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly social post records. + - Review and publish the monthly social post. + - Send a status update to the marketing team chat space. +- name: marketing-publish-urgent-social-post-736 + title: Publish Urgent Social Post (marketing) + description: Standard workflow to publish urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent social post data. + - Apply marketing policies to publish the social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-publish-secure-social-post-737 + title: Publish Secure Social Post (marketing) + description: Standard workflow to publish secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure social post requests. + - Execute publish procedure on the designated social post. + - Archive results in a secure Drive folder. +- name: marketing-publish-weekly-press-release-738 + title: Publish Weekly Press Release (marketing) + description: Standard workflow to publish weekly press release within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly press release records. + - Review and publish the weekly press release. + - Notify stakeholders via email. +- name: marketing-publish-monthly-press-release-739 + title: Publish Monthly Press Release (marketing) + description: Standard workflow to publish monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly press release data. + - Apply marketing policies to publish the press release. + - Send a status update to the marketing team chat space. +- name: marketing-publish-urgent-press-release-740 + title: Publish Urgent Press Release (marketing) + description: Standard workflow to publish urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent press release requests. + - Execute publish procedure on the designated press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-publish-secure-press-release-741 + title: Publish Secure Press Release (marketing) + description: Standard workflow to publish secure press release within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure press release records. + - Review and publish the secure press release. + - Archive results in a secure Drive folder. +- name: marketing-publish-weekly-brand-guidelines-742 + title: Publish Weekly Brand Guidelines (marketing) + description: Standard workflow to publish weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly brand guidelines data. + - Apply marketing policies to publish the brand guidelines. + - Notify stakeholders via email. +- name: marketing-publish-monthly-brand-guidelines-743 + title: Publish Monthly Brand Guidelines (marketing) + description: Standard workflow to publish monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly brand guidelines requests. + - Execute publish procedure on the designated brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-publish-urgent-brand-guidelines-744 + title: Publish Urgent Brand Guidelines (marketing) + description: Standard workflow to publish urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent brand guidelines records. + - Review and publish the urgent brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-publish-secure-brand-guidelines-745 + title: Publish Secure Brand Guidelines (marketing) + description: Standard workflow to publish secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure brand guidelines data. + - Apply marketing policies to publish the brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-archive-weekly-campaign-746 + title: Archive Weekly Campaign (marketing) + description: Standard workflow to archive weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly campaign requests. + - Execute archive procedure on the designated campaign. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly campaign targets before running. +- name: marketing-archive-monthly-campaign-747 + title: Archive Monthly Campaign (marketing) + description: Standard workflow to archive monthly campaign within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly campaign records. + - Review and archive the monthly campaign. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly campaign targets before running. +- name: marketing-archive-urgent-campaign-748 + title: Archive Urgent Campaign (marketing) + description: Standard workflow to archive urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent campaign data. + - Apply marketing policies to archive the campaign. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent campaign targets before running. +- name: marketing-archive-secure-campaign-749 + title: Archive Secure Campaign (marketing) + description: Standard workflow to archive secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure campaign requests. + - Execute archive procedure on the designated campaign. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure campaign targets before running. +- name: marketing-archive-weekly-asset-750 + title: Archive Weekly Asset (marketing) + description: Standard workflow to archive weekly asset within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly asset records. + - Review and archive the weekly asset. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly asset targets before running. +- name: marketing-archive-monthly-asset-751 + title: Archive Monthly Asset (marketing) + description: Standard workflow to archive monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly asset data. + - Apply marketing policies to archive the asset. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly asset targets before running. +- name: marketing-archive-urgent-asset-752 + title: Archive Urgent Asset (marketing) + description: Standard workflow to archive urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent asset requests. + - Execute archive procedure on the designated asset. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent asset targets before running. +- name: marketing-archive-secure-asset-753 + title: Archive Secure Asset (marketing) + description: Standard workflow to archive secure asset within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure asset records. + - Review and archive the secure asset. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure asset targets before running. +- name: marketing-archive-weekly-newsletter-754 + title: Archive Weekly Newsletter (marketing) + description: Standard workflow to archive weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly newsletter data. + - Apply marketing policies to archive the newsletter. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly newsletter targets before running. +- name: marketing-archive-monthly-newsletter-755 + title: Archive Monthly Newsletter (marketing) + description: Standard workflow to archive monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly newsletter requests. + - Execute archive procedure on the designated newsletter. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly newsletter targets before running. +- name: marketing-archive-urgent-newsletter-756 + title: Archive Urgent Newsletter (marketing) + description: Standard workflow to archive urgent newsletter within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent newsletter records. + - Review and archive the urgent newsletter. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent newsletter targets before running. +- name: marketing-archive-secure-newsletter-757 + title: Archive Secure Newsletter (marketing) + description: Standard workflow to archive secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure newsletter data. + - Apply marketing policies to archive the newsletter. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure newsletter targets before running. +- name: marketing-archive-weekly-event-758 + title: Archive Weekly Event (marketing) + description: Standard workflow to archive weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly event requests. + - Execute archive procedure on the designated event. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly event targets before running. +- name: marketing-archive-monthly-event-759 + title: Archive Monthly Event (marketing) + description: Standard workflow to archive monthly event within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly event records. + - Review and archive the monthly event. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly event targets before running. +- name: marketing-archive-urgent-event-760 + title: Archive Urgent Event (marketing) + description: Standard workflow to archive urgent event within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent event data. + - Apply marketing policies to archive the event. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent event targets before running. +- name: marketing-archive-secure-event-761 + title: Archive Secure Event (marketing) + description: Standard workflow to archive secure event within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure event requests. + - Execute archive procedure on the designated event. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure event targets before running. +- name: marketing-archive-weekly-social-post-762 + title: Archive Weekly Social Post (marketing) + description: Standard workflow to archive weekly social post within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly social post records. + - Review and archive the weekly social post. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly social post targets before running. +- name: marketing-archive-monthly-social-post-763 + title: Archive Monthly Social Post (marketing) + description: Standard workflow to archive monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly social post data. + - Apply marketing policies to archive the social post. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly social post targets before running. +- name: marketing-archive-urgent-social-post-764 + title: Archive Urgent Social Post (marketing) + description: Standard workflow to archive urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent social post requests. + - Execute archive procedure on the designated social post. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent social post targets before running. +- name: marketing-archive-secure-social-post-765 + title: Archive Secure Social Post (marketing) + description: Standard workflow to archive secure social post within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure social post records. + - Review and archive the secure social post. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure social post targets before running. +- name: marketing-archive-weekly-press-release-766 + title: Archive Weekly Press Release (marketing) + description: Standard workflow to archive weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly press release data. + - Apply marketing policies to archive the press release. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly press release targets before running. +- name: marketing-archive-monthly-press-release-767 + title: Archive Monthly Press Release (marketing) + description: Standard workflow to archive monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly press release requests. + - Execute archive procedure on the designated press release. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly press release targets before running. +- name: marketing-archive-urgent-press-release-768 + title: Archive Urgent Press Release (marketing) + description: Standard workflow to archive urgent press release within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent press release records. + - Review and archive the urgent press release. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent press release targets before running. +- name: marketing-archive-secure-press-release-769 + title: Archive Secure Press Release (marketing) + description: Standard workflow to archive secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure press release data. + - Apply marketing policies to archive the press release. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure press release targets before running. +- name: marketing-archive-weekly-brand-guidelines-770 + title: Archive Weekly Brand Guidelines (marketing) + description: Standard workflow to archive weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly brand guidelines requests. + - Execute archive procedure on the designated brand guidelines. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly brand guidelines targets before running. +- name: marketing-archive-monthly-brand-guidelines-771 + title: Archive Monthly Brand Guidelines (marketing) + description: Standard workflow to archive monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly brand guidelines records. + - Review and archive the monthly brand guidelines. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly brand guidelines targets before running. +- name: marketing-archive-urgent-brand-guidelines-772 + title: Archive Urgent Brand Guidelines (marketing) + description: Standard workflow to archive urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent brand guidelines data. + - Apply marketing policies to archive the brand guidelines. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent brand guidelines targets before running. +- name: marketing-archive-secure-brand-guidelines-773 + title: Archive Secure Brand Guidelines (marketing) + description: Standard workflow to archive secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure brand guidelines requests. + - Execute archive procedure on the designated brand guidelines. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure brand guidelines targets before running. +- name: marketing-export-weekly-campaign-774 + title: Export Weekly Campaign (marketing) + description: Standard workflow to export weekly campaign within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly campaign records. + - Review and export the weekly campaign. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly campaign targets before running. +- name: marketing-export-monthly-campaign-775 + title: Export Monthly Campaign (marketing) + description: Standard workflow to export monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly campaign data. + - Apply marketing policies to export the campaign. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly campaign targets before running. +- name: marketing-export-urgent-campaign-776 + title: Export Urgent Campaign (marketing) + description: Standard workflow to export urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent campaign requests. + - Execute export procedure on the designated campaign. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent campaign targets before running. +- name: marketing-export-secure-campaign-777 + title: Export Secure Campaign (marketing) + description: Standard workflow to export secure campaign within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure campaign records. + - Review and export the secure campaign. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure campaign targets before running. +- name: marketing-export-weekly-asset-778 + title: Export Weekly Asset (marketing) + description: Standard workflow to export weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly asset data. + - Apply marketing policies to export the asset. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly asset targets before running. +- name: marketing-export-monthly-asset-779 + title: Export Monthly Asset (marketing) + description: Standard workflow to export monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly asset requests. + - Execute export procedure on the designated asset. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly asset targets before running. +- name: marketing-export-urgent-asset-780 + title: Export Urgent Asset (marketing) + description: Standard workflow to export urgent asset within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent asset records. + - Review and export the urgent asset. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent asset targets before running. +- name: marketing-export-secure-asset-781 + title: Export Secure Asset (marketing) + description: Standard workflow to export secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure asset data. + - Apply marketing policies to export the asset. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure asset targets before running. +- name: marketing-export-weekly-newsletter-782 + title: Export Weekly Newsletter (marketing) + description: Standard workflow to export weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly newsletter requests. + - Execute export procedure on the designated newsletter. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly newsletter targets before running. +- name: marketing-export-monthly-newsletter-783 + title: Export Monthly Newsletter (marketing) + description: Standard workflow to export monthly newsletter within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly newsletter records. + - Review and export the monthly newsletter. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly newsletter targets before running. +- name: marketing-export-urgent-newsletter-784 + title: Export Urgent Newsletter (marketing) + description: Standard workflow to export urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent newsletter data. + - Apply marketing policies to export the newsletter. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent newsletter targets before running. +- name: marketing-export-secure-newsletter-785 + title: Export Secure Newsletter (marketing) + description: Standard workflow to export secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure newsletter requests. + - Execute export procedure on the designated newsletter. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure newsletter targets before running. +- name: marketing-export-weekly-event-786 + title: Export Weekly Event (marketing) + description: Standard workflow to export weekly event within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly event records. + - Review and export the weekly event. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly event targets before running. +- name: marketing-export-monthly-event-787 + title: Export Monthly Event (marketing) + description: Standard workflow to export monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly event data. + - Apply marketing policies to export the event. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly event targets before running. +- name: marketing-export-urgent-event-788 + title: Export Urgent Event (marketing) + description: Standard workflow to export urgent event within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent event requests. + - Execute export procedure on the designated event. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent event targets before running. +- name: marketing-export-secure-event-789 + title: Export Secure Event (marketing) + description: Standard workflow to export secure event within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure event records. + - Review and export the secure event. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure event targets before running. +- name: marketing-export-weekly-social-post-790 + title: Export Weekly Social Post (marketing) + description: Standard workflow to export weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly social post data. + - Apply marketing policies to export the social post. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly social post targets before running. +- name: marketing-export-monthly-social-post-791 + title: Export Monthly Social Post (marketing) + description: Standard workflow to export monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly social post requests. + - Execute export procedure on the designated social post. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly social post targets before running. +- name: marketing-export-urgent-social-post-792 + title: Export Urgent Social Post (marketing) + description: Standard workflow to export urgent social post within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent social post records. + - Review and export the urgent social post. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent social post targets before running. +- name: marketing-export-secure-social-post-793 + title: Export Secure Social Post (marketing) + description: Standard workflow to export secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure social post data. + - Apply marketing policies to export the social post. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure social post targets before running. +- name: marketing-export-weekly-press-release-794 + title: Export Weekly Press Release (marketing) + description: Standard workflow to export weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly press release requests. + - Execute export procedure on the designated press release. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly press release targets before running. +- name: marketing-export-monthly-press-release-795 + title: Export Monthly Press Release (marketing) + description: Standard workflow to export monthly press release within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly press release records. + - Review and export the monthly press release. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly press release targets before running. +- name: marketing-export-urgent-press-release-796 + title: Export Urgent Press Release (marketing) + description: Standard workflow to export urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent press release data. + - Apply marketing policies to export the press release. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent press release targets before running. +- name: marketing-export-secure-press-release-797 + title: Export Secure Press Release (marketing) + description: Standard workflow to export secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure press release requests. + - Execute export procedure on the designated press release. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure press release targets before running. +- name: marketing-export-weekly-brand-guidelines-798 + title: Export Weekly Brand Guidelines (marketing) + description: Standard workflow to export weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly brand guidelines records. + - Review and export the weekly brand guidelines. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly brand guidelines targets before running. +- name: marketing-export-monthly-brand-guidelines-799 + title: Export Monthly Brand Guidelines (marketing) + description: Standard workflow to export monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly brand guidelines data. + - Apply marketing policies to export the brand guidelines. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly brand guidelines targets before running. +- name: marketing-export-urgent-brand-guidelines-800 + title: Export Urgent Brand Guidelines (marketing) + description: Standard workflow to export urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent brand guidelines requests. + - Execute export procedure on the designated brand guidelines. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent brand guidelines targets before running. +- name: marketing-export-secure-brand-guidelines-801 + title: Export Secure Brand Guidelines (marketing) + description: Standard workflow to export secure brand guidelines within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure brand guidelines records. + - Review and export the secure brand guidelines. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure brand guidelines targets before running. +- name: marketing-import-weekly-campaign-802 + title: Import Weekly Campaign (marketing) + description: Standard workflow to import weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly campaign data. + - Apply marketing policies to import the campaign. + - Notify stakeholders via email. +- name: marketing-import-monthly-campaign-803 + title: Import Monthly Campaign (marketing) + description: Standard workflow to import monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly campaign requests. + - Execute import procedure on the designated campaign. + - Send a status update to the marketing team chat space. +- name: marketing-import-urgent-campaign-804 + title: Import Urgent Campaign (marketing) + description: Standard workflow to import urgent campaign within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent campaign records. + - Review and import the urgent campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-import-secure-campaign-805 + title: Import Secure Campaign (marketing) + description: Standard workflow to import secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure campaign data. + - Apply marketing policies to import the campaign. + - Archive results in a secure Drive folder. +- name: marketing-import-weekly-asset-806 + title: Import Weekly Asset (marketing) + description: Standard workflow to import weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly asset requests. + - Execute import procedure on the designated asset. + - Notify stakeholders via email. +- name: marketing-import-monthly-asset-807 + title: Import Monthly Asset (marketing) + description: Standard workflow to import monthly asset within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly asset records. + - Review and import the monthly asset. + - Send a status update to the marketing team chat space. +- name: marketing-import-urgent-asset-808 + title: Import Urgent Asset (marketing) + description: Standard workflow to import urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent asset data. + - Apply marketing policies to import the asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-import-secure-asset-809 + title: Import Secure Asset (marketing) + description: Standard workflow to import secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure asset requests. + - Execute import procedure on the designated asset. + - Archive results in a secure Drive folder. +- name: marketing-import-weekly-newsletter-810 + title: Import Weekly Newsletter (marketing) + description: Standard workflow to import weekly newsletter within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly newsletter records. + - Review and import the weekly newsletter. + - Notify stakeholders via email. +- name: marketing-import-monthly-newsletter-811 + title: Import Monthly Newsletter (marketing) + description: Standard workflow to import monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly newsletter data. + - Apply marketing policies to import the newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-import-urgent-newsletter-812 + title: Import Urgent Newsletter (marketing) + description: Standard workflow to import urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent newsletter requests. + - Execute import procedure on the designated newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-import-secure-newsletter-813 + title: Import Secure Newsletter (marketing) + description: Standard workflow to import secure newsletter within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure newsletter records. + - Review and import the secure newsletter. + - Archive results in a secure Drive folder. +- name: marketing-import-weekly-event-814 + title: Import Weekly Event (marketing) + description: Standard workflow to import weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly event data. + - Apply marketing policies to import the event. + - Notify stakeholders via email. +- name: marketing-import-monthly-event-815 + title: Import Monthly Event (marketing) + description: Standard workflow to import monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly event requests. + - Execute import procedure on the designated event. + - Send a status update to the marketing team chat space. +- name: marketing-import-urgent-event-816 + title: Import Urgent Event (marketing) + description: Standard workflow to import urgent event within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent event records. + - Review and import the urgent event. + - Log completion in the master tracking spreadsheet. +- name: marketing-import-secure-event-817 + title: Import Secure Event (marketing) + description: Standard workflow to import secure event within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure event data. + - Apply marketing policies to import the event. + - Archive results in a secure Drive folder. +- name: marketing-import-weekly-social-post-818 + title: Import Weekly Social Post (marketing) + description: Standard workflow to import weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly social post requests. + - Execute import procedure on the designated social post. + - Notify stakeholders via email. +- name: marketing-import-monthly-social-post-819 + title: Import Monthly Social Post (marketing) + description: Standard workflow to import monthly social post within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly social post records. + - Review and import the monthly social post. + - Send a status update to the marketing team chat space. +- name: marketing-import-urgent-social-post-820 + title: Import Urgent Social Post (marketing) + description: Standard workflow to import urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent social post data. + - Apply marketing policies to import the social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-import-secure-social-post-821 + title: Import Secure Social Post (marketing) + description: Standard workflow to import secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure social post requests. + - Execute import procedure on the designated social post. + - Archive results in a secure Drive folder. +- name: marketing-import-weekly-press-release-822 + title: Import Weekly Press Release (marketing) + description: Standard workflow to import weekly press release within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly press release records. + - Review and import the weekly press release. + - Notify stakeholders via email. +- name: marketing-import-monthly-press-release-823 + title: Import Monthly Press Release (marketing) + description: Standard workflow to import monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly press release data. + - Apply marketing policies to import the press release. + - Send a status update to the marketing team chat space. +- name: marketing-import-urgent-press-release-824 + title: Import Urgent Press Release (marketing) + description: Standard workflow to import urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent press release requests. + - Execute import procedure on the designated press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-import-secure-press-release-825 + title: Import Secure Press Release (marketing) + description: Standard workflow to import secure press release within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure press release records. + - Review and import the secure press release. + - Archive results in a secure Drive folder. +- name: marketing-import-weekly-brand-guidelines-826 + title: Import Weekly Brand Guidelines (marketing) + description: Standard workflow to import weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly brand guidelines data. + - Apply marketing policies to import the brand guidelines. + - Notify stakeholders via email. +- name: marketing-import-monthly-brand-guidelines-827 + title: Import Monthly Brand Guidelines (marketing) + description: Standard workflow to import monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly brand guidelines requests. + - Execute import procedure on the designated brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-import-urgent-brand-guidelines-828 + title: Import Urgent Brand Guidelines (marketing) + description: Standard workflow to import urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent brand guidelines records. + - Review and import the urgent brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-import-secure-brand-guidelines-829 + title: Import Secure Brand Guidelines (marketing) + description: Standard workflow to import secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure brand guidelines data. + - Apply marketing policies to import the brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-sync-weekly-campaign-830 + title: Sync Weekly Campaign (marketing) + description: Standard workflow to sync weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly campaign requests. + - Execute sync procedure on the designated campaign. + - Notify stakeholders via email. +- name: marketing-sync-monthly-campaign-831 + title: Sync Monthly Campaign (marketing) + description: Standard workflow to sync monthly campaign within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly campaign records. + - Review and sync the monthly campaign. + - Send a status update to the marketing team chat space. +- name: marketing-sync-urgent-campaign-832 + title: Sync Urgent Campaign (marketing) + description: Standard workflow to sync urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent campaign data. + - Apply marketing policies to sync the campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-sync-secure-campaign-833 + title: Sync Secure Campaign (marketing) + description: Standard workflow to sync secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure campaign requests. + - Execute sync procedure on the designated campaign. + - Archive results in a secure Drive folder. +- name: marketing-sync-weekly-asset-834 + title: Sync Weekly Asset (marketing) + description: Standard workflow to sync weekly asset within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly asset records. + - Review and sync the weekly asset. + - Notify stakeholders via email. +- name: marketing-sync-monthly-asset-835 + title: Sync Monthly Asset (marketing) + description: Standard workflow to sync monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly asset data. + - Apply marketing policies to sync the asset. + - Send a status update to the marketing team chat space. +- name: marketing-sync-urgent-asset-836 + title: Sync Urgent Asset (marketing) + description: Standard workflow to sync urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent asset requests. + - Execute sync procedure on the designated asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-sync-secure-asset-837 + title: Sync Secure Asset (marketing) + description: Standard workflow to sync secure asset within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure asset records. + - Review and sync the secure asset. + - Archive results in a secure Drive folder. +- name: marketing-sync-weekly-newsletter-838 + title: Sync Weekly Newsletter (marketing) + description: Standard workflow to sync weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly newsletter data. + - Apply marketing policies to sync the newsletter. + - Notify stakeholders via email. +- name: marketing-sync-monthly-newsletter-839 + title: Sync Monthly Newsletter (marketing) + description: Standard workflow to sync monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly newsletter requests. + - Execute sync procedure on the designated newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-sync-urgent-newsletter-840 + title: Sync Urgent Newsletter (marketing) + description: Standard workflow to sync urgent newsletter within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent newsletter records. + - Review and sync the urgent newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-sync-secure-newsletter-841 + title: Sync Secure Newsletter (marketing) + description: Standard workflow to sync secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure newsletter data. + - Apply marketing policies to sync the newsletter. + - Archive results in a secure Drive folder. +- name: marketing-sync-weekly-event-842 + title: Sync Weekly Event (marketing) + description: Standard workflow to sync weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly event requests. + - Execute sync procedure on the designated event. + - Notify stakeholders via email. +- name: marketing-sync-monthly-event-843 + title: Sync Monthly Event (marketing) + description: Standard workflow to sync monthly event within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly event records. + - Review and sync the monthly event. + - Send a status update to the marketing team chat space. +- name: marketing-sync-urgent-event-844 + title: Sync Urgent Event (marketing) + description: Standard workflow to sync urgent event within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent event data. + - Apply marketing policies to sync the event. + - Log completion in the master tracking spreadsheet. +- name: marketing-sync-secure-event-845 + title: Sync Secure Event (marketing) + description: Standard workflow to sync secure event within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure event requests. + - Execute sync procedure on the designated event. + - Archive results in a secure Drive folder. +- name: marketing-sync-weekly-social-post-846 + title: Sync Weekly Social Post (marketing) + description: Standard workflow to sync weekly social post within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly social post records. + - Review and sync the weekly social post. + - Notify stakeholders via email. +- name: marketing-sync-monthly-social-post-847 + title: Sync Monthly Social Post (marketing) + description: Standard workflow to sync monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly social post data. + - Apply marketing policies to sync the social post. + - Send a status update to the marketing team chat space. +- name: marketing-sync-urgent-social-post-848 + title: Sync Urgent Social Post (marketing) + description: Standard workflow to sync urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent social post requests. + - Execute sync procedure on the designated social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-sync-secure-social-post-849 + title: Sync Secure Social Post (marketing) + description: Standard workflow to sync secure social post within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure social post records. + - Review and sync the secure social post. + - Archive results in a secure Drive folder. +- name: marketing-sync-weekly-press-release-850 + title: Sync Weekly Press Release (marketing) + description: Standard workflow to sync weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly press release data. + - Apply marketing policies to sync the press release. + - Notify stakeholders via email. +- name: marketing-sync-monthly-press-release-851 + title: Sync Monthly Press Release (marketing) + description: Standard workflow to sync monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly press release requests. + - Execute sync procedure on the designated press release. + - Send a status update to the marketing team chat space. +- name: marketing-sync-urgent-press-release-852 + title: Sync Urgent Press Release (marketing) + description: Standard workflow to sync urgent press release within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent press release records. + - Review and sync the urgent press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-sync-secure-press-release-853 + title: Sync Secure Press Release (marketing) + description: Standard workflow to sync secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure press release data. + - Apply marketing policies to sync the press release. + - Archive results in a secure Drive folder. +- name: marketing-sync-weekly-brand-guidelines-854 + title: Sync Weekly Brand Guidelines (marketing) + description: Standard workflow to sync weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly brand guidelines requests. + - Execute sync procedure on the designated brand guidelines. + - Notify stakeholders via email. +- name: marketing-sync-monthly-brand-guidelines-855 + title: Sync Monthly Brand Guidelines (marketing) + description: Standard workflow to sync monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly brand guidelines records. + - Review and sync the monthly brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-sync-urgent-brand-guidelines-856 + title: Sync Urgent Brand Guidelines (marketing) + description: Standard workflow to sync urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent brand guidelines data. + - Apply marketing policies to sync the brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-sync-secure-brand-guidelines-857 + title: Sync Secure Brand Guidelines (marketing) + description: Standard workflow to sync secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure brand guidelines requests. + - Execute sync procedure on the designated brand guidelines. + - Archive results in a secure Drive folder. +- name: marketing-migrate-weekly-campaign-858 + title: Migrate Weekly Campaign (marketing) + description: Standard workflow to migrate weekly campaign within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly campaign records. + - Review and migrate the weekly campaign. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly campaign targets before running. +- name: marketing-migrate-monthly-campaign-859 + title: Migrate Monthly Campaign (marketing) + description: Standard workflow to migrate monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly campaign data. + - Apply marketing policies to migrate the campaign. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly campaign targets before running. +- name: marketing-migrate-urgent-campaign-860 + title: Migrate Urgent Campaign (marketing) + description: Standard workflow to migrate urgent campaign within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent campaign requests. + - Execute migrate procedure on the designated campaign. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent campaign targets before running. +- name: marketing-migrate-secure-campaign-861 + title: Migrate Secure Campaign (marketing) + description: Standard workflow to migrate secure campaign within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure campaign records. + - Review and migrate the secure campaign. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure campaign targets before running. +- name: marketing-migrate-weekly-asset-862 + title: Migrate Weekly Asset (marketing) + description: Standard workflow to migrate weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly asset data. + - Apply marketing policies to migrate the asset. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly asset targets before running. +- name: marketing-migrate-monthly-asset-863 + title: Migrate Monthly Asset (marketing) + description: Standard workflow to migrate monthly asset within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly asset requests. + - Execute migrate procedure on the designated asset. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly asset targets before running. +- name: marketing-migrate-urgent-asset-864 + title: Migrate Urgent Asset (marketing) + description: Standard workflow to migrate urgent asset within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent asset records. + - Review and migrate the urgent asset. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent asset targets before running. +- name: marketing-migrate-secure-asset-865 + title: Migrate Secure Asset (marketing) + description: Standard workflow to migrate secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure asset data. + - Apply marketing policies to migrate the asset. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure asset targets before running. +- name: marketing-migrate-weekly-newsletter-866 + title: Migrate Weekly Newsletter (marketing) + description: Standard workflow to migrate weekly newsletter within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly newsletter requests. + - Execute migrate procedure on the designated newsletter. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly newsletter targets before running. +- name: marketing-migrate-monthly-newsletter-867 + title: Migrate Monthly Newsletter (marketing) + description: Standard workflow to migrate monthly newsletter within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly newsletter records. + - Review and migrate the monthly newsletter. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly newsletter targets before running. +- name: marketing-migrate-urgent-newsletter-868 + title: Migrate Urgent Newsletter (marketing) + description: Standard workflow to migrate urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent newsletter data. + - Apply marketing policies to migrate the newsletter. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent newsletter targets before running. +- name: marketing-migrate-secure-newsletter-869 + title: Migrate Secure Newsletter (marketing) + description: Standard workflow to migrate secure newsletter within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure newsletter requests. + - Execute migrate procedure on the designated newsletter. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure newsletter targets before running. +- name: marketing-migrate-weekly-event-870 + title: Migrate Weekly Event (marketing) + description: Standard workflow to migrate weekly event within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly event records. + - Review and migrate the weekly event. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly event targets before running. +- name: marketing-migrate-monthly-event-871 + title: Migrate Monthly Event (marketing) + description: Standard workflow to migrate monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly event data. + - Apply marketing policies to migrate the event. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly event targets before running. +- name: marketing-migrate-urgent-event-872 + title: Migrate Urgent Event (marketing) + description: Standard workflow to migrate urgent event within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent event requests. + - Execute migrate procedure on the designated event. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent event targets before running. +- name: marketing-migrate-secure-event-873 + title: Migrate Secure Event (marketing) + description: Standard workflow to migrate secure event within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure event records. + - Review and migrate the secure event. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure event targets before running. +- name: marketing-migrate-weekly-social-post-874 + title: Migrate Weekly Social Post (marketing) + description: Standard workflow to migrate weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly social post data. + - Apply marketing policies to migrate the social post. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly social post targets before running. +- name: marketing-migrate-monthly-social-post-875 + title: Migrate Monthly Social Post (marketing) + description: Standard workflow to migrate monthly social post within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly social post requests. + - Execute migrate procedure on the designated social post. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly social post targets before running. +- name: marketing-migrate-urgent-social-post-876 + title: Migrate Urgent Social Post (marketing) + description: Standard workflow to migrate urgent social post within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent social post records. + - Review and migrate the urgent social post. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent social post targets before running. +- name: marketing-migrate-secure-social-post-877 + title: Migrate Secure Social Post (marketing) + description: Standard workflow to migrate secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure social post data. + - Apply marketing policies to migrate the social post. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure social post targets before running. +- name: marketing-migrate-weekly-press-release-878 + title: Migrate Weekly Press Release (marketing) + description: Standard workflow to migrate weekly press release within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly press release requests. + - Execute migrate procedure on the designated press release. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly press release targets before running. +- name: marketing-migrate-monthly-press-release-879 + title: Migrate Monthly Press Release (marketing) + description: Standard workflow to migrate monthly press release within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly press release records. + - Review and migrate the monthly press release. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly press release targets before running. +- name: marketing-migrate-urgent-press-release-880 + title: Migrate Urgent Press Release (marketing) + description: Standard workflow to migrate urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent press release data. + - Apply marketing policies to migrate the press release. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent press release targets before running. +- name: marketing-migrate-secure-press-release-881 + title: Migrate Secure Press Release (marketing) + description: Standard workflow to migrate secure press release within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure press release requests. + - Execute migrate procedure on the designated press release. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure press release targets before running. +- name: marketing-migrate-weekly-brand-guidelines-882 + title: Migrate Weekly Brand Guidelines (marketing) + description: Standard workflow to migrate weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly brand guidelines records. + - Review and migrate the weekly brand guidelines. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly brand guidelines targets before running. +- name: marketing-migrate-monthly-brand-guidelines-883 + title: Migrate Monthly Brand Guidelines (marketing) + description: Standard workflow to migrate monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly brand guidelines data. + - Apply marketing policies to migrate the brand guidelines. + - Send a status update to the marketing team chat space. + caution: Action involves bulk data manipulation. Confirm monthly brand guidelines targets before running. +- name: marketing-migrate-urgent-brand-guidelines-884 + title: Migrate Urgent Brand Guidelines (marketing) + description: Standard workflow to migrate urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent brand guidelines requests. + - Execute migrate procedure on the designated brand guidelines. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent brand guidelines targets before running. +- name: marketing-migrate-secure-brand-guidelines-885 + title: Migrate Secure Brand Guidelines (marketing) + description: Standard workflow to migrate secure brand guidelines within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure brand guidelines records. + - Review and migrate the secure brand guidelines. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure brand guidelines targets before running. +- name: marketing-backup-weekly-campaign-886 + title: Backup Weekly Campaign (marketing) + description: Standard workflow to backup weekly campaign within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly campaign data. + - Apply marketing policies to backup the campaign. + - Notify stakeholders via email. +- name: marketing-backup-monthly-campaign-887 + title: Backup Monthly Campaign (marketing) + description: Standard workflow to backup monthly campaign within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly campaign requests. + - Execute backup procedure on the designated campaign. + - Send a status update to the marketing team chat space. +- name: marketing-backup-urgent-campaign-888 + title: Backup Urgent Campaign (marketing) + description: Standard workflow to backup urgent campaign within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent campaign records. + - Review and backup the urgent campaign. + - Log completion in the master tracking spreadsheet. +- name: marketing-backup-secure-campaign-889 + title: Backup Secure Campaign (marketing) + description: Standard workflow to backup secure campaign within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure campaign data. + - Apply marketing policies to backup the campaign. + - Archive results in a secure Drive folder. +- name: marketing-backup-weekly-asset-890 + title: Backup Weekly Asset (marketing) + description: Standard workflow to backup weekly asset within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly asset requests. + - Execute backup procedure on the designated asset. + - Notify stakeholders via email. +- name: marketing-backup-monthly-asset-891 + title: Backup Monthly Asset (marketing) + description: Standard workflow to backup monthly asset within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly asset records. + - Review and backup the monthly asset. + - Send a status update to the marketing team chat space. +- name: marketing-backup-urgent-asset-892 + title: Backup Urgent Asset (marketing) + description: Standard workflow to backup urgent asset within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent asset data. + - Apply marketing policies to backup the asset. + - Log completion in the master tracking spreadsheet. +- name: marketing-backup-secure-asset-893 + title: Backup Secure Asset (marketing) + description: Standard workflow to backup secure asset within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure asset requests. + - Execute backup procedure on the designated asset. + - Archive results in a secure Drive folder. +- name: marketing-backup-weekly-newsletter-894 + title: Backup Weekly Newsletter (marketing) + description: Standard workflow to backup weekly newsletter within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly newsletter records. + - Review and backup the weekly newsletter. + - Notify stakeholders via email. +- name: marketing-backup-monthly-newsletter-895 + title: Backup Monthly Newsletter (marketing) + description: Standard workflow to backup monthly newsletter within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly newsletter data. + - Apply marketing policies to backup the newsletter. + - Send a status update to the marketing team chat space. +- name: marketing-backup-urgent-newsletter-896 + title: Backup Urgent Newsletter (marketing) + description: Standard workflow to backup urgent newsletter within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent newsletter requests. + - Execute backup procedure on the designated newsletter. + - Log completion in the master tracking spreadsheet. +- name: marketing-backup-secure-newsletter-897 + title: Backup Secure Newsletter (marketing) + description: Standard workflow to backup secure newsletter within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure newsletter records. + - Review and backup the secure newsletter. + - Archive results in a secure Drive folder. +- name: marketing-backup-weekly-event-898 + title: Backup Weekly Event (marketing) + description: Standard workflow to backup weekly event within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly event data. + - Apply marketing policies to backup the event. + - Notify stakeholders via email. +- name: marketing-backup-monthly-event-899 + title: Backup Monthly Event (marketing) + description: Standard workflow to backup monthly event within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly event requests. + - Execute backup procedure on the designated event. + - Send a status update to the marketing team chat space. +- name: marketing-backup-urgent-event-900 + title: Backup Urgent Event (marketing) + description: Standard workflow to backup urgent event within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent event records. + - Review and backup the urgent event. + - Log completion in the master tracking spreadsheet. +- name: marketing-backup-secure-event-901 + title: Backup Secure Event (marketing) + description: Standard workflow to backup secure event within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure event data. + - Apply marketing policies to backup the event. + - Archive results in a secure Drive folder. +- name: marketing-backup-weekly-social-post-902 + title: Backup Weekly Social Post (marketing) + description: Standard workflow to backup weekly social post within the marketing department. + category: marketing + services: + - gmail + - sheets + - docs + steps: + - Check system for pending weekly social post requests. + - Execute backup procedure on the designated social post. + - Notify stakeholders via email. +- name: marketing-backup-monthly-social-post-903 + title: Backup Monthly Social Post (marketing) + description: Standard workflow to backup monthly social post within the marketing department. + category: marketing + services: + - sheets + steps: + - Search for monthly social post records. + - Review and backup the monthly social post. + - Send a status update to the marketing team chat space. +- name: marketing-backup-urgent-social-post-904 + title: Backup Urgent Social Post (marketing) + description: Standard workflow to backup urgent social post within the marketing department. + category: marketing + services: + - docs + - drive + steps: + - Fetch latest urgent social post data. + - Apply marketing policies to backup the social post. + - Log completion in the master tracking spreadsheet. +- name: marketing-backup-secure-social-post-905 + title: Backup Secure Social Post (marketing) + description: Standard workflow to backup secure social post within the marketing department. + category: marketing + services: + - drive + - gmail + - sheets + steps: + - Check system for pending secure social post requests. + - Execute backup procedure on the designated social post. + - Archive results in a secure Drive folder. +- name: marketing-backup-weekly-press-release-906 + title: Backup Weekly Press Release (marketing) + description: Standard workflow to backup weekly press release within the marketing department. + category: marketing + services: + - gmail + steps: + - Search for weekly press release records. + - Review and backup the weekly press release. + - Notify stakeholders via email. +- name: marketing-backup-monthly-press-release-907 + title: Backup Monthly Press Release (marketing) + description: Standard workflow to backup monthly press release within the marketing department. + category: marketing + services: + - sheets + - docs + steps: + - Fetch latest monthly press release data. + - Apply marketing policies to backup the press release. + - Send a status update to the marketing team chat space. +- name: marketing-backup-urgent-press-release-908 + title: Backup Urgent Press Release (marketing) + description: Standard workflow to backup urgent press release within the marketing department. + category: marketing + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent press release requests. + - Execute backup procedure on the designated press release. + - Log completion in the master tracking spreadsheet. +- name: marketing-backup-secure-press-release-909 + title: Backup Secure Press Release (marketing) + description: Standard workflow to backup secure press release within the marketing department. + category: marketing + services: + - drive + steps: + - Search for secure press release records. + - Review and backup the secure press release. + - Archive results in a secure Drive folder. +- name: marketing-backup-weekly-brand-guidelines-910 + title: Backup Weekly Brand Guidelines (marketing) + description: Standard workflow to backup weekly brand guidelines within the marketing department. + category: marketing + services: + - gmail + - sheets + steps: + - Fetch latest weekly brand guidelines data. + - Apply marketing policies to backup the brand guidelines. + - Notify stakeholders via email. +- name: marketing-backup-monthly-brand-guidelines-911 + title: Backup Monthly Brand Guidelines (marketing) + description: Standard workflow to backup monthly brand guidelines within the marketing department. + category: marketing + services: + - sheets + - docs + - drive + steps: + - Check system for pending monthly brand guidelines requests. + - Execute backup procedure on the designated brand guidelines. + - Send a status update to the marketing team chat space. +- name: marketing-backup-urgent-brand-guidelines-912 + title: Backup Urgent Brand Guidelines (marketing) + description: Standard workflow to backup urgent brand guidelines within the marketing department. + category: marketing + services: + - docs + steps: + - Search for urgent brand guidelines records. + - Review and backup the urgent brand guidelines. + - Log completion in the master tracking spreadsheet. +- name: marketing-backup-secure-brand-guidelines-913 + title: Backup Secure Brand Guidelines (marketing) + description: Standard workflow to backup secure brand guidelines within the marketing department. + category: marketing + services: + - drive + - gmail + steps: + - Fetch latest secure brand guidelines data. + - Apply marketing policies to backup the brand guidelines. + - Archive results in a secure Drive folder. +- name: it-audit-weekly-user-account-914 + title: Audit Weekly User Account (it) + description: Standard workflow to audit weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute audit procedure on the designated user account. + - Notify stakeholders via email. +- name: it-audit-monthly-user-account-915 + title: Audit Monthly User Account (it) + description: Standard workflow to audit monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and audit the monthly user account. + - Send a status update to the it team chat space. +- name: it-audit-urgent-user-account-916 + title: Audit Urgent User Account (it) + description: Standard workflow to audit urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to audit the user account. + - Log completion in the master tracking spreadsheet. +- name: it-audit-secure-user-account-917 + title: Audit Secure User Account (it) + description: Standard workflow to audit secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute audit procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-audit-weekly-device-918 + title: Audit Weekly Device (it) + description: Standard workflow to audit weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and audit the weekly device. + - Notify stakeholders via email. +- name: it-audit-monthly-device-919 + title: Audit Monthly Device (it) + description: Standard workflow to audit monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to audit the device. + - Send a status update to the it team chat space. +- name: it-audit-urgent-device-920 + title: Audit Urgent Device (it) + description: Standard workflow to audit urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute audit procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-audit-secure-device-921 + title: Audit Secure Device (it) + description: Standard workflow to audit secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and audit the secure device. + - Archive results in a secure Drive folder. +- name: it-audit-weekly-license-922 + title: Audit Weekly License (it) + description: Standard workflow to audit weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to audit the license. + - Notify stakeholders via email. +- name: it-audit-monthly-license-923 + title: Audit Monthly License (it) + description: Standard workflow to audit monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute audit procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-audit-urgent-license-924 + title: Audit Urgent License (it) + description: Standard workflow to audit urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and audit the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-audit-secure-license-925 + title: Audit Secure License (it) + description: Standard workflow to audit secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to audit the license. + - Archive results in a secure Drive folder. +- name: it-audit-weekly-security-policy-926 + title: Audit Weekly Security Policy (it) + description: Standard workflow to audit weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute audit procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-audit-monthly-security-policy-927 + title: Audit Monthly Security Policy (it) + description: Standard workflow to audit monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and audit the monthly security policy. + - Send a status update to the it team chat space. +- name: it-audit-urgent-security-policy-928 + title: Audit Urgent Security Policy (it) + description: Standard workflow to audit urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to audit the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-audit-secure-security-policy-929 + title: Audit Secure Security Policy (it) + description: Standard workflow to audit secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute audit procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-audit-weekly-audit-log-930 + title: Audit Weekly Audit Log (it) + description: Standard workflow to audit weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and audit the weekly audit log. + - Notify stakeholders via email. +- name: it-audit-monthly-audit-log-931 + title: Audit Monthly Audit Log (it) + description: Standard workflow to audit monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to audit the audit log. + - Send a status update to the it team chat space. +- name: it-audit-urgent-audit-log-932 + title: Audit Urgent Audit Log (it) + description: Standard workflow to audit urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute audit procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-audit-secure-audit-log-933 + title: Audit Secure Audit Log (it) + description: Standard workflow to audit secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and audit the secure audit log. + - Archive results in a secure Drive folder. +- name: it-audit-weekly-network-config-934 + title: Audit Weekly Network Config (it) + description: Standard workflow to audit weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to audit the network config. + - Notify stakeholders via email. +- name: it-audit-monthly-network-config-935 + title: Audit Monthly Network Config (it) + description: Standard workflow to audit monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute audit procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-audit-urgent-network-config-936 + title: Audit Urgent Network Config (it) + description: Standard workflow to audit urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and audit the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-audit-secure-network-config-937 + title: Audit Secure Network Config (it) + description: Standard workflow to audit secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to audit the network config. + - Archive results in a secure Drive folder. +- name: it-onboard-weekly-user-account-938 + title: Onboard Weekly User Account (it) + description: Standard workflow to onboard weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute onboard procedure on the designated user account. + - Notify stakeholders via email. +- name: it-onboard-monthly-user-account-939 + title: Onboard Monthly User Account (it) + description: Standard workflow to onboard monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and onboard the monthly user account. + - Send a status update to the it team chat space. +- name: it-onboard-urgent-user-account-940 + title: Onboard Urgent User Account (it) + description: Standard workflow to onboard urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to onboard the user account. + - Log completion in the master tracking spreadsheet. +- name: it-onboard-secure-user-account-941 + title: Onboard Secure User Account (it) + description: Standard workflow to onboard secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute onboard procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-onboard-weekly-device-942 + title: Onboard Weekly Device (it) + description: Standard workflow to onboard weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and onboard the weekly device. + - Notify stakeholders via email. +- name: it-onboard-monthly-device-943 + title: Onboard Monthly Device (it) + description: Standard workflow to onboard monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to onboard the device. + - Send a status update to the it team chat space. +- name: it-onboard-urgent-device-944 + title: Onboard Urgent Device (it) + description: Standard workflow to onboard urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute onboard procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-onboard-secure-device-945 + title: Onboard Secure Device (it) + description: Standard workflow to onboard secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and onboard the secure device. + - Archive results in a secure Drive folder. +- name: it-onboard-weekly-license-946 + title: Onboard Weekly License (it) + description: Standard workflow to onboard weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to onboard the license. + - Notify stakeholders via email. +- name: it-onboard-monthly-license-947 + title: Onboard Monthly License (it) + description: Standard workflow to onboard monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute onboard procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-onboard-urgent-license-948 + title: Onboard Urgent License (it) + description: Standard workflow to onboard urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and onboard the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-onboard-secure-license-949 + title: Onboard Secure License (it) + description: Standard workflow to onboard secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to onboard the license. + - Archive results in a secure Drive folder. +- name: it-onboard-weekly-security-policy-950 + title: Onboard Weekly Security Policy (it) + description: Standard workflow to onboard weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute onboard procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-onboard-monthly-security-policy-951 + title: Onboard Monthly Security Policy (it) + description: Standard workflow to onboard monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and onboard the monthly security policy. + - Send a status update to the it team chat space. +- name: it-onboard-urgent-security-policy-952 + title: Onboard Urgent Security Policy (it) + description: Standard workflow to onboard urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to onboard the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-onboard-secure-security-policy-953 + title: Onboard Secure Security Policy (it) + description: Standard workflow to onboard secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute onboard procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-onboard-weekly-audit-log-954 + title: Onboard Weekly Audit Log (it) + description: Standard workflow to onboard weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and onboard the weekly audit log. + - Notify stakeholders via email. +- name: it-onboard-monthly-audit-log-955 + title: Onboard Monthly Audit Log (it) + description: Standard workflow to onboard monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to onboard the audit log. + - Send a status update to the it team chat space. +- name: it-onboard-urgent-audit-log-956 + title: Onboard Urgent Audit Log (it) + description: Standard workflow to onboard urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute onboard procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-onboard-secure-audit-log-957 + title: Onboard Secure Audit Log (it) + description: Standard workflow to onboard secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and onboard the secure audit log. + - Archive results in a secure Drive folder. +- name: it-onboard-weekly-network-config-958 + title: Onboard Weekly Network Config (it) + description: Standard workflow to onboard weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to onboard the network config. + - Notify stakeholders via email. +- name: it-onboard-monthly-network-config-959 + title: Onboard Monthly Network Config (it) + description: Standard workflow to onboard monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute onboard procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-onboard-urgent-network-config-960 + title: Onboard Urgent Network Config (it) + description: Standard workflow to onboard urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and onboard the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-onboard-secure-network-config-961 + title: Onboard Secure Network Config (it) + description: Standard workflow to onboard secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to onboard the network config. + - Archive results in a secure Drive folder. +- name: it-review-weekly-user-account-962 + title: Review Weekly User Account (it) + description: Standard workflow to review weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute review procedure on the designated user account. + - Notify stakeholders via email. +- name: it-review-monthly-user-account-963 + title: Review Monthly User Account (it) + description: Standard workflow to review monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and review the monthly user account. + - Send a status update to the it team chat space. +- name: it-review-urgent-user-account-964 + title: Review Urgent User Account (it) + description: Standard workflow to review urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to review the user account. + - Log completion in the master tracking spreadsheet. +- name: it-review-secure-user-account-965 + title: Review Secure User Account (it) + description: Standard workflow to review secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute review procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-review-weekly-device-966 + title: Review Weekly Device (it) + description: Standard workflow to review weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and review the weekly device. + - Notify stakeholders via email. +- name: it-review-monthly-device-967 + title: Review Monthly Device (it) + description: Standard workflow to review monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to review the device. + - Send a status update to the it team chat space. +- name: it-review-urgent-device-968 + title: Review Urgent Device (it) + description: Standard workflow to review urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute review procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-review-secure-device-969 + title: Review Secure Device (it) + description: Standard workflow to review secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and review the secure device. + - Archive results in a secure Drive folder. +- name: it-review-weekly-license-970 + title: Review Weekly License (it) + description: Standard workflow to review weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to review the license. + - Notify stakeholders via email. +- name: it-review-monthly-license-971 + title: Review Monthly License (it) + description: Standard workflow to review monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute review procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-review-urgent-license-972 + title: Review Urgent License (it) + description: Standard workflow to review urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and review the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-review-secure-license-973 + title: Review Secure License (it) + description: Standard workflow to review secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to review the license. + - Archive results in a secure Drive folder. +- name: it-review-weekly-security-policy-974 + title: Review Weekly Security Policy (it) + description: Standard workflow to review weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute review procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-review-monthly-security-policy-975 + title: Review Monthly Security Policy (it) + description: Standard workflow to review monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and review the monthly security policy. + - Send a status update to the it team chat space. +- name: it-review-urgent-security-policy-976 + title: Review Urgent Security Policy (it) + description: Standard workflow to review urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to review the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-review-secure-security-policy-977 + title: Review Secure Security Policy (it) + description: Standard workflow to review secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute review procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-review-weekly-audit-log-978 + title: Review Weekly Audit Log (it) + description: Standard workflow to review weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and review the weekly audit log. + - Notify stakeholders via email. +- name: it-review-monthly-audit-log-979 + title: Review Monthly Audit Log (it) + description: Standard workflow to review monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to review the audit log. + - Send a status update to the it team chat space. +- name: it-review-urgent-audit-log-980 + title: Review Urgent Audit Log (it) + description: Standard workflow to review urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute review procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-review-secure-audit-log-981 + title: Review Secure Audit Log (it) + description: Standard workflow to review secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and review the secure audit log. + - Archive results in a secure Drive folder. +- name: it-review-weekly-network-config-982 + title: Review Weekly Network Config (it) + description: Standard workflow to review weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to review the network config. + - Notify stakeholders via email. +- name: it-review-monthly-network-config-983 + title: Review Monthly Network Config (it) + description: Standard workflow to review monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute review procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-review-urgent-network-config-984 + title: Review Urgent Network Config (it) + description: Standard workflow to review urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and review the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-review-secure-network-config-985 + title: Review Secure Network Config (it) + description: Standard workflow to review secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to review the network config. + - Archive results in a secure Drive folder. +- name: it-approve-weekly-user-account-986 + title: Approve Weekly User Account (it) + description: Standard workflow to approve weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute approve procedure on the designated user account. + - Notify stakeholders via email. +- name: it-approve-monthly-user-account-987 + title: Approve Monthly User Account (it) + description: Standard workflow to approve monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and approve the monthly user account. + - Send a status update to the it team chat space. +- name: it-approve-urgent-user-account-988 + title: Approve Urgent User Account (it) + description: Standard workflow to approve urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to approve the user account. + - Log completion in the master tracking spreadsheet. +- name: it-approve-secure-user-account-989 + title: Approve Secure User Account (it) + description: Standard workflow to approve secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute approve procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-approve-weekly-device-990 + title: Approve Weekly Device (it) + description: Standard workflow to approve weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and approve the weekly device. + - Notify stakeholders via email. +- name: it-approve-monthly-device-991 + title: Approve Monthly Device (it) + description: Standard workflow to approve monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to approve the device. + - Send a status update to the it team chat space. +- name: it-approve-urgent-device-992 + title: Approve Urgent Device (it) + description: Standard workflow to approve urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute approve procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-approve-secure-device-993 + title: Approve Secure Device (it) + description: Standard workflow to approve secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and approve the secure device. + - Archive results in a secure Drive folder. +- name: it-approve-weekly-license-994 + title: Approve Weekly License (it) + description: Standard workflow to approve weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to approve the license. + - Notify stakeholders via email. +- name: it-approve-monthly-license-995 + title: Approve Monthly License (it) + description: Standard workflow to approve monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute approve procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-approve-urgent-license-996 + title: Approve Urgent License (it) + description: Standard workflow to approve urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and approve the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-approve-secure-license-997 + title: Approve Secure License (it) + description: Standard workflow to approve secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to approve the license. + - Archive results in a secure Drive folder. +- name: it-approve-weekly-security-policy-998 + title: Approve Weekly Security Policy (it) + description: Standard workflow to approve weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute approve procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-approve-monthly-security-policy-999 + title: Approve Monthly Security Policy (it) + description: Standard workflow to approve monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and approve the monthly security policy. + - Send a status update to the it team chat space. +- name: it-approve-urgent-security-policy-1000 + title: Approve Urgent Security Policy (it) + description: Standard workflow to approve urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to approve the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-approve-secure-security-policy-1001 + title: Approve Secure Security Policy (it) + description: Standard workflow to approve secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute approve procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-approve-weekly-audit-log-1002 + title: Approve Weekly Audit Log (it) + description: Standard workflow to approve weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and approve the weekly audit log. + - Notify stakeholders via email. +- name: it-approve-monthly-audit-log-1003 + title: Approve Monthly Audit Log (it) + description: Standard workflow to approve monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to approve the audit log. + - Send a status update to the it team chat space. +- name: it-approve-urgent-audit-log-1004 + title: Approve Urgent Audit Log (it) + description: Standard workflow to approve urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute approve procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-approve-secure-audit-log-1005 + title: Approve Secure Audit Log (it) + description: Standard workflow to approve secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and approve the secure audit log. + - Archive results in a secure Drive folder. +- name: it-approve-weekly-network-config-1006 + title: Approve Weekly Network Config (it) + description: Standard workflow to approve weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to approve the network config. + - Notify stakeholders via email. +- name: it-approve-monthly-network-config-1007 + title: Approve Monthly Network Config (it) + description: Standard workflow to approve monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute approve procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-approve-urgent-network-config-1008 + title: Approve Urgent Network Config (it) + description: Standard workflow to approve urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and approve the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-approve-secure-network-config-1009 + title: Approve Secure Network Config (it) + description: Standard workflow to approve secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to approve the network config. + - Archive results in a secure Drive folder. +- name: it-share-weekly-user-account-1010 + title: Share Weekly User Account (it) + description: Standard workflow to share weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute share procedure on the designated user account. + - Notify stakeholders via email. +- name: it-share-monthly-user-account-1011 + title: Share Monthly User Account (it) + description: Standard workflow to share monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and share the monthly user account. + - Send a status update to the it team chat space. +- name: it-share-urgent-user-account-1012 + title: Share Urgent User Account (it) + description: Standard workflow to share urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to share the user account. + - Log completion in the master tracking spreadsheet. +- name: it-share-secure-user-account-1013 + title: Share Secure User Account (it) + description: Standard workflow to share secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute share procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-share-weekly-device-1014 + title: Share Weekly Device (it) + description: Standard workflow to share weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and share the weekly device. + - Notify stakeholders via email. +- name: it-share-monthly-device-1015 + title: Share Monthly Device (it) + description: Standard workflow to share monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to share the device. + - Send a status update to the it team chat space. +- name: it-share-urgent-device-1016 + title: Share Urgent Device (it) + description: Standard workflow to share urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute share procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-share-secure-device-1017 + title: Share Secure Device (it) + description: Standard workflow to share secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and share the secure device. + - Archive results in a secure Drive folder. +- name: it-share-weekly-license-1018 + title: Share Weekly License (it) + description: Standard workflow to share weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to share the license. + - Notify stakeholders via email. +- name: it-share-monthly-license-1019 + title: Share Monthly License (it) + description: Standard workflow to share monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute share procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-share-urgent-license-1020 + title: Share Urgent License (it) + description: Standard workflow to share urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and share the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-share-secure-license-1021 + title: Share Secure License (it) + description: Standard workflow to share secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to share the license. + - Archive results in a secure Drive folder. +- name: it-share-weekly-security-policy-1022 + title: Share Weekly Security Policy (it) + description: Standard workflow to share weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute share procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-share-monthly-security-policy-1023 + title: Share Monthly Security Policy (it) + description: Standard workflow to share monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and share the monthly security policy. + - Send a status update to the it team chat space. +- name: it-share-urgent-security-policy-1024 + title: Share Urgent Security Policy (it) + description: Standard workflow to share urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to share the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-share-secure-security-policy-1025 + title: Share Secure Security Policy (it) + description: Standard workflow to share secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute share procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-share-weekly-audit-log-1026 + title: Share Weekly Audit Log (it) + description: Standard workflow to share weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and share the weekly audit log. + - Notify stakeholders via email. +- name: it-share-monthly-audit-log-1027 + title: Share Monthly Audit Log (it) + description: Standard workflow to share monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to share the audit log. + - Send a status update to the it team chat space. +- name: it-share-urgent-audit-log-1028 + title: Share Urgent Audit Log (it) + description: Standard workflow to share urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute share procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-share-secure-audit-log-1029 + title: Share Secure Audit Log (it) + description: Standard workflow to share secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and share the secure audit log. + - Archive results in a secure Drive folder. +- name: it-share-weekly-network-config-1030 + title: Share Weekly Network Config (it) + description: Standard workflow to share weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to share the network config. + - Notify stakeholders via email. +- name: it-share-monthly-network-config-1031 + title: Share Monthly Network Config (it) + description: Standard workflow to share monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute share procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-share-urgent-network-config-1032 + title: Share Urgent Network Config (it) + description: Standard workflow to share urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and share the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-share-secure-network-config-1033 + title: Share Secure Network Config (it) + description: Standard workflow to share secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to share the network config. + - Archive results in a secure Drive folder. +- name: it-publish-weekly-user-account-1034 + title: Publish Weekly User Account (it) + description: Standard workflow to publish weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute publish procedure on the designated user account. + - Notify stakeholders via email. +- name: it-publish-monthly-user-account-1035 + title: Publish Monthly User Account (it) + description: Standard workflow to publish monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and publish the monthly user account. + - Send a status update to the it team chat space. +- name: it-publish-urgent-user-account-1036 + title: Publish Urgent User Account (it) + description: Standard workflow to publish urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to publish the user account. + - Log completion in the master tracking spreadsheet. +- name: it-publish-secure-user-account-1037 + title: Publish Secure User Account (it) + description: Standard workflow to publish secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute publish procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-publish-weekly-device-1038 + title: Publish Weekly Device (it) + description: Standard workflow to publish weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and publish the weekly device. + - Notify stakeholders via email. +- name: it-publish-monthly-device-1039 + title: Publish Monthly Device (it) + description: Standard workflow to publish monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to publish the device. + - Send a status update to the it team chat space. +- name: it-publish-urgent-device-1040 + title: Publish Urgent Device (it) + description: Standard workflow to publish urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute publish procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-publish-secure-device-1041 + title: Publish Secure Device (it) + description: Standard workflow to publish secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and publish the secure device. + - Archive results in a secure Drive folder. +- name: it-publish-weekly-license-1042 + title: Publish Weekly License (it) + description: Standard workflow to publish weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to publish the license. + - Notify stakeholders via email. +- name: it-publish-monthly-license-1043 + title: Publish Monthly License (it) + description: Standard workflow to publish monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute publish procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-publish-urgent-license-1044 + title: Publish Urgent License (it) + description: Standard workflow to publish urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and publish the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-publish-secure-license-1045 + title: Publish Secure License (it) + description: Standard workflow to publish secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to publish the license. + - Archive results in a secure Drive folder. +- name: it-publish-weekly-security-policy-1046 + title: Publish Weekly Security Policy (it) + description: Standard workflow to publish weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute publish procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-publish-monthly-security-policy-1047 + title: Publish Monthly Security Policy (it) + description: Standard workflow to publish monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and publish the monthly security policy. + - Send a status update to the it team chat space. +- name: it-publish-urgent-security-policy-1048 + title: Publish Urgent Security Policy (it) + description: Standard workflow to publish urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to publish the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-publish-secure-security-policy-1049 + title: Publish Secure Security Policy (it) + description: Standard workflow to publish secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute publish procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-publish-weekly-audit-log-1050 + title: Publish Weekly Audit Log (it) + description: Standard workflow to publish weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and publish the weekly audit log. + - Notify stakeholders via email. +- name: it-publish-monthly-audit-log-1051 + title: Publish Monthly Audit Log (it) + description: Standard workflow to publish monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to publish the audit log. + - Send a status update to the it team chat space. +- name: it-publish-urgent-audit-log-1052 + title: Publish Urgent Audit Log (it) + description: Standard workflow to publish urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute publish procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-publish-secure-audit-log-1053 + title: Publish Secure Audit Log (it) + description: Standard workflow to publish secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and publish the secure audit log. + - Archive results in a secure Drive folder. +- name: it-publish-weekly-network-config-1054 + title: Publish Weekly Network Config (it) + description: Standard workflow to publish weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to publish the network config. + - Notify stakeholders via email. +- name: it-publish-monthly-network-config-1055 + title: Publish Monthly Network Config (it) + description: Standard workflow to publish monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute publish procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-publish-urgent-network-config-1056 + title: Publish Urgent Network Config (it) + description: Standard workflow to publish urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and publish the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-publish-secure-network-config-1057 + title: Publish Secure Network Config (it) + description: Standard workflow to publish secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to publish the network config. + - Archive results in a secure Drive folder. +- name: it-archive-weekly-user-account-1058 + title: Archive Weekly User Account (it) + description: Standard workflow to archive weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute archive procedure on the designated user account. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly user account targets before running. +- name: it-archive-monthly-user-account-1059 + title: Archive Monthly User Account (it) + description: Standard workflow to archive monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and archive the monthly user account. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly user account targets before running. +- name: it-archive-urgent-user-account-1060 + title: Archive Urgent User Account (it) + description: Standard workflow to archive urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to archive the user account. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent user account targets before running. +- name: it-archive-secure-user-account-1061 + title: Archive Secure User Account (it) + description: Standard workflow to archive secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute archive procedure on the designated user account. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure user account targets before running. +- name: it-archive-weekly-device-1062 + title: Archive Weekly Device (it) + description: Standard workflow to archive weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and archive the weekly device. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly device targets before running. +- name: it-archive-monthly-device-1063 + title: Archive Monthly Device (it) + description: Standard workflow to archive monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to archive the device. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly device targets before running. +- name: it-archive-urgent-device-1064 + title: Archive Urgent Device (it) + description: Standard workflow to archive urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute archive procedure on the designated device. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent device targets before running. +- name: it-archive-secure-device-1065 + title: Archive Secure Device (it) + description: Standard workflow to archive secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and archive the secure device. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure device targets before running. +- name: it-archive-weekly-license-1066 + title: Archive Weekly License (it) + description: Standard workflow to archive weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to archive the license. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly license targets before running. +- name: it-archive-monthly-license-1067 + title: Archive Monthly License (it) + description: Standard workflow to archive monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute archive procedure on the designated license. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly license targets before running. +- name: it-archive-urgent-license-1068 + title: Archive Urgent License (it) + description: Standard workflow to archive urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and archive the urgent license. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent license targets before running. +- name: it-archive-secure-license-1069 + title: Archive Secure License (it) + description: Standard workflow to archive secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to archive the license. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure license targets before running. +- name: it-archive-weekly-security-policy-1070 + title: Archive Weekly Security Policy (it) + description: Standard workflow to archive weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute archive procedure on the designated security policy. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly security policy targets before running. +- name: it-archive-monthly-security-policy-1071 + title: Archive Monthly Security Policy (it) + description: Standard workflow to archive monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and archive the monthly security policy. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly security policy targets before running. +- name: it-archive-urgent-security-policy-1072 + title: Archive Urgent Security Policy (it) + description: Standard workflow to archive urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to archive the security policy. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent security policy targets before running. +- name: it-archive-secure-security-policy-1073 + title: Archive Secure Security Policy (it) + description: Standard workflow to archive secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute archive procedure on the designated security policy. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure security policy targets before running. +- name: it-archive-weekly-audit-log-1074 + title: Archive Weekly Audit Log (it) + description: Standard workflow to archive weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and archive the weekly audit log. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly audit log targets before running. +- name: it-archive-monthly-audit-log-1075 + title: Archive Monthly Audit Log (it) + description: Standard workflow to archive monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to archive the audit log. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly audit log targets before running. +- name: it-archive-urgent-audit-log-1076 + title: Archive Urgent Audit Log (it) + description: Standard workflow to archive urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute archive procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent audit log targets before running. +- name: it-archive-secure-audit-log-1077 + title: Archive Secure Audit Log (it) + description: Standard workflow to archive secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and archive the secure audit log. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure audit log targets before running. +- name: it-archive-weekly-network-config-1078 + title: Archive Weekly Network Config (it) + description: Standard workflow to archive weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to archive the network config. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly network config targets before running. +- name: it-archive-monthly-network-config-1079 + title: Archive Monthly Network Config (it) + description: Standard workflow to archive monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute archive procedure on the designated network config. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly network config targets before running. +- name: it-archive-urgent-network-config-1080 + title: Archive Urgent Network Config (it) + description: Standard workflow to archive urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and archive the urgent network config. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent network config targets before running. +- name: it-archive-secure-network-config-1081 + title: Archive Secure Network Config (it) + description: Standard workflow to archive secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to archive the network config. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure network config targets before running. +- name: it-export-weekly-user-account-1082 + title: Export Weekly User Account (it) + description: Standard workflow to export weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute export procedure on the designated user account. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly user account targets before running. +- name: it-export-monthly-user-account-1083 + title: Export Monthly User Account (it) + description: Standard workflow to export monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and export the monthly user account. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly user account targets before running. +- name: it-export-urgent-user-account-1084 + title: Export Urgent User Account (it) + description: Standard workflow to export urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to export the user account. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent user account targets before running. +- name: it-export-secure-user-account-1085 + title: Export Secure User Account (it) + description: Standard workflow to export secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute export procedure on the designated user account. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure user account targets before running. +- name: it-export-weekly-device-1086 + title: Export Weekly Device (it) + description: Standard workflow to export weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and export the weekly device. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly device targets before running. +- name: it-export-monthly-device-1087 + title: Export Monthly Device (it) + description: Standard workflow to export monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to export the device. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly device targets before running. +- name: it-export-urgent-device-1088 + title: Export Urgent Device (it) + description: Standard workflow to export urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute export procedure on the designated device. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent device targets before running. +- name: it-export-secure-device-1089 + title: Export Secure Device (it) + description: Standard workflow to export secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and export the secure device. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure device targets before running. +- name: it-export-weekly-license-1090 + title: Export Weekly License (it) + description: Standard workflow to export weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to export the license. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly license targets before running. +- name: it-export-monthly-license-1091 + title: Export Monthly License (it) + description: Standard workflow to export monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute export procedure on the designated license. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly license targets before running. +- name: it-export-urgent-license-1092 + title: Export Urgent License (it) + description: Standard workflow to export urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and export the urgent license. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent license targets before running. +- name: it-export-secure-license-1093 + title: Export Secure License (it) + description: Standard workflow to export secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to export the license. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure license targets before running. +- name: it-export-weekly-security-policy-1094 + title: Export Weekly Security Policy (it) + description: Standard workflow to export weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute export procedure on the designated security policy. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly security policy targets before running. +- name: it-export-monthly-security-policy-1095 + title: Export Monthly Security Policy (it) + description: Standard workflow to export monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and export the monthly security policy. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly security policy targets before running. +- name: it-export-urgent-security-policy-1096 + title: Export Urgent Security Policy (it) + description: Standard workflow to export urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to export the security policy. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent security policy targets before running. +- name: it-export-secure-security-policy-1097 + title: Export Secure Security Policy (it) + description: Standard workflow to export secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute export procedure on the designated security policy. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure security policy targets before running. +- name: it-export-weekly-audit-log-1098 + title: Export Weekly Audit Log (it) + description: Standard workflow to export weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and export the weekly audit log. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly audit log targets before running. +- name: it-export-monthly-audit-log-1099 + title: Export Monthly Audit Log (it) + description: Standard workflow to export monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to export the audit log. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly audit log targets before running. +- name: it-export-urgent-audit-log-1100 + title: Export Urgent Audit Log (it) + description: Standard workflow to export urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute export procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent audit log targets before running. +- name: it-export-secure-audit-log-1101 + title: Export Secure Audit Log (it) + description: Standard workflow to export secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and export the secure audit log. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure audit log targets before running. +- name: it-export-weekly-network-config-1102 + title: Export Weekly Network Config (it) + description: Standard workflow to export weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to export the network config. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly network config targets before running. +- name: it-export-monthly-network-config-1103 + title: Export Monthly Network Config (it) + description: Standard workflow to export monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute export procedure on the designated network config. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly network config targets before running. +- name: it-export-urgent-network-config-1104 + title: Export Urgent Network Config (it) + description: Standard workflow to export urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and export the urgent network config. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent network config targets before running. +- name: it-export-secure-network-config-1105 + title: Export Secure Network Config (it) + description: Standard workflow to export secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to export the network config. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure network config targets before running. +- name: it-import-weekly-user-account-1106 + title: Import Weekly User Account (it) + description: Standard workflow to import weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute import procedure on the designated user account. + - Notify stakeholders via email. +- name: it-import-monthly-user-account-1107 + title: Import Monthly User Account (it) + description: Standard workflow to import monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and import the monthly user account. + - Send a status update to the it team chat space. +- name: it-import-urgent-user-account-1108 + title: Import Urgent User Account (it) + description: Standard workflow to import urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to import the user account. + - Log completion in the master tracking spreadsheet. +- name: it-import-secure-user-account-1109 + title: Import Secure User Account (it) + description: Standard workflow to import secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute import procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-import-weekly-device-1110 + title: Import Weekly Device (it) + description: Standard workflow to import weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and import the weekly device. + - Notify stakeholders via email. +- name: it-import-monthly-device-1111 + title: Import Monthly Device (it) + description: Standard workflow to import monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to import the device. + - Send a status update to the it team chat space. +- name: it-import-urgent-device-1112 + title: Import Urgent Device (it) + description: Standard workflow to import urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute import procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-import-secure-device-1113 + title: Import Secure Device (it) + description: Standard workflow to import secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and import the secure device. + - Archive results in a secure Drive folder. +- name: it-import-weekly-license-1114 + title: Import Weekly License (it) + description: Standard workflow to import weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to import the license. + - Notify stakeholders via email. +- name: it-import-monthly-license-1115 + title: Import Monthly License (it) + description: Standard workflow to import monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute import procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-import-urgent-license-1116 + title: Import Urgent License (it) + description: Standard workflow to import urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and import the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-import-secure-license-1117 + title: Import Secure License (it) + description: Standard workflow to import secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to import the license. + - Archive results in a secure Drive folder. +- name: it-import-weekly-security-policy-1118 + title: Import Weekly Security Policy (it) + description: Standard workflow to import weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute import procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-import-monthly-security-policy-1119 + title: Import Monthly Security Policy (it) + description: Standard workflow to import monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and import the monthly security policy. + - Send a status update to the it team chat space. +- name: it-import-urgent-security-policy-1120 + title: Import Urgent Security Policy (it) + description: Standard workflow to import urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to import the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-import-secure-security-policy-1121 + title: Import Secure Security Policy (it) + description: Standard workflow to import secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute import procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-import-weekly-audit-log-1122 + title: Import Weekly Audit Log (it) + description: Standard workflow to import weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and import the weekly audit log. + - Notify stakeholders via email. +- name: it-import-monthly-audit-log-1123 + title: Import Monthly Audit Log (it) + description: Standard workflow to import monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to import the audit log. + - Send a status update to the it team chat space. +- name: it-import-urgent-audit-log-1124 + title: Import Urgent Audit Log (it) + description: Standard workflow to import urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute import procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-import-secure-audit-log-1125 + title: Import Secure Audit Log (it) + description: Standard workflow to import secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and import the secure audit log. + - Archive results in a secure Drive folder. +- name: it-import-weekly-network-config-1126 + title: Import Weekly Network Config (it) + description: Standard workflow to import weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to import the network config. + - Notify stakeholders via email. +- name: it-import-monthly-network-config-1127 + title: Import Monthly Network Config (it) + description: Standard workflow to import monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute import procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-import-urgent-network-config-1128 + title: Import Urgent Network Config (it) + description: Standard workflow to import urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and import the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-import-secure-network-config-1129 + title: Import Secure Network Config (it) + description: Standard workflow to import secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to import the network config. + - Archive results in a secure Drive folder. +- name: it-sync-weekly-user-account-1130 + title: Sync Weekly User Account (it) + description: Standard workflow to sync weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute sync procedure on the designated user account. + - Notify stakeholders via email. +- name: it-sync-monthly-user-account-1131 + title: Sync Monthly User Account (it) + description: Standard workflow to sync monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and sync the monthly user account. + - Send a status update to the it team chat space. +- name: it-sync-urgent-user-account-1132 + title: Sync Urgent User Account (it) + description: Standard workflow to sync urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to sync the user account. + - Log completion in the master tracking spreadsheet. +- name: it-sync-secure-user-account-1133 + title: Sync Secure User Account (it) + description: Standard workflow to sync secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute sync procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-sync-weekly-device-1134 + title: Sync Weekly Device (it) + description: Standard workflow to sync weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and sync the weekly device. + - Notify stakeholders via email. +- name: it-sync-monthly-device-1135 + title: Sync Monthly Device (it) + description: Standard workflow to sync monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to sync the device. + - Send a status update to the it team chat space. +- name: it-sync-urgent-device-1136 + title: Sync Urgent Device (it) + description: Standard workflow to sync urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute sync procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-sync-secure-device-1137 + title: Sync Secure Device (it) + description: Standard workflow to sync secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and sync the secure device. + - Archive results in a secure Drive folder. +- name: it-sync-weekly-license-1138 + title: Sync Weekly License (it) + description: Standard workflow to sync weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to sync the license. + - Notify stakeholders via email. +- name: it-sync-monthly-license-1139 + title: Sync Monthly License (it) + description: Standard workflow to sync monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute sync procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-sync-urgent-license-1140 + title: Sync Urgent License (it) + description: Standard workflow to sync urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and sync the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-sync-secure-license-1141 + title: Sync Secure License (it) + description: Standard workflow to sync secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to sync the license. + - Archive results in a secure Drive folder. +- name: it-sync-weekly-security-policy-1142 + title: Sync Weekly Security Policy (it) + description: Standard workflow to sync weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute sync procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-sync-monthly-security-policy-1143 + title: Sync Monthly Security Policy (it) + description: Standard workflow to sync monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and sync the monthly security policy. + - Send a status update to the it team chat space. +- name: it-sync-urgent-security-policy-1144 + title: Sync Urgent Security Policy (it) + description: Standard workflow to sync urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to sync the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-sync-secure-security-policy-1145 + title: Sync Secure Security Policy (it) + description: Standard workflow to sync secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute sync procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-sync-weekly-audit-log-1146 + title: Sync Weekly Audit Log (it) + description: Standard workflow to sync weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and sync the weekly audit log. + - Notify stakeholders via email. +- name: it-sync-monthly-audit-log-1147 + title: Sync Monthly Audit Log (it) + description: Standard workflow to sync monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to sync the audit log. + - Send a status update to the it team chat space. +- name: it-sync-urgent-audit-log-1148 + title: Sync Urgent Audit Log (it) + description: Standard workflow to sync urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute sync procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-sync-secure-audit-log-1149 + title: Sync Secure Audit Log (it) + description: Standard workflow to sync secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and sync the secure audit log. + - Archive results in a secure Drive folder. +- name: it-sync-weekly-network-config-1150 + title: Sync Weekly Network Config (it) + description: Standard workflow to sync weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to sync the network config. + - Notify stakeholders via email. +- name: it-sync-monthly-network-config-1151 + title: Sync Monthly Network Config (it) + description: Standard workflow to sync monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute sync procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-sync-urgent-network-config-1152 + title: Sync Urgent Network Config (it) + description: Standard workflow to sync urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and sync the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-sync-secure-network-config-1153 + title: Sync Secure Network Config (it) + description: Standard workflow to sync secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to sync the network config. + - Archive results in a secure Drive folder. +- name: it-migrate-weekly-user-account-1154 + title: Migrate Weekly User Account (it) + description: Standard workflow to migrate weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute migrate procedure on the designated user account. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly user account targets before running. +- name: it-migrate-monthly-user-account-1155 + title: Migrate Monthly User Account (it) + description: Standard workflow to migrate monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and migrate the monthly user account. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly user account targets before running. +- name: it-migrate-urgent-user-account-1156 + title: Migrate Urgent User Account (it) + description: Standard workflow to migrate urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to migrate the user account. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent user account targets before running. +- name: it-migrate-secure-user-account-1157 + title: Migrate Secure User Account (it) + description: Standard workflow to migrate secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute migrate procedure on the designated user account. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure user account targets before running. +- name: it-migrate-weekly-device-1158 + title: Migrate Weekly Device (it) + description: Standard workflow to migrate weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and migrate the weekly device. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly device targets before running. +- name: it-migrate-monthly-device-1159 + title: Migrate Monthly Device (it) + description: Standard workflow to migrate monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to migrate the device. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly device targets before running. +- name: it-migrate-urgent-device-1160 + title: Migrate Urgent Device (it) + description: Standard workflow to migrate urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute migrate procedure on the designated device. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent device targets before running. +- name: it-migrate-secure-device-1161 + title: Migrate Secure Device (it) + description: Standard workflow to migrate secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and migrate the secure device. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure device targets before running. +- name: it-migrate-weekly-license-1162 + title: Migrate Weekly License (it) + description: Standard workflow to migrate weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to migrate the license. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly license targets before running. +- name: it-migrate-monthly-license-1163 + title: Migrate Monthly License (it) + description: Standard workflow to migrate monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute migrate procedure on the designated license. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly license targets before running. +- name: it-migrate-urgent-license-1164 + title: Migrate Urgent License (it) + description: Standard workflow to migrate urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and migrate the urgent license. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent license targets before running. +- name: it-migrate-secure-license-1165 + title: Migrate Secure License (it) + description: Standard workflow to migrate secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to migrate the license. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure license targets before running. +- name: it-migrate-weekly-security-policy-1166 + title: Migrate Weekly Security Policy (it) + description: Standard workflow to migrate weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute migrate procedure on the designated security policy. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly security policy targets before running. +- name: it-migrate-monthly-security-policy-1167 + title: Migrate Monthly Security Policy (it) + description: Standard workflow to migrate monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and migrate the monthly security policy. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly security policy targets before running. +- name: it-migrate-urgent-security-policy-1168 + title: Migrate Urgent Security Policy (it) + description: Standard workflow to migrate urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to migrate the security policy. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent security policy targets before running. +- name: it-migrate-secure-security-policy-1169 + title: Migrate Secure Security Policy (it) + description: Standard workflow to migrate secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute migrate procedure on the designated security policy. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure security policy targets before running. +- name: it-migrate-weekly-audit-log-1170 + title: Migrate Weekly Audit Log (it) + description: Standard workflow to migrate weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and migrate the weekly audit log. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly audit log targets before running. +- name: it-migrate-monthly-audit-log-1171 + title: Migrate Monthly Audit Log (it) + description: Standard workflow to migrate monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to migrate the audit log. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly audit log targets before running. +- name: it-migrate-urgent-audit-log-1172 + title: Migrate Urgent Audit Log (it) + description: Standard workflow to migrate urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute migrate procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent audit log targets before running. +- name: it-migrate-secure-audit-log-1173 + title: Migrate Secure Audit Log (it) + description: Standard workflow to migrate secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and migrate the secure audit log. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure audit log targets before running. +- name: it-migrate-weekly-network-config-1174 + title: Migrate Weekly Network Config (it) + description: Standard workflow to migrate weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to migrate the network config. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly network config targets before running. +- name: it-migrate-monthly-network-config-1175 + title: Migrate Monthly Network Config (it) + description: Standard workflow to migrate monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute migrate procedure on the designated network config. + - Send a status update to the it team chat space. + caution: Action involves bulk data manipulation. Confirm monthly network config targets before running. +- name: it-migrate-urgent-network-config-1176 + title: Migrate Urgent Network Config (it) + description: Standard workflow to migrate urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and migrate the urgent network config. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent network config targets before running. +- name: it-migrate-secure-network-config-1177 + title: Migrate Secure Network Config (it) + description: Standard workflow to migrate secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to migrate the network config. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure network config targets before running. +- name: it-backup-weekly-user-account-1178 + title: Backup Weekly User Account (it) + description: Standard workflow to backup weekly user account within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly user account requests. + - Execute backup procedure on the designated user account. + - Notify stakeholders via email. +- name: it-backup-monthly-user-account-1179 + title: Backup Monthly User Account (it) + description: Standard workflow to backup monthly user account within the it department. + category: it + services: + - vault + steps: + - Search for monthly user account records. + - Review and backup the monthly user account. + - Send a status update to the it team chat space. +- name: it-backup-urgent-user-account-1180 + title: Backup Urgent User Account (it) + description: Standard workflow to backup urgent user account within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent user account data. + - Apply it policies to backup the user account. + - Log completion in the master tracking spreadsheet. +- name: it-backup-secure-user-account-1181 + title: Backup Secure User Account (it) + description: Standard workflow to backup secure user account within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure user account requests. + - Execute backup procedure on the designated user account. + - Archive results in a secure Drive folder. +- name: it-backup-weekly-device-1182 + title: Backup Weekly Device (it) + description: Standard workflow to backup weekly device within the it department. + category: it + services: + - drive + steps: + - Search for weekly device records. + - Review and backup the weekly device. + - Notify stakeholders via email. +- name: it-backup-monthly-device-1183 + title: Backup Monthly Device (it) + description: Standard workflow to backup monthly device within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly device data. + - Apply it policies to backup the device. + - Send a status update to the it team chat space. +- name: it-backup-urgent-device-1184 + title: Backup Urgent Device (it) + description: Standard workflow to backup urgent device within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent device requests. + - Execute backup procedure on the designated device. + - Log completion in the master tracking spreadsheet. +- name: it-backup-secure-device-1185 + title: Backup Secure Device (it) + description: Standard workflow to backup secure device within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure device records. + - Review and backup the secure device. + - Archive results in a secure Drive folder. +- name: it-backup-weekly-license-1186 + title: Backup Weekly License (it) + description: Standard workflow to backup weekly license within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly license data. + - Apply it policies to backup the license. + - Notify stakeholders via email. +- name: it-backup-monthly-license-1187 + title: Backup Monthly License (it) + description: Standard workflow to backup monthly license within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly license requests. + - Execute backup procedure on the designated license. + - Send a status update to the it team chat space. +- name: it-backup-urgent-license-1188 + title: Backup Urgent License (it) + description: Standard workflow to backup urgent license within the it department. + category: it + services: + - admin + steps: + - Search for urgent license records. + - Review and backup the urgent license. + - Log completion in the master tracking spreadsheet. +- name: it-backup-secure-license-1189 + title: Backup Secure License (it) + description: Standard workflow to backup secure license within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure license data. + - Apply it policies to backup the license. + - Archive results in a secure Drive folder. +- name: it-backup-weekly-security-policy-1190 + title: Backup Weekly Security Policy (it) + description: Standard workflow to backup weekly security policy within the it department. + category: it + services: + - drive + - vault + - admin + steps: + - Check system for pending weekly security policy requests. + - Execute backup procedure on the designated security policy. + - Notify stakeholders via email. +- name: it-backup-monthly-security-policy-1191 + title: Backup Monthly Security Policy (it) + description: Standard workflow to backup monthly security policy within the it department. + category: it + services: + - vault + steps: + - Search for monthly security policy records. + - Review and backup the monthly security policy. + - Send a status update to the it team chat space. +- name: it-backup-urgent-security-policy-1192 + title: Backup Urgent Security Policy (it) + description: Standard workflow to backup urgent security policy within the it department. + category: it + services: + - admin + - alertcenter + steps: + - Fetch latest urgent security policy data. + - Apply it policies to backup the security policy. + - Log completion in the master tracking spreadsheet. +- name: it-backup-secure-security-policy-1193 + title: Backup Secure Security Policy (it) + description: Standard workflow to backup secure security policy within the it department. + category: it + services: + - alertcenter + - drive + - vault + steps: + - Check system for pending secure security policy requests. + - Execute backup procedure on the designated security policy. + - Archive results in a secure Drive folder. +- name: it-backup-weekly-audit-log-1194 + title: Backup Weekly Audit Log (it) + description: Standard workflow to backup weekly audit log within the it department. + category: it + services: + - drive + steps: + - Search for weekly audit log records. + - Review and backup the weekly audit log. + - Notify stakeholders via email. +- name: it-backup-monthly-audit-log-1195 + title: Backup Monthly Audit Log (it) + description: Standard workflow to backup monthly audit log within the it department. + category: it + services: + - vault + - admin + steps: + - Fetch latest monthly audit log data. + - Apply it policies to backup the audit log. + - Send a status update to the it team chat space. +- name: it-backup-urgent-audit-log-1196 + title: Backup Urgent Audit Log (it) + description: Standard workflow to backup urgent audit log within the it department. + category: it + services: + - admin + - alertcenter + - drive + steps: + - Check system for pending urgent audit log requests. + - Execute backup procedure on the designated audit log. + - Log completion in the master tracking spreadsheet. +- name: it-backup-secure-audit-log-1197 + title: Backup Secure Audit Log (it) + description: Standard workflow to backup secure audit log within the it department. + category: it + services: + - alertcenter + steps: + - Search for secure audit log records. + - Review and backup the secure audit log. + - Archive results in a secure Drive folder. +- name: it-backup-weekly-network-config-1198 + title: Backup Weekly Network Config (it) + description: Standard workflow to backup weekly network config within the it department. + category: it + services: + - drive + - vault + steps: + - Fetch latest weekly network config data. + - Apply it policies to backup the network config. + - Notify stakeholders via email. +- name: it-backup-monthly-network-config-1199 + title: Backup Monthly Network Config (it) + description: Standard workflow to backup monthly network config within the it department. + category: it + services: + - vault + - admin + - alertcenter + steps: + - Check system for pending monthly network config requests. + - Execute backup procedure on the designated network config. + - Send a status update to the it team chat space. +- name: it-backup-urgent-network-config-1200 + title: Backup Urgent Network Config (it) + description: Standard workflow to backup urgent network config within the it department. + category: it + services: + - admin + steps: + - Search for urgent network config records. + - Review and backup the urgent network config. + - Log completion in the master tracking spreadsheet. +- name: it-backup-secure-network-config-1201 + title: Backup Secure Network Config (it) + description: Standard workflow to backup secure network config within the it department. + category: it + services: + - alertcenter + - drive + steps: + - Fetch latest secure network config data. + - Apply it policies to backup the network config. + - Archive results in a secure Drive folder. +- name: engineering-audit-weekly-repository-1202 + title: Audit Weekly Repository (engineering) + description: Standard workflow to audit weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute audit procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-audit-monthly-repository-1203 + title: Audit Monthly Repository (engineering) + description: Standard workflow to audit monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and audit the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-audit-urgent-repository-1204 + title: Audit Urgent Repository (engineering) + description: Standard workflow to audit urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to audit the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-audit-secure-repository-1205 + title: Audit Secure Repository (engineering) + description: Standard workflow to audit secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute audit procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-audit-weekly-deployment-1206 + title: Audit Weekly Deployment (engineering) + description: Standard workflow to audit weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and audit the weekly deployment. + - Notify stakeholders via email. +- name: engineering-audit-monthly-deployment-1207 + title: Audit Monthly Deployment (engineering) + description: Standard workflow to audit monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to audit the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-audit-urgent-deployment-1208 + title: Audit Urgent Deployment (engineering) + description: Standard workflow to audit urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute audit procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-audit-secure-deployment-1209 + title: Audit Secure Deployment (engineering) + description: Standard workflow to audit secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and audit the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-audit-weekly-incident-1210 + title: Audit Weekly Incident (engineering) + description: Standard workflow to audit weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to audit the incident. + - Notify stakeholders via email. +- name: engineering-audit-monthly-incident-1211 + title: Audit Monthly Incident (engineering) + description: Standard workflow to audit monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute audit procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-audit-urgent-incident-1212 + title: Audit Urgent Incident (engineering) + description: Standard workflow to audit urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and audit the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-audit-secure-incident-1213 + title: Audit Secure Incident (engineering) + description: Standard workflow to audit secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to audit the incident. + - Archive results in a secure Drive folder. +- name: engineering-audit-weekly-design-doc-1214 + title: Audit Weekly Design Doc (engineering) + description: Standard workflow to audit weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute audit procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-audit-monthly-design-doc-1215 + title: Audit Monthly Design Doc (engineering) + description: Standard workflow to audit monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and audit the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-audit-urgent-design-doc-1216 + title: Audit Urgent Design Doc (engineering) + description: Standard workflow to audit urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to audit the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-audit-secure-design-doc-1217 + title: Audit Secure Design Doc (engineering) + description: Standard workflow to audit secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute audit procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-audit-weekly-sprint-plan-1218 + title: Audit Weekly Sprint Plan (engineering) + description: Standard workflow to audit weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and audit the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-audit-monthly-sprint-plan-1219 + title: Audit Monthly Sprint Plan (engineering) + description: Standard workflow to audit monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to audit the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-audit-urgent-sprint-plan-1220 + title: Audit Urgent Sprint Plan (engineering) + description: Standard workflow to audit urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute audit procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-audit-secure-sprint-plan-1221 + title: Audit Secure Sprint Plan (engineering) + description: Standard workflow to audit secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and audit the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-audit-weekly-post-mortem-1222 + title: Audit Weekly Post-mortem (engineering) + description: Standard workflow to audit weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to audit the post-mortem. + - Notify stakeholders via email. +- name: engineering-audit-monthly-post-mortem-1223 + title: Audit Monthly Post-mortem (engineering) + description: Standard workflow to audit monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute audit procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-audit-urgent-post-mortem-1224 + title: Audit Urgent Post-mortem (engineering) + description: Standard workflow to audit urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and audit the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-audit-secure-post-mortem-1225 + title: Audit Secure Post-mortem (engineering) + description: Standard workflow to audit secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to audit the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-onboard-weekly-repository-1226 + title: Onboard Weekly Repository (engineering) + description: Standard workflow to onboard weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute onboard procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-onboard-monthly-repository-1227 + title: Onboard Monthly Repository (engineering) + description: Standard workflow to onboard monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and onboard the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-onboard-urgent-repository-1228 + title: Onboard Urgent Repository (engineering) + description: Standard workflow to onboard urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to onboard the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-onboard-secure-repository-1229 + title: Onboard Secure Repository (engineering) + description: Standard workflow to onboard secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute onboard procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-onboard-weekly-deployment-1230 + title: Onboard Weekly Deployment (engineering) + description: Standard workflow to onboard weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and onboard the weekly deployment. + - Notify stakeholders via email. +- name: engineering-onboard-monthly-deployment-1231 + title: Onboard Monthly Deployment (engineering) + description: Standard workflow to onboard monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to onboard the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-onboard-urgent-deployment-1232 + title: Onboard Urgent Deployment (engineering) + description: Standard workflow to onboard urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute onboard procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-onboard-secure-deployment-1233 + title: Onboard Secure Deployment (engineering) + description: Standard workflow to onboard secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and onboard the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-onboard-weekly-incident-1234 + title: Onboard Weekly Incident (engineering) + description: Standard workflow to onboard weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to onboard the incident. + - Notify stakeholders via email. +- name: engineering-onboard-monthly-incident-1235 + title: Onboard Monthly Incident (engineering) + description: Standard workflow to onboard monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute onboard procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-onboard-urgent-incident-1236 + title: Onboard Urgent Incident (engineering) + description: Standard workflow to onboard urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and onboard the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-onboard-secure-incident-1237 + title: Onboard Secure Incident (engineering) + description: Standard workflow to onboard secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to onboard the incident. + - Archive results in a secure Drive folder. +- name: engineering-onboard-weekly-design-doc-1238 + title: Onboard Weekly Design Doc (engineering) + description: Standard workflow to onboard weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute onboard procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-onboard-monthly-design-doc-1239 + title: Onboard Monthly Design Doc (engineering) + description: Standard workflow to onboard monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and onboard the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-onboard-urgent-design-doc-1240 + title: Onboard Urgent Design Doc (engineering) + description: Standard workflow to onboard urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to onboard the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-onboard-secure-design-doc-1241 + title: Onboard Secure Design Doc (engineering) + description: Standard workflow to onboard secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute onboard procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-onboard-weekly-sprint-plan-1242 + title: Onboard Weekly Sprint Plan (engineering) + description: Standard workflow to onboard weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and onboard the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-onboard-monthly-sprint-plan-1243 + title: Onboard Monthly Sprint Plan (engineering) + description: Standard workflow to onboard monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to onboard the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-onboard-urgent-sprint-plan-1244 + title: Onboard Urgent Sprint Plan (engineering) + description: Standard workflow to onboard urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute onboard procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-onboard-secure-sprint-plan-1245 + title: Onboard Secure Sprint Plan (engineering) + description: Standard workflow to onboard secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and onboard the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-onboard-weekly-post-mortem-1246 + title: Onboard Weekly Post-mortem (engineering) + description: Standard workflow to onboard weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to onboard the post-mortem. + - Notify stakeholders via email. +- name: engineering-onboard-monthly-post-mortem-1247 + title: Onboard Monthly Post-mortem (engineering) + description: Standard workflow to onboard monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute onboard procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-onboard-urgent-post-mortem-1248 + title: Onboard Urgent Post-mortem (engineering) + description: Standard workflow to onboard urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and onboard the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-onboard-secure-post-mortem-1249 + title: Onboard Secure Post-mortem (engineering) + description: Standard workflow to onboard secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to onboard the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-review-weekly-repository-1250 + title: Review Weekly Repository (engineering) + description: Standard workflow to review weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute review procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-review-monthly-repository-1251 + title: Review Monthly Repository (engineering) + description: Standard workflow to review monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and review the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-review-urgent-repository-1252 + title: Review Urgent Repository (engineering) + description: Standard workflow to review urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to review the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-review-secure-repository-1253 + title: Review Secure Repository (engineering) + description: Standard workflow to review secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute review procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-review-weekly-deployment-1254 + title: Review Weekly Deployment (engineering) + description: Standard workflow to review weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and review the weekly deployment. + - Notify stakeholders via email. +- name: engineering-review-monthly-deployment-1255 + title: Review Monthly Deployment (engineering) + description: Standard workflow to review monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to review the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-review-urgent-deployment-1256 + title: Review Urgent Deployment (engineering) + description: Standard workflow to review urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute review procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-review-secure-deployment-1257 + title: Review Secure Deployment (engineering) + description: Standard workflow to review secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and review the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-review-weekly-incident-1258 + title: Review Weekly Incident (engineering) + description: Standard workflow to review weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to review the incident. + - Notify stakeholders via email. +- name: engineering-review-monthly-incident-1259 + title: Review Monthly Incident (engineering) + description: Standard workflow to review monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute review procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-review-urgent-incident-1260 + title: Review Urgent Incident (engineering) + description: Standard workflow to review urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and review the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-review-secure-incident-1261 + title: Review Secure Incident (engineering) + description: Standard workflow to review secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to review the incident. + - Archive results in a secure Drive folder. +- name: engineering-review-weekly-design-doc-1262 + title: Review Weekly Design Doc (engineering) + description: Standard workflow to review weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute review procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-review-monthly-design-doc-1263 + title: Review Monthly Design Doc (engineering) + description: Standard workflow to review monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and review the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-review-urgent-design-doc-1264 + title: Review Urgent Design Doc (engineering) + description: Standard workflow to review urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to review the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-review-secure-design-doc-1265 + title: Review Secure Design Doc (engineering) + description: Standard workflow to review secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute review procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-review-weekly-sprint-plan-1266 + title: Review Weekly Sprint Plan (engineering) + description: Standard workflow to review weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and review the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-review-monthly-sprint-plan-1267 + title: Review Monthly Sprint Plan (engineering) + description: Standard workflow to review monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to review the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-review-urgent-sprint-plan-1268 + title: Review Urgent Sprint Plan (engineering) + description: Standard workflow to review urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute review procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-review-secure-sprint-plan-1269 + title: Review Secure Sprint Plan (engineering) + description: Standard workflow to review secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and review the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-review-weekly-post-mortem-1270 + title: Review Weekly Post-mortem (engineering) + description: Standard workflow to review weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to review the post-mortem. + - Notify stakeholders via email. +- name: engineering-review-monthly-post-mortem-1271 + title: Review Monthly Post-mortem (engineering) + description: Standard workflow to review monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute review procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-review-urgent-post-mortem-1272 + title: Review Urgent Post-mortem (engineering) + description: Standard workflow to review urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and review the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-review-secure-post-mortem-1273 + title: Review Secure Post-mortem (engineering) + description: Standard workflow to review secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to review the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-approve-weekly-repository-1274 + title: Approve Weekly Repository (engineering) + description: Standard workflow to approve weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute approve procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-approve-monthly-repository-1275 + title: Approve Monthly Repository (engineering) + description: Standard workflow to approve monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and approve the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-approve-urgent-repository-1276 + title: Approve Urgent Repository (engineering) + description: Standard workflow to approve urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to approve the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-approve-secure-repository-1277 + title: Approve Secure Repository (engineering) + description: Standard workflow to approve secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute approve procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-approve-weekly-deployment-1278 + title: Approve Weekly Deployment (engineering) + description: Standard workflow to approve weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and approve the weekly deployment. + - Notify stakeholders via email. +- name: engineering-approve-monthly-deployment-1279 + title: Approve Monthly Deployment (engineering) + description: Standard workflow to approve monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to approve the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-approve-urgent-deployment-1280 + title: Approve Urgent Deployment (engineering) + description: Standard workflow to approve urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute approve procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-approve-secure-deployment-1281 + title: Approve Secure Deployment (engineering) + description: Standard workflow to approve secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and approve the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-approve-weekly-incident-1282 + title: Approve Weekly Incident (engineering) + description: Standard workflow to approve weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to approve the incident. + - Notify stakeholders via email. +- name: engineering-approve-monthly-incident-1283 + title: Approve Monthly Incident (engineering) + description: Standard workflow to approve monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute approve procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-approve-urgent-incident-1284 + title: Approve Urgent Incident (engineering) + description: Standard workflow to approve urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and approve the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-approve-secure-incident-1285 + title: Approve Secure Incident (engineering) + description: Standard workflow to approve secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to approve the incident. + - Archive results in a secure Drive folder. +- name: engineering-approve-weekly-design-doc-1286 + title: Approve Weekly Design Doc (engineering) + description: Standard workflow to approve weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute approve procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-approve-monthly-design-doc-1287 + title: Approve Monthly Design Doc (engineering) + description: Standard workflow to approve monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and approve the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-approve-urgent-design-doc-1288 + title: Approve Urgent Design Doc (engineering) + description: Standard workflow to approve urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to approve the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-approve-secure-design-doc-1289 + title: Approve Secure Design Doc (engineering) + description: Standard workflow to approve secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute approve procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-approve-weekly-sprint-plan-1290 + title: Approve Weekly Sprint Plan (engineering) + description: Standard workflow to approve weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and approve the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-approve-monthly-sprint-plan-1291 + title: Approve Monthly Sprint Plan (engineering) + description: Standard workflow to approve monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to approve the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-approve-urgent-sprint-plan-1292 + title: Approve Urgent Sprint Plan (engineering) + description: Standard workflow to approve urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute approve procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-approve-secure-sprint-plan-1293 + title: Approve Secure Sprint Plan (engineering) + description: Standard workflow to approve secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and approve the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-approve-weekly-post-mortem-1294 + title: Approve Weekly Post-mortem (engineering) + description: Standard workflow to approve weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to approve the post-mortem. + - Notify stakeholders via email. +- name: engineering-approve-monthly-post-mortem-1295 + title: Approve Monthly Post-mortem (engineering) + description: Standard workflow to approve monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute approve procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-approve-urgent-post-mortem-1296 + title: Approve Urgent Post-mortem (engineering) + description: Standard workflow to approve urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and approve the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-approve-secure-post-mortem-1297 + title: Approve Secure Post-mortem (engineering) + description: Standard workflow to approve secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to approve the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-share-weekly-repository-1298 + title: Share Weekly Repository (engineering) + description: Standard workflow to share weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute share procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-share-monthly-repository-1299 + title: Share Monthly Repository (engineering) + description: Standard workflow to share monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and share the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-share-urgent-repository-1300 + title: Share Urgent Repository (engineering) + description: Standard workflow to share urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to share the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-share-secure-repository-1301 + title: Share Secure Repository (engineering) + description: Standard workflow to share secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute share procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-share-weekly-deployment-1302 + title: Share Weekly Deployment (engineering) + description: Standard workflow to share weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and share the weekly deployment. + - Notify stakeholders via email. +- name: engineering-share-monthly-deployment-1303 + title: Share Monthly Deployment (engineering) + description: Standard workflow to share monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to share the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-share-urgent-deployment-1304 + title: Share Urgent Deployment (engineering) + description: Standard workflow to share urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute share procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-share-secure-deployment-1305 + title: Share Secure Deployment (engineering) + description: Standard workflow to share secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and share the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-share-weekly-incident-1306 + title: Share Weekly Incident (engineering) + description: Standard workflow to share weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to share the incident. + - Notify stakeholders via email. +- name: engineering-share-monthly-incident-1307 + title: Share Monthly Incident (engineering) + description: Standard workflow to share monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute share procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-share-urgent-incident-1308 + title: Share Urgent Incident (engineering) + description: Standard workflow to share urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and share the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-share-secure-incident-1309 + title: Share Secure Incident (engineering) + description: Standard workflow to share secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to share the incident. + - Archive results in a secure Drive folder. +- name: engineering-share-weekly-design-doc-1310 + title: Share Weekly Design Doc (engineering) + description: Standard workflow to share weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute share procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-share-monthly-design-doc-1311 + title: Share Monthly Design Doc (engineering) + description: Standard workflow to share monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and share the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-share-urgent-design-doc-1312 + title: Share Urgent Design Doc (engineering) + description: Standard workflow to share urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to share the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-share-secure-design-doc-1313 + title: Share Secure Design Doc (engineering) + description: Standard workflow to share secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute share procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-share-weekly-sprint-plan-1314 + title: Share Weekly Sprint Plan (engineering) + description: Standard workflow to share weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and share the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-share-monthly-sprint-plan-1315 + title: Share Monthly Sprint Plan (engineering) + description: Standard workflow to share monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to share the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-share-urgent-sprint-plan-1316 + title: Share Urgent Sprint Plan (engineering) + description: Standard workflow to share urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute share procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-share-secure-sprint-plan-1317 + title: Share Secure Sprint Plan (engineering) + description: Standard workflow to share secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and share the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-share-weekly-post-mortem-1318 + title: Share Weekly Post-mortem (engineering) + description: Standard workflow to share weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to share the post-mortem. + - Notify stakeholders via email. +- name: engineering-share-monthly-post-mortem-1319 + title: Share Monthly Post-mortem (engineering) + description: Standard workflow to share monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute share procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-share-urgent-post-mortem-1320 + title: Share Urgent Post-mortem (engineering) + description: Standard workflow to share urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and share the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-share-secure-post-mortem-1321 + title: Share Secure Post-mortem (engineering) + description: Standard workflow to share secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to share the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-publish-weekly-repository-1322 + title: Publish Weekly Repository (engineering) + description: Standard workflow to publish weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute publish procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-publish-monthly-repository-1323 + title: Publish Monthly Repository (engineering) + description: Standard workflow to publish monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and publish the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-publish-urgent-repository-1324 + title: Publish Urgent Repository (engineering) + description: Standard workflow to publish urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to publish the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-publish-secure-repository-1325 + title: Publish Secure Repository (engineering) + description: Standard workflow to publish secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute publish procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-publish-weekly-deployment-1326 + title: Publish Weekly Deployment (engineering) + description: Standard workflow to publish weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and publish the weekly deployment. + - Notify stakeholders via email. +- name: engineering-publish-monthly-deployment-1327 + title: Publish Monthly Deployment (engineering) + description: Standard workflow to publish monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to publish the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-publish-urgent-deployment-1328 + title: Publish Urgent Deployment (engineering) + description: Standard workflow to publish urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute publish procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-publish-secure-deployment-1329 + title: Publish Secure Deployment (engineering) + description: Standard workflow to publish secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and publish the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-publish-weekly-incident-1330 + title: Publish Weekly Incident (engineering) + description: Standard workflow to publish weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to publish the incident. + - Notify stakeholders via email. +- name: engineering-publish-monthly-incident-1331 + title: Publish Monthly Incident (engineering) + description: Standard workflow to publish monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute publish procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-publish-urgent-incident-1332 + title: Publish Urgent Incident (engineering) + description: Standard workflow to publish urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and publish the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-publish-secure-incident-1333 + title: Publish Secure Incident (engineering) + description: Standard workflow to publish secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to publish the incident. + - Archive results in a secure Drive folder. +- name: engineering-publish-weekly-design-doc-1334 + title: Publish Weekly Design Doc (engineering) + description: Standard workflow to publish weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute publish procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-publish-monthly-design-doc-1335 + title: Publish Monthly Design Doc (engineering) + description: Standard workflow to publish monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and publish the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-publish-urgent-design-doc-1336 + title: Publish Urgent Design Doc (engineering) + description: Standard workflow to publish urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to publish the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-publish-secure-design-doc-1337 + title: Publish Secure Design Doc (engineering) + description: Standard workflow to publish secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute publish procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-publish-weekly-sprint-plan-1338 + title: Publish Weekly Sprint Plan (engineering) + description: Standard workflow to publish weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and publish the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-publish-monthly-sprint-plan-1339 + title: Publish Monthly Sprint Plan (engineering) + description: Standard workflow to publish monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to publish the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-publish-urgent-sprint-plan-1340 + title: Publish Urgent Sprint Plan (engineering) + description: Standard workflow to publish urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute publish procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-publish-secure-sprint-plan-1341 + title: Publish Secure Sprint Plan (engineering) + description: Standard workflow to publish secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and publish the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-publish-weekly-post-mortem-1342 + title: Publish Weekly Post-mortem (engineering) + description: Standard workflow to publish weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to publish the post-mortem. + - Notify stakeholders via email. +- name: engineering-publish-monthly-post-mortem-1343 + title: Publish Monthly Post-mortem (engineering) + description: Standard workflow to publish monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute publish procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-publish-urgent-post-mortem-1344 + title: Publish Urgent Post-mortem (engineering) + description: Standard workflow to publish urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and publish the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-publish-secure-post-mortem-1345 + title: Publish Secure Post-mortem (engineering) + description: Standard workflow to publish secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to publish the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-archive-weekly-repository-1346 + title: Archive Weekly Repository (engineering) + description: Standard workflow to archive weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute archive procedure on the designated repository. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly repository targets before running. +- name: engineering-archive-monthly-repository-1347 + title: Archive Monthly Repository (engineering) + description: Standard workflow to archive monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and archive the monthly repository. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly repository targets before running. +- name: engineering-archive-urgent-repository-1348 + title: Archive Urgent Repository (engineering) + description: Standard workflow to archive urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to archive the repository. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent repository targets before running. +- name: engineering-archive-secure-repository-1349 + title: Archive Secure Repository (engineering) + description: Standard workflow to archive secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute archive procedure on the designated repository. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure repository targets before running. +- name: engineering-archive-weekly-deployment-1350 + title: Archive Weekly Deployment (engineering) + description: Standard workflow to archive weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and archive the weekly deployment. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly deployment targets before running. +- name: engineering-archive-monthly-deployment-1351 + title: Archive Monthly Deployment (engineering) + description: Standard workflow to archive monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to archive the deployment. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly deployment targets before running. +- name: engineering-archive-urgent-deployment-1352 + title: Archive Urgent Deployment (engineering) + description: Standard workflow to archive urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute archive procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent deployment targets before running. +- name: engineering-archive-secure-deployment-1353 + title: Archive Secure Deployment (engineering) + description: Standard workflow to archive secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and archive the secure deployment. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure deployment targets before running. +- name: engineering-archive-weekly-incident-1354 + title: Archive Weekly Incident (engineering) + description: Standard workflow to archive weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to archive the incident. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly incident targets before running. +- name: engineering-archive-monthly-incident-1355 + title: Archive Monthly Incident (engineering) + description: Standard workflow to archive monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute archive procedure on the designated incident. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly incident targets before running. +- name: engineering-archive-urgent-incident-1356 + title: Archive Urgent Incident (engineering) + description: Standard workflow to archive urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and archive the urgent incident. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent incident targets before running. +- name: engineering-archive-secure-incident-1357 + title: Archive Secure Incident (engineering) + description: Standard workflow to archive secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to archive the incident. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure incident targets before running. +- name: engineering-archive-weekly-design-doc-1358 + title: Archive Weekly Design Doc (engineering) + description: Standard workflow to archive weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute archive procedure on the designated design doc. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly design doc targets before running. +- name: engineering-archive-monthly-design-doc-1359 + title: Archive Monthly Design Doc (engineering) + description: Standard workflow to archive monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and archive the monthly design doc. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly design doc targets before running. +- name: engineering-archive-urgent-design-doc-1360 + title: Archive Urgent Design Doc (engineering) + description: Standard workflow to archive urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to archive the design doc. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent design doc targets before running. +- name: engineering-archive-secure-design-doc-1361 + title: Archive Secure Design Doc (engineering) + description: Standard workflow to archive secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute archive procedure on the designated design doc. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure design doc targets before running. +- name: engineering-archive-weekly-sprint-plan-1362 + title: Archive Weekly Sprint Plan (engineering) + description: Standard workflow to archive weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and archive the weekly sprint plan. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly sprint plan targets before running. +- name: engineering-archive-monthly-sprint-plan-1363 + title: Archive Monthly Sprint Plan (engineering) + description: Standard workflow to archive monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to archive the sprint plan. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly sprint plan targets before running. +- name: engineering-archive-urgent-sprint-plan-1364 + title: Archive Urgent Sprint Plan (engineering) + description: Standard workflow to archive urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute archive procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent sprint plan targets before running. +- name: engineering-archive-secure-sprint-plan-1365 + title: Archive Secure Sprint Plan (engineering) + description: Standard workflow to archive secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and archive the secure sprint plan. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure sprint plan targets before running. +- name: engineering-archive-weekly-post-mortem-1366 + title: Archive Weekly Post-mortem (engineering) + description: Standard workflow to archive weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to archive the post-mortem. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly post-mortem targets before running. +- name: engineering-archive-monthly-post-mortem-1367 + title: Archive Monthly Post-mortem (engineering) + description: Standard workflow to archive monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute archive procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly post-mortem targets before running. +- name: engineering-archive-urgent-post-mortem-1368 + title: Archive Urgent Post-mortem (engineering) + description: Standard workflow to archive urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and archive the urgent post-mortem. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent post-mortem targets before running. +- name: engineering-archive-secure-post-mortem-1369 + title: Archive Secure Post-mortem (engineering) + description: Standard workflow to archive secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to archive the post-mortem. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure post-mortem targets before running. +- name: engineering-export-weekly-repository-1370 + title: Export Weekly Repository (engineering) + description: Standard workflow to export weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute export procedure on the designated repository. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly repository targets before running. +- name: engineering-export-monthly-repository-1371 + title: Export Monthly Repository (engineering) + description: Standard workflow to export monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and export the monthly repository. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly repository targets before running. +- name: engineering-export-urgent-repository-1372 + title: Export Urgent Repository (engineering) + description: Standard workflow to export urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to export the repository. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent repository targets before running. +- name: engineering-export-secure-repository-1373 + title: Export Secure Repository (engineering) + description: Standard workflow to export secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute export procedure on the designated repository. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure repository targets before running. +- name: engineering-export-weekly-deployment-1374 + title: Export Weekly Deployment (engineering) + description: Standard workflow to export weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and export the weekly deployment. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly deployment targets before running. +- name: engineering-export-monthly-deployment-1375 + title: Export Monthly Deployment (engineering) + description: Standard workflow to export monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to export the deployment. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly deployment targets before running. +- name: engineering-export-urgent-deployment-1376 + title: Export Urgent Deployment (engineering) + description: Standard workflow to export urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute export procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent deployment targets before running. +- name: engineering-export-secure-deployment-1377 + title: Export Secure Deployment (engineering) + description: Standard workflow to export secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and export the secure deployment. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure deployment targets before running. +- name: engineering-export-weekly-incident-1378 + title: Export Weekly Incident (engineering) + description: Standard workflow to export weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to export the incident. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly incident targets before running. +- name: engineering-export-monthly-incident-1379 + title: Export Monthly Incident (engineering) + description: Standard workflow to export monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute export procedure on the designated incident. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly incident targets before running. +- name: engineering-export-urgent-incident-1380 + title: Export Urgent Incident (engineering) + description: Standard workflow to export urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and export the urgent incident. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent incident targets before running. +- name: engineering-export-secure-incident-1381 + title: Export Secure Incident (engineering) + description: Standard workflow to export secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to export the incident. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure incident targets before running. +- name: engineering-export-weekly-design-doc-1382 + title: Export Weekly Design Doc (engineering) + description: Standard workflow to export weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute export procedure on the designated design doc. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly design doc targets before running. +- name: engineering-export-monthly-design-doc-1383 + title: Export Monthly Design Doc (engineering) + description: Standard workflow to export monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and export the monthly design doc. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly design doc targets before running. +- name: engineering-export-urgent-design-doc-1384 + title: Export Urgent Design Doc (engineering) + description: Standard workflow to export urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to export the design doc. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent design doc targets before running. +- name: engineering-export-secure-design-doc-1385 + title: Export Secure Design Doc (engineering) + description: Standard workflow to export secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute export procedure on the designated design doc. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure design doc targets before running. +- name: engineering-export-weekly-sprint-plan-1386 + title: Export Weekly Sprint Plan (engineering) + description: Standard workflow to export weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and export the weekly sprint plan. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly sprint plan targets before running. +- name: engineering-export-monthly-sprint-plan-1387 + title: Export Monthly Sprint Plan (engineering) + description: Standard workflow to export monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to export the sprint plan. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly sprint plan targets before running. +- name: engineering-export-urgent-sprint-plan-1388 + title: Export Urgent Sprint Plan (engineering) + description: Standard workflow to export urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute export procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent sprint plan targets before running. +- name: engineering-export-secure-sprint-plan-1389 + title: Export Secure Sprint Plan (engineering) + description: Standard workflow to export secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and export the secure sprint plan. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure sprint plan targets before running. +- name: engineering-export-weekly-post-mortem-1390 + title: Export Weekly Post-mortem (engineering) + description: Standard workflow to export weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to export the post-mortem. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly post-mortem targets before running. +- name: engineering-export-monthly-post-mortem-1391 + title: Export Monthly Post-mortem (engineering) + description: Standard workflow to export monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute export procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly post-mortem targets before running. +- name: engineering-export-urgent-post-mortem-1392 + title: Export Urgent Post-mortem (engineering) + description: Standard workflow to export urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and export the urgent post-mortem. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent post-mortem targets before running. +- name: engineering-export-secure-post-mortem-1393 + title: Export Secure Post-mortem (engineering) + description: Standard workflow to export secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to export the post-mortem. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure post-mortem targets before running. +- name: engineering-import-weekly-repository-1394 + title: Import Weekly Repository (engineering) + description: Standard workflow to import weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute import procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-import-monthly-repository-1395 + title: Import Monthly Repository (engineering) + description: Standard workflow to import monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and import the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-import-urgent-repository-1396 + title: Import Urgent Repository (engineering) + description: Standard workflow to import urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to import the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-import-secure-repository-1397 + title: Import Secure Repository (engineering) + description: Standard workflow to import secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute import procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-import-weekly-deployment-1398 + title: Import Weekly Deployment (engineering) + description: Standard workflow to import weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and import the weekly deployment. + - Notify stakeholders via email. +- name: engineering-import-monthly-deployment-1399 + title: Import Monthly Deployment (engineering) + description: Standard workflow to import monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to import the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-import-urgent-deployment-1400 + title: Import Urgent Deployment (engineering) + description: Standard workflow to import urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute import procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-import-secure-deployment-1401 + title: Import Secure Deployment (engineering) + description: Standard workflow to import secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and import the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-import-weekly-incident-1402 + title: Import Weekly Incident (engineering) + description: Standard workflow to import weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to import the incident. + - Notify stakeholders via email. +- name: engineering-import-monthly-incident-1403 + title: Import Monthly Incident (engineering) + description: Standard workflow to import monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute import procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-import-urgent-incident-1404 + title: Import Urgent Incident (engineering) + description: Standard workflow to import urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and import the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-import-secure-incident-1405 + title: Import Secure Incident (engineering) + description: Standard workflow to import secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to import the incident. + - Archive results in a secure Drive folder. +- name: engineering-import-weekly-design-doc-1406 + title: Import Weekly Design Doc (engineering) + description: Standard workflow to import weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute import procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-import-monthly-design-doc-1407 + title: Import Monthly Design Doc (engineering) + description: Standard workflow to import monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and import the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-import-urgent-design-doc-1408 + title: Import Urgent Design Doc (engineering) + description: Standard workflow to import urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to import the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-import-secure-design-doc-1409 + title: Import Secure Design Doc (engineering) + description: Standard workflow to import secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute import procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-import-weekly-sprint-plan-1410 + title: Import Weekly Sprint Plan (engineering) + description: Standard workflow to import weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and import the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-import-monthly-sprint-plan-1411 + title: Import Monthly Sprint Plan (engineering) + description: Standard workflow to import monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to import the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-import-urgent-sprint-plan-1412 + title: Import Urgent Sprint Plan (engineering) + description: Standard workflow to import urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute import procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-import-secure-sprint-plan-1413 + title: Import Secure Sprint Plan (engineering) + description: Standard workflow to import secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and import the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-import-weekly-post-mortem-1414 + title: Import Weekly Post-mortem (engineering) + description: Standard workflow to import weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to import the post-mortem. + - Notify stakeholders via email. +- name: engineering-import-monthly-post-mortem-1415 + title: Import Monthly Post-mortem (engineering) + description: Standard workflow to import monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute import procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-import-urgent-post-mortem-1416 + title: Import Urgent Post-mortem (engineering) + description: Standard workflow to import urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and import the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-import-secure-post-mortem-1417 + title: Import Secure Post-mortem (engineering) + description: Standard workflow to import secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to import the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-sync-weekly-repository-1418 + title: Sync Weekly Repository (engineering) + description: Standard workflow to sync weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute sync procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-sync-monthly-repository-1419 + title: Sync Monthly Repository (engineering) + description: Standard workflow to sync monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and sync the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-sync-urgent-repository-1420 + title: Sync Urgent Repository (engineering) + description: Standard workflow to sync urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to sync the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-sync-secure-repository-1421 + title: Sync Secure Repository (engineering) + description: Standard workflow to sync secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute sync procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-sync-weekly-deployment-1422 + title: Sync Weekly Deployment (engineering) + description: Standard workflow to sync weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and sync the weekly deployment. + - Notify stakeholders via email. +- name: engineering-sync-monthly-deployment-1423 + title: Sync Monthly Deployment (engineering) + description: Standard workflow to sync monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to sync the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-sync-urgent-deployment-1424 + title: Sync Urgent Deployment (engineering) + description: Standard workflow to sync urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute sync procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-sync-secure-deployment-1425 + title: Sync Secure Deployment (engineering) + description: Standard workflow to sync secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and sync the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-sync-weekly-incident-1426 + title: Sync Weekly Incident (engineering) + description: Standard workflow to sync weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to sync the incident. + - Notify stakeholders via email. +- name: engineering-sync-monthly-incident-1427 + title: Sync Monthly Incident (engineering) + description: Standard workflow to sync monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute sync procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-sync-urgent-incident-1428 + title: Sync Urgent Incident (engineering) + description: Standard workflow to sync urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and sync the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-sync-secure-incident-1429 + title: Sync Secure Incident (engineering) + description: Standard workflow to sync secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to sync the incident. + - Archive results in a secure Drive folder. +- name: engineering-sync-weekly-design-doc-1430 + title: Sync Weekly Design Doc (engineering) + description: Standard workflow to sync weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute sync procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-sync-monthly-design-doc-1431 + title: Sync Monthly Design Doc (engineering) + description: Standard workflow to sync monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and sync the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-sync-urgent-design-doc-1432 + title: Sync Urgent Design Doc (engineering) + description: Standard workflow to sync urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to sync the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-sync-secure-design-doc-1433 + title: Sync Secure Design Doc (engineering) + description: Standard workflow to sync secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute sync procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-sync-weekly-sprint-plan-1434 + title: Sync Weekly Sprint Plan (engineering) + description: Standard workflow to sync weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and sync the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-sync-monthly-sprint-plan-1435 + title: Sync Monthly Sprint Plan (engineering) + description: Standard workflow to sync monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to sync the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-sync-urgent-sprint-plan-1436 + title: Sync Urgent Sprint Plan (engineering) + description: Standard workflow to sync urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute sync procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-sync-secure-sprint-plan-1437 + title: Sync Secure Sprint Plan (engineering) + description: Standard workflow to sync secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and sync the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-sync-weekly-post-mortem-1438 + title: Sync Weekly Post-mortem (engineering) + description: Standard workflow to sync weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to sync the post-mortem. + - Notify stakeholders via email. +- name: engineering-sync-monthly-post-mortem-1439 + title: Sync Monthly Post-mortem (engineering) + description: Standard workflow to sync monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute sync procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-sync-urgent-post-mortem-1440 + title: Sync Urgent Post-mortem (engineering) + description: Standard workflow to sync urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and sync the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-sync-secure-post-mortem-1441 + title: Sync Secure Post-mortem (engineering) + description: Standard workflow to sync secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to sync the post-mortem. + - Archive results in a secure Drive folder. +- name: engineering-migrate-weekly-repository-1442 + title: Migrate Weekly Repository (engineering) + description: Standard workflow to migrate weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute migrate procedure on the designated repository. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly repository targets before running. +- name: engineering-migrate-monthly-repository-1443 + title: Migrate Monthly Repository (engineering) + description: Standard workflow to migrate monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and migrate the monthly repository. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly repository targets before running. +- name: engineering-migrate-urgent-repository-1444 + title: Migrate Urgent Repository (engineering) + description: Standard workflow to migrate urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to migrate the repository. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent repository targets before running. +- name: engineering-migrate-secure-repository-1445 + title: Migrate Secure Repository (engineering) + description: Standard workflow to migrate secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute migrate procedure on the designated repository. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure repository targets before running. +- name: engineering-migrate-weekly-deployment-1446 + title: Migrate Weekly Deployment (engineering) + description: Standard workflow to migrate weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and migrate the weekly deployment. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly deployment targets before running. +- name: engineering-migrate-monthly-deployment-1447 + title: Migrate Monthly Deployment (engineering) + description: Standard workflow to migrate monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to migrate the deployment. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly deployment targets before running. +- name: engineering-migrate-urgent-deployment-1448 + title: Migrate Urgent Deployment (engineering) + description: Standard workflow to migrate urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute migrate procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent deployment targets before running. +- name: engineering-migrate-secure-deployment-1449 + title: Migrate Secure Deployment (engineering) + description: Standard workflow to migrate secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and migrate the secure deployment. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure deployment targets before running. +- name: engineering-migrate-weekly-incident-1450 + title: Migrate Weekly Incident (engineering) + description: Standard workflow to migrate weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to migrate the incident. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly incident targets before running. +- name: engineering-migrate-monthly-incident-1451 + title: Migrate Monthly Incident (engineering) + description: Standard workflow to migrate monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute migrate procedure on the designated incident. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly incident targets before running. +- name: engineering-migrate-urgent-incident-1452 + title: Migrate Urgent Incident (engineering) + description: Standard workflow to migrate urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and migrate the urgent incident. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent incident targets before running. +- name: engineering-migrate-secure-incident-1453 + title: Migrate Secure Incident (engineering) + description: Standard workflow to migrate secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to migrate the incident. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure incident targets before running. +- name: engineering-migrate-weekly-design-doc-1454 + title: Migrate Weekly Design Doc (engineering) + description: Standard workflow to migrate weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute migrate procedure on the designated design doc. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly design doc targets before running. +- name: engineering-migrate-monthly-design-doc-1455 + title: Migrate Monthly Design Doc (engineering) + description: Standard workflow to migrate monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and migrate the monthly design doc. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly design doc targets before running. +- name: engineering-migrate-urgent-design-doc-1456 + title: Migrate Urgent Design Doc (engineering) + description: Standard workflow to migrate urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to migrate the design doc. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent design doc targets before running. +- name: engineering-migrate-secure-design-doc-1457 + title: Migrate Secure Design Doc (engineering) + description: Standard workflow to migrate secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute migrate procedure on the designated design doc. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure design doc targets before running. +- name: engineering-migrate-weekly-sprint-plan-1458 + title: Migrate Weekly Sprint Plan (engineering) + description: Standard workflow to migrate weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and migrate the weekly sprint plan. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly sprint plan targets before running. +- name: engineering-migrate-monthly-sprint-plan-1459 + title: Migrate Monthly Sprint Plan (engineering) + description: Standard workflow to migrate monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to migrate the sprint plan. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly sprint plan targets before running. +- name: engineering-migrate-urgent-sprint-plan-1460 + title: Migrate Urgent Sprint Plan (engineering) + description: Standard workflow to migrate urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute migrate procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent sprint plan targets before running. +- name: engineering-migrate-secure-sprint-plan-1461 + title: Migrate Secure Sprint Plan (engineering) + description: Standard workflow to migrate secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and migrate the secure sprint plan. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure sprint plan targets before running. +- name: engineering-migrate-weekly-post-mortem-1462 + title: Migrate Weekly Post-mortem (engineering) + description: Standard workflow to migrate weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to migrate the post-mortem. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly post-mortem targets before running. +- name: engineering-migrate-monthly-post-mortem-1463 + title: Migrate Monthly Post-mortem (engineering) + description: Standard workflow to migrate monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute migrate procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. + caution: Action involves bulk data manipulation. Confirm monthly post-mortem targets before running. +- name: engineering-migrate-urgent-post-mortem-1464 + title: Migrate Urgent Post-mortem (engineering) + description: Standard workflow to migrate urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and migrate the urgent post-mortem. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent post-mortem targets before running. +- name: engineering-migrate-secure-post-mortem-1465 + title: Migrate Secure Post-mortem (engineering) + description: Standard workflow to migrate secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to migrate the post-mortem. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure post-mortem targets before running. +- name: engineering-backup-weekly-repository-1466 + title: Backup Weekly Repository (engineering) + description: Standard workflow to backup weekly repository within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly repository requests. + - Execute backup procedure on the designated repository. + - Notify stakeholders via email. +- name: engineering-backup-monthly-repository-1467 + title: Backup Monthly Repository (engineering) + description: Standard workflow to backup monthly repository within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly repository records. + - Review and backup the monthly repository. + - Send a status update to the engineering team chat space. +- name: engineering-backup-urgent-repository-1468 + title: Backup Urgent Repository (engineering) + description: Standard workflow to backup urgent repository within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent repository data. + - Apply engineering policies to backup the repository. + - Log completion in the master tracking spreadsheet. +- name: engineering-backup-secure-repository-1469 + title: Backup Secure Repository (engineering) + description: Standard workflow to backup secure repository within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure repository requests. + - Execute backup procedure on the designated repository. + - Archive results in a secure Drive folder. +- name: engineering-backup-weekly-deployment-1470 + title: Backup Weekly Deployment (engineering) + description: Standard workflow to backup weekly deployment within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly deployment records. + - Review and backup the weekly deployment. + - Notify stakeholders via email. +- name: engineering-backup-monthly-deployment-1471 + title: Backup Monthly Deployment (engineering) + description: Standard workflow to backup monthly deployment within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly deployment data. + - Apply engineering policies to backup the deployment. + - Send a status update to the engineering team chat space. +- name: engineering-backup-urgent-deployment-1472 + title: Backup Urgent Deployment (engineering) + description: Standard workflow to backup urgent deployment within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent deployment requests. + - Execute backup procedure on the designated deployment. + - Log completion in the master tracking spreadsheet. +- name: engineering-backup-secure-deployment-1473 + title: Backup Secure Deployment (engineering) + description: Standard workflow to backup secure deployment within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure deployment records. + - Review and backup the secure deployment. + - Archive results in a secure Drive folder. +- name: engineering-backup-weekly-incident-1474 + title: Backup Weekly Incident (engineering) + description: Standard workflow to backup weekly incident within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly incident data. + - Apply engineering policies to backup the incident. + - Notify stakeholders via email. +- name: engineering-backup-monthly-incident-1475 + title: Backup Monthly Incident (engineering) + description: Standard workflow to backup monthly incident within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly incident requests. + - Execute backup procedure on the designated incident. + - Send a status update to the engineering team chat space. +- name: engineering-backup-urgent-incident-1476 + title: Backup Urgent Incident (engineering) + description: Standard workflow to backup urgent incident within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent incident records. + - Review and backup the urgent incident. + - Log completion in the master tracking spreadsheet. +- name: engineering-backup-secure-incident-1477 + title: Backup Secure Incident (engineering) + description: Standard workflow to backup secure incident within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure incident data. + - Apply engineering policies to backup the incident. + - Archive results in a secure Drive folder. +- name: engineering-backup-weekly-design-doc-1478 + title: Backup Weekly Design Doc (engineering) + description: Standard workflow to backup weekly design doc within the engineering department. + category: engineering + services: + - drive + - sheets + - chat + steps: + - Check system for pending weekly design doc requests. + - Execute backup procedure on the designated design doc. + - Notify stakeholders via email. +- name: engineering-backup-monthly-design-doc-1479 + title: Backup Monthly Design Doc (engineering) + description: Standard workflow to backup monthly design doc within the engineering department. + category: engineering + services: + - sheets + steps: + - Search for monthly design doc records. + - Review and backup the monthly design doc. + - Send a status update to the engineering team chat space. +- name: engineering-backup-urgent-design-doc-1480 + title: Backup Urgent Design Doc (engineering) + description: Standard workflow to backup urgent design doc within the engineering department. + category: engineering + services: + - chat + - docs + steps: + - Fetch latest urgent design doc data. + - Apply engineering policies to backup the design doc. + - Log completion in the master tracking spreadsheet. +- name: engineering-backup-secure-design-doc-1481 + title: Backup Secure Design Doc (engineering) + description: Standard workflow to backup secure design doc within the engineering department. + category: engineering + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure design doc requests. + - Execute backup procedure on the designated design doc. + - Archive results in a secure Drive folder. +- name: engineering-backup-weekly-sprint-plan-1482 + title: Backup Weekly Sprint Plan (engineering) + description: Standard workflow to backup weekly sprint plan within the engineering department. + category: engineering + services: + - drive + steps: + - Search for weekly sprint plan records. + - Review and backup the weekly sprint plan. + - Notify stakeholders via email. +- name: engineering-backup-monthly-sprint-plan-1483 + title: Backup Monthly Sprint Plan (engineering) + description: Standard workflow to backup monthly sprint plan within the engineering department. + category: engineering + services: + - sheets + - chat + steps: + - Fetch latest monthly sprint plan data. + - Apply engineering policies to backup the sprint plan. + - Send a status update to the engineering team chat space. +- name: engineering-backup-urgent-sprint-plan-1484 + title: Backup Urgent Sprint Plan (engineering) + description: Standard workflow to backup urgent sprint plan within the engineering department. + category: engineering + services: + - chat + - docs + - drive + steps: + - Check system for pending urgent sprint plan requests. + - Execute backup procedure on the designated sprint plan. + - Log completion in the master tracking spreadsheet. +- name: engineering-backup-secure-sprint-plan-1485 + title: Backup Secure Sprint Plan (engineering) + description: Standard workflow to backup secure sprint plan within the engineering department. + category: engineering + services: + - docs + steps: + - Search for secure sprint plan records. + - Review and backup the secure sprint plan. + - Archive results in a secure Drive folder. +- name: engineering-backup-weekly-post-mortem-1486 + title: Backup Weekly Post-mortem (engineering) + description: Standard workflow to backup weekly post-mortem within the engineering department. + category: engineering + services: + - drive + - sheets + steps: + - Fetch latest weekly post-mortem data. + - Apply engineering policies to backup the post-mortem. + - Notify stakeholders via email. +- name: engineering-backup-monthly-post-mortem-1487 + title: Backup Monthly Post-mortem (engineering) + description: Standard workflow to backup monthly post-mortem within the engineering department. + category: engineering + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly post-mortem requests. + - Execute backup procedure on the designated post-mortem. + - Send a status update to the engineering team chat space. +- name: engineering-backup-urgent-post-mortem-1488 + title: Backup Urgent Post-mortem (engineering) + description: Standard workflow to backup urgent post-mortem within the engineering department. + category: engineering + services: + - chat + steps: + - Search for urgent post-mortem records. + - Review and backup the urgent post-mortem. + - Log completion in the master tracking spreadsheet. +- name: engineering-backup-secure-post-mortem-1489 + title: Backup Secure Post-mortem (engineering) + description: Standard workflow to backup secure post-mortem within the engineering department. + category: engineering + services: + - docs + - drive + steps: + - Fetch latest secure post-mortem data. + - Apply engineering policies to backup the post-mortem. + - Archive results in a secure Drive folder. +- name: finance-audit-weekly-invoice-1490 + title: Audit Weekly Invoice (finance) + description: Standard workflow to audit weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute audit procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-audit-monthly-invoice-1491 + title: Audit Monthly Invoice (finance) + description: Standard workflow to audit monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and audit the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-audit-urgent-invoice-1492 + title: Audit Urgent Invoice (finance) + description: Standard workflow to audit urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to audit the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-audit-secure-invoice-1493 + title: Audit Secure Invoice (finance) + description: Standard workflow to audit secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute audit procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-audit-weekly-expense-report-1494 + title: Audit Weekly Expense Report (finance) + description: Standard workflow to audit weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and audit the weekly expense report. + - Notify stakeholders via email. +- name: finance-audit-monthly-expense-report-1495 + title: Audit Monthly Expense Report (finance) + description: Standard workflow to audit monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to audit the expense report. + - Send a status update to the finance team chat space. +- name: finance-audit-urgent-expense-report-1496 + title: Audit Urgent Expense Report (finance) + description: Standard workflow to audit urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute audit procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-audit-secure-expense-report-1497 + title: Audit Secure Expense Report (finance) + description: Standard workflow to audit secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and audit the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-audit-weekly-budget-1498 + title: Audit Weekly Budget (finance) + description: Standard workflow to audit weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to audit the budget. + - Notify stakeholders via email. +- name: finance-audit-monthly-budget-1499 + title: Audit Monthly Budget (finance) + description: Standard workflow to audit monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute audit procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-audit-urgent-budget-1500 + title: Audit Urgent Budget (finance) + description: Standard workflow to audit urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and audit the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-audit-secure-budget-1501 + title: Audit Secure Budget (finance) + description: Standard workflow to audit secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to audit the budget. + - Archive results in a secure Drive folder. +- name: finance-audit-weekly-forecast-1502 + title: Audit Weekly Forecast (finance) + description: Standard workflow to audit weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute audit procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-audit-monthly-forecast-1503 + title: Audit Monthly Forecast (finance) + description: Standard workflow to audit monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and audit the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-audit-urgent-forecast-1504 + title: Audit Urgent Forecast (finance) + description: Standard workflow to audit urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to audit the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-audit-secure-forecast-1505 + title: Audit Secure Forecast (finance) + description: Standard workflow to audit secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute audit procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-audit-weekly-tax-document-1506 + title: Audit Weekly Tax Document (finance) + description: Standard workflow to audit weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and audit the weekly tax document. + - Notify stakeholders via email. +- name: finance-audit-monthly-tax-document-1507 + title: Audit Monthly Tax Document (finance) + description: Standard workflow to audit monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to audit the tax document. + - Send a status update to the finance team chat space. +- name: finance-audit-urgent-tax-document-1508 + title: Audit Urgent Tax Document (finance) + description: Standard workflow to audit urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute audit procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-audit-secure-tax-document-1509 + title: Audit Secure Tax Document (finance) + description: Standard workflow to audit secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and audit the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-audit-weekly-vendor-payment-1510 + title: Audit Weekly Vendor Payment (finance) + description: Standard workflow to audit weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to audit the vendor payment. + - Notify stakeholders via email. +- name: finance-audit-monthly-vendor-payment-1511 + title: Audit Monthly Vendor Payment (finance) + description: Standard workflow to audit monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute audit procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-audit-urgent-vendor-payment-1512 + title: Audit Urgent Vendor Payment (finance) + description: Standard workflow to audit urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and audit the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-audit-secure-vendor-payment-1513 + title: Audit Secure Vendor Payment (finance) + description: Standard workflow to audit secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to audit the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-onboard-weekly-invoice-1514 + title: Onboard Weekly Invoice (finance) + description: Standard workflow to onboard weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute onboard procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-onboard-monthly-invoice-1515 + title: Onboard Monthly Invoice (finance) + description: Standard workflow to onboard monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and onboard the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-onboard-urgent-invoice-1516 + title: Onboard Urgent Invoice (finance) + description: Standard workflow to onboard urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to onboard the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-onboard-secure-invoice-1517 + title: Onboard Secure Invoice (finance) + description: Standard workflow to onboard secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute onboard procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-onboard-weekly-expense-report-1518 + title: Onboard Weekly Expense Report (finance) + description: Standard workflow to onboard weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and onboard the weekly expense report. + - Notify stakeholders via email. +- name: finance-onboard-monthly-expense-report-1519 + title: Onboard Monthly Expense Report (finance) + description: Standard workflow to onboard monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to onboard the expense report. + - Send a status update to the finance team chat space. +- name: finance-onboard-urgent-expense-report-1520 + title: Onboard Urgent Expense Report (finance) + description: Standard workflow to onboard urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute onboard procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-onboard-secure-expense-report-1521 + title: Onboard Secure Expense Report (finance) + description: Standard workflow to onboard secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and onboard the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-onboard-weekly-budget-1522 + title: Onboard Weekly Budget (finance) + description: Standard workflow to onboard weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to onboard the budget. + - Notify stakeholders via email. +- name: finance-onboard-monthly-budget-1523 + title: Onboard Monthly Budget (finance) + description: Standard workflow to onboard monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute onboard procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-onboard-urgent-budget-1524 + title: Onboard Urgent Budget (finance) + description: Standard workflow to onboard urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and onboard the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-onboard-secure-budget-1525 + title: Onboard Secure Budget (finance) + description: Standard workflow to onboard secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to onboard the budget. + - Archive results in a secure Drive folder. +- name: finance-onboard-weekly-forecast-1526 + title: Onboard Weekly Forecast (finance) + description: Standard workflow to onboard weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute onboard procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-onboard-monthly-forecast-1527 + title: Onboard Monthly Forecast (finance) + description: Standard workflow to onboard monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and onboard the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-onboard-urgent-forecast-1528 + title: Onboard Urgent Forecast (finance) + description: Standard workflow to onboard urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to onboard the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-onboard-secure-forecast-1529 + title: Onboard Secure Forecast (finance) + description: Standard workflow to onboard secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute onboard procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-onboard-weekly-tax-document-1530 + title: Onboard Weekly Tax Document (finance) + description: Standard workflow to onboard weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and onboard the weekly tax document. + - Notify stakeholders via email. +- name: finance-onboard-monthly-tax-document-1531 + title: Onboard Monthly Tax Document (finance) + description: Standard workflow to onboard monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to onboard the tax document. + - Send a status update to the finance team chat space. +- name: finance-onboard-urgent-tax-document-1532 + title: Onboard Urgent Tax Document (finance) + description: Standard workflow to onboard urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute onboard procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-onboard-secure-tax-document-1533 + title: Onboard Secure Tax Document (finance) + description: Standard workflow to onboard secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and onboard the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-onboard-weekly-vendor-payment-1534 + title: Onboard Weekly Vendor Payment (finance) + description: Standard workflow to onboard weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to onboard the vendor payment. + - Notify stakeholders via email. +- name: finance-onboard-monthly-vendor-payment-1535 + title: Onboard Monthly Vendor Payment (finance) + description: Standard workflow to onboard monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute onboard procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-onboard-urgent-vendor-payment-1536 + title: Onboard Urgent Vendor Payment (finance) + description: Standard workflow to onboard urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and onboard the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-onboard-secure-vendor-payment-1537 + title: Onboard Secure Vendor Payment (finance) + description: Standard workflow to onboard secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to onboard the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-review-weekly-invoice-1538 + title: Review Weekly Invoice (finance) + description: Standard workflow to review weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute review procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-review-monthly-invoice-1539 + title: Review Monthly Invoice (finance) + description: Standard workflow to review monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and review the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-review-urgent-invoice-1540 + title: Review Urgent Invoice (finance) + description: Standard workflow to review urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to review the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-review-secure-invoice-1541 + title: Review Secure Invoice (finance) + description: Standard workflow to review secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute review procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-review-weekly-expense-report-1542 + title: Review Weekly Expense Report (finance) + description: Standard workflow to review weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and review the weekly expense report. + - Notify stakeholders via email. +- name: finance-review-monthly-expense-report-1543 + title: Review Monthly Expense Report (finance) + description: Standard workflow to review monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to review the expense report. + - Send a status update to the finance team chat space. +- name: finance-review-urgent-expense-report-1544 + title: Review Urgent Expense Report (finance) + description: Standard workflow to review urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute review procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-review-secure-expense-report-1545 + title: Review Secure Expense Report (finance) + description: Standard workflow to review secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and review the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-review-weekly-budget-1546 + title: Review Weekly Budget (finance) + description: Standard workflow to review weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to review the budget. + - Notify stakeholders via email. +- name: finance-review-monthly-budget-1547 + title: Review Monthly Budget (finance) + description: Standard workflow to review monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute review procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-review-urgent-budget-1548 + title: Review Urgent Budget (finance) + description: Standard workflow to review urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and review the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-review-secure-budget-1549 + title: Review Secure Budget (finance) + description: Standard workflow to review secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to review the budget. + - Archive results in a secure Drive folder. +- name: finance-review-weekly-forecast-1550 + title: Review Weekly Forecast (finance) + description: Standard workflow to review weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute review procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-review-monthly-forecast-1551 + title: Review Monthly Forecast (finance) + description: Standard workflow to review monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and review the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-review-urgent-forecast-1552 + title: Review Urgent Forecast (finance) + description: Standard workflow to review urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to review the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-review-secure-forecast-1553 + title: Review Secure Forecast (finance) + description: Standard workflow to review secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute review procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-review-weekly-tax-document-1554 + title: Review Weekly Tax Document (finance) + description: Standard workflow to review weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and review the weekly tax document. + - Notify stakeholders via email. +- name: finance-review-monthly-tax-document-1555 + title: Review Monthly Tax Document (finance) + description: Standard workflow to review monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to review the tax document. + - Send a status update to the finance team chat space. +- name: finance-review-urgent-tax-document-1556 + title: Review Urgent Tax Document (finance) + description: Standard workflow to review urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute review procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-review-secure-tax-document-1557 + title: Review Secure Tax Document (finance) + description: Standard workflow to review secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and review the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-review-weekly-vendor-payment-1558 + title: Review Weekly Vendor Payment (finance) + description: Standard workflow to review weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to review the vendor payment. + - Notify stakeholders via email. +- name: finance-review-monthly-vendor-payment-1559 + title: Review Monthly Vendor Payment (finance) + description: Standard workflow to review monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute review procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-review-urgent-vendor-payment-1560 + title: Review Urgent Vendor Payment (finance) + description: Standard workflow to review urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and review the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-review-secure-vendor-payment-1561 + title: Review Secure Vendor Payment (finance) + description: Standard workflow to review secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to review the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-approve-weekly-invoice-1562 + title: Approve Weekly Invoice (finance) + description: Standard workflow to approve weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute approve procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-approve-monthly-invoice-1563 + title: Approve Monthly Invoice (finance) + description: Standard workflow to approve monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and approve the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-approve-urgent-invoice-1564 + title: Approve Urgent Invoice (finance) + description: Standard workflow to approve urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to approve the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-approve-secure-invoice-1565 + title: Approve Secure Invoice (finance) + description: Standard workflow to approve secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute approve procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-approve-weekly-expense-report-1566 + title: Approve Weekly Expense Report (finance) + description: Standard workflow to approve weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and approve the weekly expense report. + - Notify stakeholders via email. +- name: finance-approve-monthly-expense-report-1567 + title: Approve Monthly Expense Report (finance) + description: Standard workflow to approve monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to approve the expense report. + - Send a status update to the finance team chat space. +- name: finance-approve-urgent-expense-report-1568 + title: Approve Urgent Expense Report (finance) + description: Standard workflow to approve urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute approve procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-approve-secure-expense-report-1569 + title: Approve Secure Expense Report (finance) + description: Standard workflow to approve secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and approve the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-approve-weekly-budget-1570 + title: Approve Weekly Budget (finance) + description: Standard workflow to approve weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to approve the budget. + - Notify stakeholders via email. +- name: finance-approve-monthly-budget-1571 + title: Approve Monthly Budget (finance) + description: Standard workflow to approve monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute approve procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-approve-urgent-budget-1572 + title: Approve Urgent Budget (finance) + description: Standard workflow to approve urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and approve the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-approve-secure-budget-1573 + title: Approve Secure Budget (finance) + description: Standard workflow to approve secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to approve the budget. + - Archive results in a secure Drive folder. +- name: finance-approve-weekly-forecast-1574 + title: Approve Weekly Forecast (finance) + description: Standard workflow to approve weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute approve procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-approve-monthly-forecast-1575 + title: Approve Monthly Forecast (finance) + description: Standard workflow to approve monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and approve the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-approve-urgent-forecast-1576 + title: Approve Urgent Forecast (finance) + description: Standard workflow to approve urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to approve the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-approve-secure-forecast-1577 + title: Approve Secure Forecast (finance) + description: Standard workflow to approve secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute approve procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-approve-weekly-tax-document-1578 + title: Approve Weekly Tax Document (finance) + description: Standard workflow to approve weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and approve the weekly tax document. + - Notify stakeholders via email. +- name: finance-approve-monthly-tax-document-1579 + title: Approve Monthly Tax Document (finance) + description: Standard workflow to approve monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to approve the tax document. + - Send a status update to the finance team chat space. +- name: finance-approve-urgent-tax-document-1580 + title: Approve Urgent Tax Document (finance) + description: Standard workflow to approve urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute approve procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-approve-secure-tax-document-1581 + title: Approve Secure Tax Document (finance) + description: Standard workflow to approve secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and approve the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-approve-weekly-vendor-payment-1582 + title: Approve Weekly Vendor Payment (finance) + description: Standard workflow to approve weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to approve the vendor payment. + - Notify stakeholders via email. +- name: finance-approve-monthly-vendor-payment-1583 + title: Approve Monthly Vendor Payment (finance) + description: Standard workflow to approve monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute approve procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-approve-urgent-vendor-payment-1584 + title: Approve Urgent Vendor Payment (finance) + description: Standard workflow to approve urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and approve the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-approve-secure-vendor-payment-1585 + title: Approve Secure Vendor Payment (finance) + description: Standard workflow to approve secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to approve the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-share-weekly-invoice-1586 + title: Share Weekly Invoice (finance) + description: Standard workflow to share weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute share procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-share-monthly-invoice-1587 + title: Share Monthly Invoice (finance) + description: Standard workflow to share monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and share the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-share-urgent-invoice-1588 + title: Share Urgent Invoice (finance) + description: Standard workflow to share urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to share the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-share-secure-invoice-1589 + title: Share Secure Invoice (finance) + description: Standard workflow to share secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute share procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-share-weekly-expense-report-1590 + title: Share Weekly Expense Report (finance) + description: Standard workflow to share weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and share the weekly expense report. + - Notify stakeholders via email. +- name: finance-share-monthly-expense-report-1591 + title: Share Monthly Expense Report (finance) + description: Standard workflow to share monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to share the expense report. + - Send a status update to the finance team chat space. +- name: finance-share-urgent-expense-report-1592 + title: Share Urgent Expense Report (finance) + description: Standard workflow to share urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute share procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-share-secure-expense-report-1593 + title: Share Secure Expense Report (finance) + description: Standard workflow to share secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and share the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-share-weekly-budget-1594 + title: Share Weekly Budget (finance) + description: Standard workflow to share weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to share the budget. + - Notify stakeholders via email. +- name: finance-share-monthly-budget-1595 + title: Share Monthly Budget (finance) + description: Standard workflow to share monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute share procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-share-urgent-budget-1596 + title: Share Urgent Budget (finance) + description: Standard workflow to share urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and share the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-share-secure-budget-1597 + title: Share Secure Budget (finance) + description: Standard workflow to share secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to share the budget. + - Archive results in a secure Drive folder. +- name: finance-share-weekly-forecast-1598 + title: Share Weekly Forecast (finance) + description: Standard workflow to share weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute share procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-share-monthly-forecast-1599 + title: Share Monthly Forecast (finance) + description: Standard workflow to share monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and share the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-share-urgent-forecast-1600 + title: Share Urgent Forecast (finance) + description: Standard workflow to share urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to share the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-share-secure-forecast-1601 + title: Share Secure Forecast (finance) + description: Standard workflow to share secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute share procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-share-weekly-tax-document-1602 + title: Share Weekly Tax Document (finance) + description: Standard workflow to share weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and share the weekly tax document. + - Notify stakeholders via email. +- name: finance-share-monthly-tax-document-1603 + title: Share Monthly Tax Document (finance) + description: Standard workflow to share monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to share the tax document. + - Send a status update to the finance team chat space. +- name: finance-share-urgent-tax-document-1604 + title: Share Urgent Tax Document (finance) + description: Standard workflow to share urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute share procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-share-secure-tax-document-1605 + title: Share Secure Tax Document (finance) + description: Standard workflow to share secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and share the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-share-weekly-vendor-payment-1606 + title: Share Weekly Vendor Payment (finance) + description: Standard workflow to share weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to share the vendor payment. + - Notify stakeholders via email. +- name: finance-share-monthly-vendor-payment-1607 + title: Share Monthly Vendor Payment (finance) + description: Standard workflow to share monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute share procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-share-urgent-vendor-payment-1608 + title: Share Urgent Vendor Payment (finance) + description: Standard workflow to share urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and share the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-share-secure-vendor-payment-1609 + title: Share Secure Vendor Payment (finance) + description: Standard workflow to share secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to share the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-publish-weekly-invoice-1610 + title: Publish Weekly Invoice (finance) + description: Standard workflow to publish weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute publish procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-publish-monthly-invoice-1611 + title: Publish Monthly Invoice (finance) + description: Standard workflow to publish monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and publish the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-publish-urgent-invoice-1612 + title: Publish Urgent Invoice (finance) + description: Standard workflow to publish urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to publish the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-publish-secure-invoice-1613 + title: Publish Secure Invoice (finance) + description: Standard workflow to publish secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute publish procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-publish-weekly-expense-report-1614 + title: Publish Weekly Expense Report (finance) + description: Standard workflow to publish weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and publish the weekly expense report. + - Notify stakeholders via email. +- name: finance-publish-monthly-expense-report-1615 + title: Publish Monthly Expense Report (finance) + description: Standard workflow to publish monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to publish the expense report. + - Send a status update to the finance team chat space. +- name: finance-publish-urgent-expense-report-1616 + title: Publish Urgent Expense Report (finance) + description: Standard workflow to publish urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute publish procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-publish-secure-expense-report-1617 + title: Publish Secure Expense Report (finance) + description: Standard workflow to publish secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and publish the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-publish-weekly-budget-1618 + title: Publish Weekly Budget (finance) + description: Standard workflow to publish weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to publish the budget. + - Notify stakeholders via email. +- name: finance-publish-monthly-budget-1619 + title: Publish Monthly Budget (finance) + description: Standard workflow to publish monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute publish procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-publish-urgent-budget-1620 + title: Publish Urgent Budget (finance) + description: Standard workflow to publish urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and publish the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-publish-secure-budget-1621 + title: Publish Secure Budget (finance) + description: Standard workflow to publish secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to publish the budget. + - Archive results in a secure Drive folder. +- name: finance-publish-weekly-forecast-1622 + title: Publish Weekly Forecast (finance) + description: Standard workflow to publish weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute publish procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-publish-monthly-forecast-1623 + title: Publish Monthly Forecast (finance) + description: Standard workflow to publish monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and publish the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-publish-urgent-forecast-1624 + title: Publish Urgent Forecast (finance) + description: Standard workflow to publish urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to publish the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-publish-secure-forecast-1625 + title: Publish Secure Forecast (finance) + description: Standard workflow to publish secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute publish procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-publish-weekly-tax-document-1626 + title: Publish Weekly Tax Document (finance) + description: Standard workflow to publish weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and publish the weekly tax document. + - Notify stakeholders via email. +- name: finance-publish-monthly-tax-document-1627 + title: Publish Monthly Tax Document (finance) + description: Standard workflow to publish monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to publish the tax document. + - Send a status update to the finance team chat space. +- name: finance-publish-urgent-tax-document-1628 + title: Publish Urgent Tax Document (finance) + description: Standard workflow to publish urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute publish procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-publish-secure-tax-document-1629 + title: Publish Secure Tax Document (finance) + description: Standard workflow to publish secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and publish the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-publish-weekly-vendor-payment-1630 + title: Publish Weekly Vendor Payment (finance) + description: Standard workflow to publish weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to publish the vendor payment. + - Notify stakeholders via email. +- name: finance-publish-monthly-vendor-payment-1631 + title: Publish Monthly Vendor Payment (finance) + description: Standard workflow to publish monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute publish procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-publish-urgent-vendor-payment-1632 + title: Publish Urgent Vendor Payment (finance) + description: Standard workflow to publish urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and publish the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-publish-secure-vendor-payment-1633 + title: Publish Secure Vendor Payment (finance) + description: Standard workflow to publish secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to publish the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-archive-weekly-invoice-1634 + title: Archive Weekly Invoice (finance) + description: Standard workflow to archive weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute archive procedure on the designated invoice. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly invoice targets before running. +- name: finance-archive-monthly-invoice-1635 + title: Archive Monthly Invoice (finance) + description: Standard workflow to archive monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and archive the monthly invoice. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly invoice targets before running. +- name: finance-archive-urgent-invoice-1636 + title: Archive Urgent Invoice (finance) + description: Standard workflow to archive urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to archive the invoice. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent invoice targets before running. +- name: finance-archive-secure-invoice-1637 + title: Archive Secure Invoice (finance) + description: Standard workflow to archive secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute archive procedure on the designated invoice. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure invoice targets before running. +- name: finance-archive-weekly-expense-report-1638 + title: Archive Weekly Expense Report (finance) + description: Standard workflow to archive weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and archive the weekly expense report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly expense report targets before running. +- name: finance-archive-monthly-expense-report-1639 + title: Archive Monthly Expense Report (finance) + description: Standard workflow to archive monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to archive the expense report. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly expense report targets before running. +- name: finance-archive-urgent-expense-report-1640 + title: Archive Urgent Expense Report (finance) + description: Standard workflow to archive urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute archive procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent expense report targets before running. +- name: finance-archive-secure-expense-report-1641 + title: Archive Secure Expense Report (finance) + description: Standard workflow to archive secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and archive the secure expense report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure expense report targets before running. +- name: finance-archive-weekly-budget-1642 + title: Archive Weekly Budget (finance) + description: Standard workflow to archive weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to archive the budget. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly budget targets before running. +- name: finance-archive-monthly-budget-1643 + title: Archive Monthly Budget (finance) + description: Standard workflow to archive monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute archive procedure on the designated budget. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly budget targets before running. +- name: finance-archive-urgent-budget-1644 + title: Archive Urgent Budget (finance) + description: Standard workflow to archive urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and archive the urgent budget. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent budget targets before running. +- name: finance-archive-secure-budget-1645 + title: Archive Secure Budget (finance) + description: Standard workflow to archive secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to archive the budget. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure budget targets before running. +- name: finance-archive-weekly-forecast-1646 + title: Archive Weekly Forecast (finance) + description: Standard workflow to archive weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute archive procedure on the designated forecast. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly forecast targets before running. +- name: finance-archive-monthly-forecast-1647 + title: Archive Monthly Forecast (finance) + description: Standard workflow to archive monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and archive the monthly forecast. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly forecast targets before running. +- name: finance-archive-urgent-forecast-1648 + title: Archive Urgent Forecast (finance) + description: Standard workflow to archive urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to archive the forecast. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent forecast targets before running. +- name: finance-archive-secure-forecast-1649 + title: Archive Secure Forecast (finance) + description: Standard workflow to archive secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute archive procedure on the designated forecast. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure forecast targets before running. +- name: finance-archive-weekly-tax-document-1650 + title: Archive Weekly Tax Document (finance) + description: Standard workflow to archive weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and archive the weekly tax document. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly tax document targets before running. +- name: finance-archive-monthly-tax-document-1651 + title: Archive Monthly Tax Document (finance) + description: Standard workflow to archive monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to archive the tax document. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly tax document targets before running. +- name: finance-archive-urgent-tax-document-1652 + title: Archive Urgent Tax Document (finance) + description: Standard workflow to archive urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute archive procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent tax document targets before running. +- name: finance-archive-secure-tax-document-1653 + title: Archive Secure Tax Document (finance) + description: Standard workflow to archive secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and archive the secure tax document. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure tax document targets before running. +- name: finance-archive-weekly-vendor-payment-1654 + title: Archive Weekly Vendor Payment (finance) + description: Standard workflow to archive weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to archive the vendor payment. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly vendor payment targets before running. +- name: finance-archive-monthly-vendor-payment-1655 + title: Archive Monthly Vendor Payment (finance) + description: Standard workflow to archive monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute archive procedure on the designated vendor payment. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly vendor payment targets before running. +- name: finance-archive-urgent-vendor-payment-1656 + title: Archive Urgent Vendor Payment (finance) + description: Standard workflow to archive urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and archive the urgent vendor payment. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent vendor payment targets before running. +- name: finance-archive-secure-vendor-payment-1657 + title: Archive Secure Vendor Payment (finance) + description: Standard workflow to archive secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to archive the vendor payment. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure vendor payment targets before running. +- name: finance-export-weekly-invoice-1658 + title: Export Weekly Invoice (finance) + description: Standard workflow to export weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute export procedure on the designated invoice. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly invoice targets before running. +- name: finance-export-monthly-invoice-1659 + title: Export Monthly Invoice (finance) + description: Standard workflow to export monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and export the monthly invoice. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly invoice targets before running. +- name: finance-export-urgent-invoice-1660 + title: Export Urgent Invoice (finance) + description: Standard workflow to export urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to export the invoice. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent invoice targets before running. +- name: finance-export-secure-invoice-1661 + title: Export Secure Invoice (finance) + description: Standard workflow to export secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute export procedure on the designated invoice. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure invoice targets before running. +- name: finance-export-weekly-expense-report-1662 + title: Export Weekly Expense Report (finance) + description: Standard workflow to export weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and export the weekly expense report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly expense report targets before running. +- name: finance-export-monthly-expense-report-1663 + title: Export Monthly Expense Report (finance) + description: Standard workflow to export monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to export the expense report. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly expense report targets before running. +- name: finance-export-urgent-expense-report-1664 + title: Export Urgent Expense Report (finance) + description: Standard workflow to export urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute export procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent expense report targets before running. +- name: finance-export-secure-expense-report-1665 + title: Export Secure Expense Report (finance) + description: Standard workflow to export secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and export the secure expense report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure expense report targets before running. +- name: finance-export-weekly-budget-1666 + title: Export Weekly Budget (finance) + description: Standard workflow to export weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to export the budget. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly budget targets before running. +- name: finance-export-monthly-budget-1667 + title: Export Monthly Budget (finance) + description: Standard workflow to export monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute export procedure on the designated budget. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly budget targets before running. +- name: finance-export-urgent-budget-1668 + title: Export Urgent Budget (finance) + description: Standard workflow to export urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and export the urgent budget. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent budget targets before running. +- name: finance-export-secure-budget-1669 + title: Export Secure Budget (finance) + description: Standard workflow to export secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to export the budget. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure budget targets before running. +- name: finance-export-weekly-forecast-1670 + title: Export Weekly Forecast (finance) + description: Standard workflow to export weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute export procedure on the designated forecast. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly forecast targets before running. +- name: finance-export-monthly-forecast-1671 + title: Export Monthly Forecast (finance) + description: Standard workflow to export monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and export the monthly forecast. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly forecast targets before running. +- name: finance-export-urgent-forecast-1672 + title: Export Urgent Forecast (finance) + description: Standard workflow to export urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to export the forecast. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent forecast targets before running. +- name: finance-export-secure-forecast-1673 + title: Export Secure Forecast (finance) + description: Standard workflow to export secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute export procedure on the designated forecast. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure forecast targets before running. +- name: finance-export-weekly-tax-document-1674 + title: Export Weekly Tax Document (finance) + description: Standard workflow to export weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and export the weekly tax document. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly tax document targets before running. +- name: finance-export-monthly-tax-document-1675 + title: Export Monthly Tax Document (finance) + description: Standard workflow to export monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to export the tax document. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly tax document targets before running. +- name: finance-export-urgent-tax-document-1676 + title: Export Urgent Tax Document (finance) + description: Standard workflow to export urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute export procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent tax document targets before running. +- name: finance-export-secure-tax-document-1677 + title: Export Secure Tax Document (finance) + description: Standard workflow to export secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and export the secure tax document. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure tax document targets before running. +- name: finance-export-weekly-vendor-payment-1678 + title: Export Weekly Vendor Payment (finance) + description: Standard workflow to export weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to export the vendor payment. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly vendor payment targets before running. +- name: finance-export-monthly-vendor-payment-1679 + title: Export Monthly Vendor Payment (finance) + description: Standard workflow to export monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute export procedure on the designated vendor payment. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly vendor payment targets before running. +- name: finance-export-urgent-vendor-payment-1680 + title: Export Urgent Vendor Payment (finance) + description: Standard workflow to export urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and export the urgent vendor payment. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent vendor payment targets before running. +- name: finance-export-secure-vendor-payment-1681 + title: Export Secure Vendor Payment (finance) + description: Standard workflow to export secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to export the vendor payment. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure vendor payment targets before running. +- name: finance-import-weekly-invoice-1682 + title: Import Weekly Invoice (finance) + description: Standard workflow to import weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute import procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-import-monthly-invoice-1683 + title: Import Monthly Invoice (finance) + description: Standard workflow to import monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and import the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-import-urgent-invoice-1684 + title: Import Urgent Invoice (finance) + description: Standard workflow to import urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to import the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-import-secure-invoice-1685 + title: Import Secure Invoice (finance) + description: Standard workflow to import secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute import procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-import-weekly-expense-report-1686 + title: Import Weekly Expense Report (finance) + description: Standard workflow to import weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and import the weekly expense report. + - Notify stakeholders via email. +- name: finance-import-monthly-expense-report-1687 + title: Import Monthly Expense Report (finance) + description: Standard workflow to import monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to import the expense report. + - Send a status update to the finance team chat space. +- name: finance-import-urgent-expense-report-1688 + title: Import Urgent Expense Report (finance) + description: Standard workflow to import urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute import procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-import-secure-expense-report-1689 + title: Import Secure Expense Report (finance) + description: Standard workflow to import secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and import the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-import-weekly-budget-1690 + title: Import Weekly Budget (finance) + description: Standard workflow to import weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to import the budget. + - Notify stakeholders via email. +- name: finance-import-monthly-budget-1691 + title: Import Monthly Budget (finance) + description: Standard workflow to import monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute import procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-import-urgent-budget-1692 + title: Import Urgent Budget (finance) + description: Standard workflow to import urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and import the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-import-secure-budget-1693 + title: Import Secure Budget (finance) + description: Standard workflow to import secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to import the budget. + - Archive results in a secure Drive folder. +- name: finance-import-weekly-forecast-1694 + title: Import Weekly Forecast (finance) + description: Standard workflow to import weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute import procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-import-monthly-forecast-1695 + title: Import Monthly Forecast (finance) + description: Standard workflow to import monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and import the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-import-urgent-forecast-1696 + title: Import Urgent Forecast (finance) + description: Standard workflow to import urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to import the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-import-secure-forecast-1697 + title: Import Secure Forecast (finance) + description: Standard workflow to import secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute import procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-import-weekly-tax-document-1698 + title: Import Weekly Tax Document (finance) + description: Standard workflow to import weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and import the weekly tax document. + - Notify stakeholders via email. +- name: finance-import-monthly-tax-document-1699 + title: Import Monthly Tax Document (finance) + description: Standard workflow to import monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to import the tax document. + - Send a status update to the finance team chat space. +- name: finance-import-urgent-tax-document-1700 + title: Import Urgent Tax Document (finance) + description: Standard workflow to import urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute import procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-import-secure-tax-document-1701 + title: Import Secure Tax Document (finance) + description: Standard workflow to import secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and import the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-import-weekly-vendor-payment-1702 + title: Import Weekly Vendor Payment (finance) + description: Standard workflow to import weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to import the vendor payment. + - Notify stakeholders via email. +- name: finance-import-monthly-vendor-payment-1703 + title: Import Monthly Vendor Payment (finance) + description: Standard workflow to import monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute import procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-import-urgent-vendor-payment-1704 + title: Import Urgent Vendor Payment (finance) + description: Standard workflow to import urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and import the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-import-secure-vendor-payment-1705 + title: Import Secure Vendor Payment (finance) + description: Standard workflow to import secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to import the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-sync-weekly-invoice-1706 + title: Sync Weekly Invoice (finance) + description: Standard workflow to sync weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute sync procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-sync-monthly-invoice-1707 + title: Sync Monthly Invoice (finance) + description: Standard workflow to sync monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and sync the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-sync-urgent-invoice-1708 + title: Sync Urgent Invoice (finance) + description: Standard workflow to sync urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to sync the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-sync-secure-invoice-1709 + title: Sync Secure Invoice (finance) + description: Standard workflow to sync secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute sync procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-sync-weekly-expense-report-1710 + title: Sync Weekly Expense Report (finance) + description: Standard workflow to sync weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and sync the weekly expense report. + - Notify stakeholders via email. +- name: finance-sync-monthly-expense-report-1711 + title: Sync Monthly Expense Report (finance) + description: Standard workflow to sync monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to sync the expense report. + - Send a status update to the finance team chat space. +- name: finance-sync-urgent-expense-report-1712 + title: Sync Urgent Expense Report (finance) + description: Standard workflow to sync urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute sync procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-sync-secure-expense-report-1713 + title: Sync Secure Expense Report (finance) + description: Standard workflow to sync secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and sync the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-sync-weekly-budget-1714 + title: Sync Weekly Budget (finance) + description: Standard workflow to sync weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to sync the budget. + - Notify stakeholders via email. +- name: finance-sync-monthly-budget-1715 + title: Sync Monthly Budget (finance) + description: Standard workflow to sync monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute sync procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-sync-urgent-budget-1716 + title: Sync Urgent Budget (finance) + description: Standard workflow to sync urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and sync the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-sync-secure-budget-1717 + title: Sync Secure Budget (finance) + description: Standard workflow to sync secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to sync the budget. + - Archive results in a secure Drive folder. +- name: finance-sync-weekly-forecast-1718 + title: Sync Weekly Forecast (finance) + description: Standard workflow to sync weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute sync procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-sync-monthly-forecast-1719 + title: Sync Monthly Forecast (finance) + description: Standard workflow to sync monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and sync the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-sync-urgent-forecast-1720 + title: Sync Urgent Forecast (finance) + description: Standard workflow to sync urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to sync the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-sync-secure-forecast-1721 + title: Sync Secure Forecast (finance) + description: Standard workflow to sync secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute sync procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-sync-weekly-tax-document-1722 + title: Sync Weekly Tax Document (finance) + description: Standard workflow to sync weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and sync the weekly tax document. + - Notify stakeholders via email. +- name: finance-sync-monthly-tax-document-1723 + title: Sync Monthly Tax Document (finance) + description: Standard workflow to sync monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to sync the tax document. + - Send a status update to the finance team chat space. +- name: finance-sync-urgent-tax-document-1724 + title: Sync Urgent Tax Document (finance) + description: Standard workflow to sync urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute sync procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-sync-secure-tax-document-1725 + title: Sync Secure Tax Document (finance) + description: Standard workflow to sync secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and sync the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-sync-weekly-vendor-payment-1726 + title: Sync Weekly Vendor Payment (finance) + description: Standard workflow to sync weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to sync the vendor payment. + - Notify stakeholders via email. +- name: finance-sync-monthly-vendor-payment-1727 + title: Sync Monthly Vendor Payment (finance) + description: Standard workflow to sync monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute sync procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-sync-urgent-vendor-payment-1728 + title: Sync Urgent Vendor Payment (finance) + description: Standard workflow to sync urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and sync the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-sync-secure-vendor-payment-1729 + title: Sync Secure Vendor Payment (finance) + description: Standard workflow to sync secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to sync the vendor payment. + - Archive results in a secure Drive folder. +- name: finance-migrate-weekly-invoice-1730 + title: Migrate Weekly Invoice (finance) + description: Standard workflow to migrate weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute migrate procedure on the designated invoice. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly invoice targets before running. +- name: finance-migrate-monthly-invoice-1731 + title: Migrate Monthly Invoice (finance) + description: Standard workflow to migrate monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and migrate the monthly invoice. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly invoice targets before running. +- name: finance-migrate-urgent-invoice-1732 + title: Migrate Urgent Invoice (finance) + description: Standard workflow to migrate urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to migrate the invoice. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent invoice targets before running. +- name: finance-migrate-secure-invoice-1733 + title: Migrate Secure Invoice (finance) + description: Standard workflow to migrate secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute migrate procedure on the designated invoice. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure invoice targets before running. +- name: finance-migrate-weekly-expense-report-1734 + title: Migrate Weekly Expense Report (finance) + description: Standard workflow to migrate weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and migrate the weekly expense report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly expense report targets before running. +- name: finance-migrate-monthly-expense-report-1735 + title: Migrate Monthly Expense Report (finance) + description: Standard workflow to migrate monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to migrate the expense report. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly expense report targets before running. +- name: finance-migrate-urgent-expense-report-1736 + title: Migrate Urgent Expense Report (finance) + description: Standard workflow to migrate urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute migrate procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent expense report targets before running. +- name: finance-migrate-secure-expense-report-1737 + title: Migrate Secure Expense Report (finance) + description: Standard workflow to migrate secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and migrate the secure expense report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure expense report targets before running. +- name: finance-migrate-weekly-budget-1738 + title: Migrate Weekly Budget (finance) + description: Standard workflow to migrate weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to migrate the budget. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly budget targets before running. +- name: finance-migrate-monthly-budget-1739 + title: Migrate Monthly Budget (finance) + description: Standard workflow to migrate monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute migrate procedure on the designated budget. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly budget targets before running. +- name: finance-migrate-urgent-budget-1740 + title: Migrate Urgent Budget (finance) + description: Standard workflow to migrate urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and migrate the urgent budget. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent budget targets before running. +- name: finance-migrate-secure-budget-1741 + title: Migrate Secure Budget (finance) + description: Standard workflow to migrate secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to migrate the budget. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure budget targets before running. +- name: finance-migrate-weekly-forecast-1742 + title: Migrate Weekly Forecast (finance) + description: Standard workflow to migrate weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute migrate procedure on the designated forecast. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly forecast targets before running. +- name: finance-migrate-monthly-forecast-1743 + title: Migrate Monthly Forecast (finance) + description: Standard workflow to migrate monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and migrate the monthly forecast. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly forecast targets before running. +- name: finance-migrate-urgent-forecast-1744 + title: Migrate Urgent Forecast (finance) + description: Standard workflow to migrate urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to migrate the forecast. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent forecast targets before running. +- name: finance-migrate-secure-forecast-1745 + title: Migrate Secure Forecast (finance) + description: Standard workflow to migrate secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute migrate procedure on the designated forecast. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure forecast targets before running. +- name: finance-migrate-weekly-tax-document-1746 + title: Migrate Weekly Tax Document (finance) + description: Standard workflow to migrate weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and migrate the weekly tax document. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly tax document targets before running. +- name: finance-migrate-monthly-tax-document-1747 + title: Migrate Monthly Tax Document (finance) + description: Standard workflow to migrate monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to migrate the tax document. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly tax document targets before running. +- name: finance-migrate-urgent-tax-document-1748 + title: Migrate Urgent Tax Document (finance) + description: Standard workflow to migrate urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute migrate procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent tax document targets before running. +- name: finance-migrate-secure-tax-document-1749 + title: Migrate Secure Tax Document (finance) + description: Standard workflow to migrate secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and migrate the secure tax document. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure tax document targets before running. +- name: finance-migrate-weekly-vendor-payment-1750 + title: Migrate Weekly Vendor Payment (finance) + description: Standard workflow to migrate weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to migrate the vendor payment. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly vendor payment targets before running. +- name: finance-migrate-monthly-vendor-payment-1751 + title: Migrate Monthly Vendor Payment (finance) + description: Standard workflow to migrate monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute migrate procedure on the designated vendor payment. + - Send a status update to the finance team chat space. + caution: Action involves bulk data manipulation. Confirm monthly vendor payment targets before running. +- name: finance-migrate-urgent-vendor-payment-1752 + title: Migrate Urgent Vendor Payment (finance) + description: Standard workflow to migrate urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and migrate the urgent vendor payment. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent vendor payment targets before running. +- name: finance-migrate-secure-vendor-payment-1753 + title: Migrate Secure Vendor Payment (finance) + description: Standard workflow to migrate secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to migrate the vendor payment. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure vendor payment targets before running. +- name: finance-backup-weekly-invoice-1754 + title: Backup Weekly Invoice (finance) + description: Standard workflow to backup weekly invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly invoice requests. + - Execute backup procedure on the designated invoice. + - Notify stakeholders via email. +- name: finance-backup-monthly-invoice-1755 + title: Backup Monthly Invoice (finance) + description: Standard workflow to backup monthly invoice within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly invoice records. + - Review and backup the monthly invoice. + - Send a status update to the finance team chat space. +- name: finance-backup-urgent-invoice-1756 + title: Backup Urgent Invoice (finance) + description: Standard workflow to backup urgent invoice within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent invoice data. + - Apply finance policies to backup the invoice. + - Log completion in the master tracking spreadsheet. +- name: finance-backup-secure-invoice-1757 + title: Backup Secure Invoice (finance) + description: Standard workflow to backup secure invoice within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure invoice requests. + - Execute backup procedure on the designated invoice. + - Archive results in a secure Drive folder. +- name: finance-backup-weekly-expense-report-1758 + title: Backup Weekly Expense Report (finance) + description: Standard workflow to backup weekly expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly expense report records. + - Review and backup the weekly expense report. + - Notify stakeholders via email. +- name: finance-backup-monthly-expense-report-1759 + title: Backup Monthly Expense Report (finance) + description: Standard workflow to backup monthly expense report within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly expense report data. + - Apply finance policies to backup the expense report. + - Send a status update to the finance team chat space. +- name: finance-backup-urgent-expense-report-1760 + title: Backup Urgent Expense Report (finance) + description: Standard workflow to backup urgent expense report within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent expense report requests. + - Execute backup procedure on the designated expense report. + - Log completion in the master tracking spreadsheet. +- name: finance-backup-secure-expense-report-1761 + title: Backup Secure Expense Report (finance) + description: Standard workflow to backup secure expense report within the finance department. + category: finance + services: + - drive + steps: + - Search for secure expense report records. + - Review and backup the secure expense report. + - Archive results in a secure Drive folder. +- name: finance-backup-weekly-budget-1762 + title: Backup Weekly Budget (finance) + description: Standard workflow to backup weekly budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly budget data. + - Apply finance policies to backup the budget. + - Notify stakeholders via email. +- name: finance-backup-monthly-budget-1763 + title: Backup Monthly Budget (finance) + description: Standard workflow to backup monthly budget within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly budget requests. + - Execute backup procedure on the designated budget. + - Send a status update to the finance team chat space. +- name: finance-backup-urgent-budget-1764 + title: Backup Urgent Budget (finance) + description: Standard workflow to backup urgent budget within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent budget records. + - Review and backup the urgent budget. + - Log completion in the master tracking spreadsheet. +- name: finance-backup-secure-budget-1765 + title: Backup Secure Budget (finance) + description: Standard workflow to backup secure budget within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure budget data. + - Apply finance policies to backup the budget. + - Archive results in a secure Drive folder. +- name: finance-backup-weekly-forecast-1766 + title: Backup Weekly Forecast (finance) + description: Standard workflow to backup weekly forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending weekly forecast requests. + - Execute backup procedure on the designated forecast. + - Notify stakeholders via email. +- name: finance-backup-monthly-forecast-1767 + title: Backup Monthly Forecast (finance) + description: Standard workflow to backup monthly forecast within the finance department. + category: finance + services: + - drive + steps: + - Search for monthly forecast records. + - Review and backup the monthly forecast. + - Send a status update to the finance team chat space. +- name: finance-backup-urgent-forecast-1768 + title: Backup Urgent Forecast (finance) + description: Standard workflow to backup urgent forecast within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest urgent forecast data. + - Apply finance policies to backup the forecast. + - Log completion in the master tracking spreadsheet. +- name: finance-backup-secure-forecast-1769 + title: Backup Secure Forecast (finance) + description: Standard workflow to backup secure forecast within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending secure forecast requests. + - Execute backup procedure on the designated forecast. + - Archive results in a secure Drive folder. +- name: finance-backup-weekly-tax-document-1770 + title: Backup Weekly Tax Document (finance) + description: Standard workflow to backup weekly tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for weekly tax document records. + - Review and backup the weekly tax document. + - Notify stakeholders via email. +- name: finance-backup-monthly-tax-document-1771 + title: Backup Monthly Tax Document (finance) + description: Standard workflow to backup monthly tax document within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest monthly tax document data. + - Apply finance policies to backup the tax document. + - Send a status update to the finance team chat space. +- name: finance-backup-urgent-tax-document-1772 + title: Backup Urgent Tax Document (finance) + description: Standard workflow to backup urgent tax document within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending urgent tax document requests. + - Execute backup procedure on the designated tax document. + - Log completion in the master tracking spreadsheet. +- name: finance-backup-secure-tax-document-1773 + title: Backup Secure Tax Document (finance) + description: Standard workflow to backup secure tax document within the finance department. + category: finance + services: + - drive + steps: + - Search for secure tax document records. + - Review and backup the secure tax document. + - Archive results in a secure Drive folder. +- name: finance-backup-weekly-vendor-payment-1774 + title: Backup Weekly Vendor Payment (finance) + description: Standard workflow to backup weekly vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest weekly vendor payment data. + - Apply finance policies to backup the vendor payment. + - Notify stakeholders via email. +- name: finance-backup-monthly-vendor-payment-1775 + title: Backup Monthly Vendor Payment (finance) + description: Standard workflow to backup monthly vendor payment within the finance department. + category: finance + services: + - sheets + - drive + - gmail + steps: + - Check system for pending monthly vendor payment requests. + - Execute backup procedure on the designated vendor payment. + - Send a status update to the finance team chat space. +- name: finance-backup-urgent-vendor-payment-1776 + title: Backup Urgent Vendor Payment (finance) + description: Standard workflow to backup urgent vendor payment within the finance department. + category: finance + services: + - drive + steps: + - Search for urgent vendor payment records. + - Review and backup the urgent vendor payment. + - Log completion in the master tracking spreadsheet. +- name: finance-backup-secure-vendor-payment-1777 + title: Backup Secure Vendor Payment (finance) + description: Standard workflow to backup secure vendor payment within the finance department. + category: finance + services: + - gmail + - sheets + steps: + - Fetch latest secure vendor payment data. + - Apply finance policies to backup the vendor payment. + - Archive results in a secure Drive folder. +- name: legal-audit-weekly-nda-1778 + title: Audit Weekly Nda (legal) + description: Standard workflow to audit weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute audit procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-audit-monthly-nda-1779 + title: Audit Monthly Nda (legal) + description: Standard workflow to audit monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and audit the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-audit-urgent-nda-1780 + title: Audit Urgent Nda (legal) + description: Standard workflow to audit urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to audit the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-audit-secure-nda-1781 + title: Audit Secure Nda (legal) + description: Standard workflow to audit secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute audit procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-audit-weekly-contract-1782 + title: Audit Weekly Contract (legal) + description: Standard workflow to audit weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and audit the weekly contract. + - Notify stakeholders via email. +- name: legal-audit-monthly-contract-1783 + title: Audit Monthly Contract (legal) + description: Standard workflow to audit monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to audit the contract. + - Send a status update to the legal team chat space. +- name: legal-audit-urgent-contract-1784 + title: Audit Urgent Contract (legal) + description: Standard workflow to audit urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute audit procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-audit-secure-contract-1785 + title: Audit Secure Contract (legal) + description: Standard workflow to audit secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and audit the secure contract. + - Archive results in a secure Drive folder. +- name: legal-audit-weekly-compliance-report-1786 + title: Audit Weekly Compliance Report (legal) + description: Standard workflow to audit weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to audit the compliance report. + - Notify stakeholders via email. +- name: legal-audit-monthly-compliance-report-1787 + title: Audit Monthly Compliance Report (legal) + description: Standard workflow to audit monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute audit procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-audit-urgent-compliance-report-1788 + title: Audit Urgent Compliance Report (legal) + description: Standard workflow to audit urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and audit the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-audit-secure-compliance-report-1789 + title: Audit Secure Compliance Report (legal) + description: Standard workflow to audit secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to audit the compliance report. + - Archive results in a secure Drive folder. +- name: legal-audit-weekly-policy-1790 + title: Audit Weekly Policy (legal) + description: Standard workflow to audit weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute audit procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-audit-monthly-policy-1791 + title: Audit Monthly Policy (legal) + description: Standard workflow to audit monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and audit the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-audit-urgent-policy-1792 + title: Audit Urgent Policy (legal) + description: Standard workflow to audit urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to audit the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-audit-secure-policy-1793 + title: Audit Secure Policy (legal) + description: Standard workflow to audit secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute audit procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-audit-weekly-litigation-hold-1794 + title: Audit Weekly Litigation Hold (legal) + description: Standard workflow to audit weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and audit the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-audit-monthly-litigation-hold-1795 + title: Audit Monthly Litigation Hold (legal) + description: Standard workflow to audit monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to audit the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-audit-urgent-litigation-hold-1796 + title: Audit Urgent Litigation Hold (legal) + description: Standard workflow to audit urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute audit procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-audit-secure-litigation-hold-1797 + title: Audit Secure Litigation Hold (legal) + description: Standard workflow to audit secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and audit the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-audit-weekly-terms-of-service-1798 + title: Audit Weekly Terms Of Service (legal) + description: Standard workflow to audit weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to audit the terms of service. + - Notify stakeholders via email. +- name: legal-audit-monthly-terms-of-service-1799 + title: Audit Monthly Terms Of Service (legal) + description: Standard workflow to audit monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute audit procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-audit-urgent-terms-of-service-1800 + title: Audit Urgent Terms Of Service (legal) + description: Standard workflow to audit urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and audit the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-audit-secure-terms-of-service-1801 + title: Audit Secure Terms Of Service (legal) + description: Standard workflow to audit secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to audit the terms of service. + - Archive results in a secure Drive folder. +- name: legal-onboard-weekly-nda-1802 + title: Onboard Weekly Nda (legal) + description: Standard workflow to onboard weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute onboard procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-onboard-monthly-nda-1803 + title: Onboard Monthly Nda (legal) + description: Standard workflow to onboard monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and onboard the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-onboard-urgent-nda-1804 + title: Onboard Urgent Nda (legal) + description: Standard workflow to onboard urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to onboard the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-onboard-secure-nda-1805 + title: Onboard Secure Nda (legal) + description: Standard workflow to onboard secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute onboard procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-onboard-weekly-contract-1806 + title: Onboard Weekly Contract (legal) + description: Standard workflow to onboard weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and onboard the weekly contract. + - Notify stakeholders via email. +- name: legal-onboard-monthly-contract-1807 + title: Onboard Monthly Contract (legal) + description: Standard workflow to onboard monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to onboard the contract. + - Send a status update to the legal team chat space. +- name: legal-onboard-urgent-contract-1808 + title: Onboard Urgent Contract (legal) + description: Standard workflow to onboard urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute onboard procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-onboard-secure-contract-1809 + title: Onboard Secure Contract (legal) + description: Standard workflow to onboard secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and onboard the secure contract. + - Archive results in a secure Drive folder. +- name: legal-onboard-weekly-compliance-report-1810 + title: Onboard Weekly Compliance Report (legal) + description: Standard workflow to onboard weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to onboard the compliance report. + - Notify stakeholders via email. +- name: legal-onboard-monthly-compliance-report-1811 + title: Onboard Monthly Compliance Report (legal) + description: Standard workflow to onboard monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute onboard procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-onboard-urgent-compliance-report-1812 + title: Onboard Urgent Compliance Report (legal) + description: Standard workflow to onboard urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and onboard the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-onboard-secure-compliance-report-1813 + title: Onboard Secure Compliance Report (legal) + description: Standard workflow to onboard secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to onboard the compliance report. + - Archive results in a secure Drive folder. +- name: legal-onboard-weekly-policy-1814 + title: Onboard Weekly Policy (legal) + description: Standard workflow to onboard weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute onboard procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-onboard-monthly-policy-1815 + title: Onboard Monthly Policy (legal) + description: Standard workflow to onboard monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and onboard the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-onboard-urgent-policy-1816 + title: Onboard Urgent Policy (legal) + description: Standard workflow to onboard urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to onboard the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-onboard-secure-policy-1817 + title: Onboard Secure Policy (legal) + description: Standard workflow to onboard secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute onboard procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-onboard-weekly-litigation-hold-1818 + title: Onboard Weekly Litigation Hold (legal) + description: Standard workflow to onboard weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and onboard the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-onboard-monthly-litigation-hold-1819 + title: Onboard Monthly Litigation Hold (legal) + description: Standard workflow to onboard monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to onboard the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-onboard-urgent-litigation-hold-1820 + title: Onboard Urgent Litigation Hold (legal) + description: Standard workflow to onboard urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute onboard procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-onboard-secure-litigation-hold-1821 + title: Onboard Secure Litigation Hold (legal) + description: Standard workflow to onboard secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and onboard the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-onboard-weekly-terms-of-service-1822 + title: Onboard Weekly Terms Of Service (legal) + description: Standard workflow to onboard weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to onboard the terms of service. + - Notify stakeholders via email. +- name: legal-onboard-monthly-terms-of-service-1823 + title: Onboard Monthly Terms Of Service (legal) + description: Standard workflow to onboard monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute onboard procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-onboard-urgent-terms-of-service-1824 + title: Onboard Urgent Terms Of Service (legal) + description: Standard workflow to onboard urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and onboard the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-onboard-secure-terms-of-service-1825 + title: Onboard Secure Terms Of Service (legal) + description: Standard workflow to onboard secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to onboard the terms of service. + - Archive results in a secure Drive folder. +- name: legal-review-weekly-nda-1826 + title: Review Weekly Nda (legal) + description: Standard workflow to review weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute review procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-review-monthly-nda-1827 + title: Review Monthly Nda (legal) + description: Standard workflow to review monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and review the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-review-urgent-nda-1828 + title: Review Urgent Nda (legal) + description: Standard workflow to review urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to review the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-review-secure-nda-1829 + title: Review Secure Nda (legal) + description: Standard workflow to review secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute review procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-review-weekly-contract-1830 + title: Review Weekly Contract (legal) + description: Standard workflow to review weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and review the weekly contract. + - Notify stakeholders via email. +- name: legal-review-monthly-contract-1831 + title: Review Monthly Contract (legal) + description: Standard workflow to review monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to review the contract. + - Send a status update to the legal team chat space. +- name: legal-review-urgent-contract-1832 + title: Review Urgent Contract (legal) + description: Standard workflow to review urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute review procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-review-secure-contract-1833 + title: Review Secure Contract (legal) + description: Standard workflow to review secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and review the secure contract. + - Archive results in a secure Drive folder. +- name: legal-review-weekly-compliance-report-1834 + title: Review Weekly Compliance Report (legal) + description: Standard workflow to review weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to review the compliance report. + - Notify stakeholders via email. +- name: legal-review-monthly-compliance-report-1835 + title: Review Monthly Compliance Report (legal) + description: Standard workflow to review monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute review procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-review-urgent-compliance-report-1836 + title: Review Urgent Compliance Report (legal) + description: Standard workflow to review urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and review the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-review-secure-compliance-report-1837 + title: Review Secure Compliance Report (legal) + description: Standard workflow to review secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to review the compliance report. + - Archive results in a secure Drive folder. +- name: legal-review-weekly-policy-1838 + title: Review Weekly Policy (legal) + description: Standard workflow to review weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute review procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-review-monthly-policy-1839 + title: Review Monthly Policy (legal) + description: Standard workflow to review monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and review the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-review-urgent-policy-1840 + title: Review Urgent Policy (legal) + description: Standard workflow to review urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to review the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-review-secure-policy-1841 + title: Review Secure Policy (legal) + description: Standard workflow to review secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute review procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-review-weekly-litigation-hold-1842 + title: Review Weekly Litigation Hold (legal) + description: Standard workflow to review weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and review the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-review-monthly-litigation-hold-1843 + title: Review Monthly Litigation Hold (legal) + description: Standard workflow to review monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to review the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-review-urgent-litigation-hold-1844 + title: Review Urgent Litigation Hold (legal) + description: Standard workflow to review urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute review procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-review-secure-litigation-hold-1845 + title: Review Secure Litigation Hold (legal) + description: Standard workflow to review secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and review the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-review-weekly-terms-of-service-1846 + title: Review Weekly Terms Of Service (legal) + description: Standard workflow to review weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to review the terms of service. + - Notify stakeholders via email. +- name: legal-review-monthly-terms-of-service-1847 + title: Review Monthly Terms Of Service (legal) + description: Standard workflow to review monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute review procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-review-urgent-terms-of-service-1848 + title: Review Urgent Terms Of Service (legal) + description: Standard workflow to review urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and review the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-review-secure-terms-of-service-1849 + title: Review Secure Terms Of Service (legal) + description: Standard workflow to review secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to review the terms of service. + - Archive results in a secure Drive folder. +- name: legal-approve-weekly-nda-1850 + title: Approve Weekly Nda (legal) + description: Standard workflow to approve weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute approve procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-approve-monthly-nda-1851 + title: Approve Monthly Nda (legal) + description: Standard workflow to approve monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and approve the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-approve-urgent-nda-1852 + title: Approve Urgent Nda (legal) + description: Standard workflow to approve urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to approve the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-approve-secure-nda-1853 + title: Approve Secure Nda (legal) + description: Standard workflow to approve secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute approve procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-approve-weekly-contract-1854 + title: Approve Weekly Contract (legal) + description: Standard workflow to approve weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and approve the weekly contract. + - Notify stakeholders via email. +- name: legal-approve-monthly-contract-1855 + title: Approve Monthly Contract (legal) + description: Standard workflow to approve monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to approve the contract. + - Send a status update to the legal team chat space. +- name: legal-approve-urgent-contract-1856 + title: Approve Urgent Contract (legal) + description: Standard workflow to approve urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute approve procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-approve-secure-contract-1857 + title: Approve Secure Contract (legal) + description: Standard workflow to approve secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and approve the secure contract. + - Archive results in a secure Drive folder. +- name: legal-approve-weekly-compliance-report-1858 + title: Approve Weekly Compliance Report (legal) + description: Standard workflow to approve weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to approve the compliance report. + - Notify stakeholders via email. +- name: legal-approve-monthly-compliance-report-1859 + title: Approve Monthly Compliance Report (legal) + description: Standard workflow to approve monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute approve procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-approve-urgent-compliance-report-1860 + title: Approve Urgent Compliance Report (legal) + description: Standard workflow to approve urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and approve the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-approve-secure-compliance-report-1861 + title: Approve Secure Compliance Report (legal) + description: Standard workflow to approve secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to approve the compliance report. + - Archive results in a secure Drive folder. +- name: legal-approve-weekly-policy-1862 + title: Approve Weekly Policy (legal) + description: Standard workflow to approve weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute approve procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-approve-monthly-policy-1863 + title: Approve Monthly Policy (legal) + description: Standard workflow to approve monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and approve the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-approve-urgent-policy-1864 + title: Approve Urgent Policy (legal) + description: Standard workflow to approve urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to approve the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-approve-secure-policy-1865 + title: Approve Secure Policy (legal) + description: Standard workflow to approve secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute approve procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-approve-weekly-litigation-hold-1866 + title: Approve Weekly Litigation Hold (legal) + description: Standard workflow to approve weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and approve the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-approve-monthly-litigation-hold-1867 + title: Approve Monthly Litigation Hold (legal) + description: Standard workflow to approve monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to approve the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-approve-urgent-litigation-hold-1868 + title: Approve Urgent Litigation Hold (legal) + description: Standard workflow to approve urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute approve procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-approve-secure-litigation-hold-1869 + title: Approve Secure Litigation Hold (legal) + description: Standard workflow to approve secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and approve the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-approve-weekly-terms-of-service-1870 + title: Approve Weekly Terms Of Service (legal) + description: Standard workflow to approve weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to approve the terms of service. + - Notify stakeholders via email. +- name: legal-approve-monthly-terms-of-service-1871 + title: Approve Monthly Terms Of Service (legal) + description: Standard workflow to approve monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute approve procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-approve-urgent-terms-of-service-1872 + title: Approve Urgent Terms Of Service (legal) + description: Standard workflow to approve urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and approve the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-approve-secure-terms-of-service-1873 + title: Approve Secure Terms Of Service (legal) + description: Standard workflow to approve secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to approve the terms of service. + - Archive results in a secure Drive folder. +- name: legal-share-weekly-nda-1874 + title: Share Weekly Nda (legal) + description: Standard workflow to share weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute share procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-share-monthly-nda-1875 + title: Share Monthly Nda (legal) + description: Standard workflow to share monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and share the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-share-urgent-nda-1876 + title: Share Urgent Nda (legal) + description: Standard workflow to share urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to share the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-share-secure-nda-1877 + title: Share Secure Nda (legal) + description: Standard workflow to share secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute share procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-share-weekly-contract-1878 + title: Share Weekly Contract (legal) + description: Standard workflow to share weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and share the weekly contract. + - Notify stakeholders via email. +- name: legal-share-monthly-contract-1879 + title: Share Monthly Contract (legal) + description: Standard workflow to share monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to share the contract. + - Send a status update to the legal team chat space. +- name: legal-share-urgent-contract-1880 + title: Share Urgent Contract (legal) + description: Standard workflow to share urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute share procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-share-secure-contract-1881 + title: Share Secure Contract (legal) + description: Standard workflow to share secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and share the secure contract. + - Archive results in a secure Drive folder. +- name: legal-share-weekly-compliance-report-1882 + title: Share Weekly Compliance Report (legal) + description: Standard workflow to share weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to share the compliance report. + - Notify stakeholders via email. +- name: legal-share-monthly-compliance-report-1883 + title: Share Monthly Compliance Report (legal) + description: Standard workflow to share monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute share procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-share-urgent-compliance-report-1884 + title: Share Urgent Compliance Report (legal) + description: Standard workflow to share urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and share the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-share-secure-compliance-report-1885 + title: Share Secure Compliance Report (legal) + description: Standard workflow to share secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to share the compliance report. + - Archive results in a secure Drive folder. +- name: legal-share-weekly-policy-1886 + title: Share Weekly Policy (legal) + description: Standard workflow to share weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute share procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-share-monthly-policy-1887 + title: Share Monthly Policy (legal) + description: Standard workflow to share monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and share the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-share-urgent-policy-1888 + title: Share Urgent Policy (legal) + description: Standard workflow to share urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to share the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-share-secure-policy-1889 + title: Share Secure Policy (legal) + description: Standard workflow to share secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute share procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-share-weekly-litigation-hold-1890 + title: Share Weekly Litigation Hold (legal) + description: Standard workflow to share weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and share the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-share-monthly-litigation-hold-1891 + title: Share Monthly Litigation Hold (legal) + description: Standard workflow to share monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to share the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-share-urgent-litigation-hold-1892 + title: Share Urgent Litigation Hold (legal) + description: Standard workflow to share urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute share procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-share-secure-litigation-hold-1893 + title: Share Secure Litigation Hold (legal) + description: Standard workflow to share secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and share the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-share-weekly-terms-of-service-1894 + title: Share Weekly Terms Of Service (legal) + description: Standard workflow to share weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to share the terms of service. + - Notify stakeholders via email. +- name: legal-share-monthly-terms-of-service-1895 + title: Share Monthly Terms Of Service (legal) + description: Standard workflow to share monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute share procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-share-urgent-terms-of-service-1896 + title: Share Urgent Terms Of Service (legal) + description: Standard workflow to share urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and share the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-share-secure-terms-of-service-1897 + title: Share Secure Terms Of Service (legal) + description: Standard workflow to share secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to share the terms of service. + - Archive results in a secure Drive folder. +- name: legal-publish-weekly-nda-1898 + title: Publish Weekly Nda (legal) + description: Standard workflow to publish weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute publish procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-publish-monthly-nda-1899 + title: Publish Monthly Nda (legal) + description: Standard workflow to publish monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and publish the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-publish-urgent-nda-1900 + title: Publish Urgent Nda (legal) + description: Standard workflow to publish urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to publish the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-publish-secure-nda-1901 + title: Publish Secure Nda (legal) + description: Standard workflow to publish secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute publish procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-publish-weekly-contract-1902 + title: Publish Weekly Contract (legal) + description: Standard workflow to publish weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and publish the weekly contract. + - Notify stakeholders via email. +- name: legal-publish-monthly-contract-1903 + title: Publish Monthly Contract (legal) + description: Standard workflow to publish monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to publish the contract. + - Send a status update to the legal team chat space. +- name: legal-publish-urgent-contract-1904 + title: Publish Urgent Contract (legal) + description: Standard workflow to publish urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute publish procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-publish-secure-contract-1905 + title: Publish Secure Contract (legal) + description: Standard workflow to publish secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and publish the secure contract. + - Archive results in a secure Drive folder. +- name: legal-publish-weekly-compliance-report-1906 + title: Publish Weekly Compliance Report (legal) + description: Standard workflow to publish weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to publish the compliance report. + - Notify stakeholders via email. +- name: legal-publish-monthly-compliance-report-1907 + title: Publish Monthly Compliance Report (legal) + description: Standard workflow to publish monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute publish procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-publish-urgent-compliance-report-1908 + title: Publish Urgent Compliance Report (legal) + description: Standard workflow to publish urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and publish the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-publish-secure-compliance-report-1909 + title: Publish Secure Compliance Report (legal) + description: Standard workflow to publish secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to publish the compliance report. + - Archive results in a secure Drive folder. +- name: legal-publish-weekly-policy-1910 + title: Publish Weekly Policy (legal) + description: Standard workflow to publish weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute publish procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-publish-monthly-policy-1911 + title: Publish Monthly Policy (legal) + description: Standard workflow to publish monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and publish the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-publish-urgent-policy-1912 + title: Publish Urgent Policy (legal) + description: Standard workflow to publish urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to publish the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-publish-secure-policy-1913 + title: Publish Secure Policy (legal) + description: Standard workflow to publish secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute publish procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-publish-weekly-litigation-hold-1914 + title: Publish Weekly Litigation Hold (legal) + description: Standard workflow to publish weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and publish the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-publish-monthly-litigation-hold-1915 + title: Publish Monthly Litigation Hold (legal) + description: Standard workflow to publish monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to publish the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-publish-urgent-litigation-hold-1916 + title: Publish Urgent Litigation Hold (legal) + description: Standard workflow to publish urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute publish procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-publish-secure-litigation-hold-1917 + title: Publish Secure Litigation Hold (legal) + description: Standard workflow to publish secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and publish the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-publish-weekly-terms-of-service-1918 + title: Publish Weekly Terms Of Service (legal) + description: Standard workflow to publish weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to publish the terms of service. + - Notify stakeholders via email. +- name: legal-publish-monthly-terms-of-service-1919 + title: Publish Monthly Terms Of Service (legal) + description: Standard workflow to publish monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute publish procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-publish-urgent-terms-of-service-1920 + title: Publish Urgent Terms Of Service (legal) + description: Standard workflow to publish urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and publish the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-publish-secure-terms-of-service-1921 + title: Publish Secure Terms Of Service (legal) + description: Standard workflow to publish secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to publish the terms of service. + - Archive results in a secure Drive folder. +- name: legal-archive-weekly-nda-1922 + title: Archive Weekly Nda (legal) + description: Standard workflow to archive weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute archive procedure on the designated nda. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly nda targets before running. +- name: legal-archive-monthly-nda-1923 + title: Archive Monthly Nda (legal) + description: Standard workflow to archive monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and archive the monthly nda. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly nda targets before running. +- name: legal-archive-urgent-nda-1924 + title: Archive Urgent Nda (legal) + description: Standard workflow to archive urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to archive the nda. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent nda targets before running. +- name: legal-archive-secure-nda-1925 + title: Archive Secure Nda (legal) + description: Standard workflow to archive secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute archive procedure on the designated nda. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure nda targets before running. +- name: legal-archive-weekly-contract-1926 + title: Archive Weekly Contract (legal) + description: Standard workflow to archive weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and archive the weekly contract. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. +- name: legal-archive-monthly-contract-1927 + title: Archive Monthly Contract (legal) + description: Standard workflow to archive monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to archive the contract. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. +- name: legal-archive-urgent-contract-1928 + title: Archive Urgent Contract (legal) + description: Standard workflow to archive urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute archive procedure on the designated contract. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. +- name: legal-archive-secure-contract-1929 + title: Archive Secure Contract (legal) + description: Standard workflow to archive secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and archive the secure contract. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure contract targets before running. +- name: legal-archive-weekly-compliance-report-1930 + title: Archive Weekly Compliance Report (legal) + description: Standard workflow to archive weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to archive the compliance report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly compliance report targets before running. +- name: legal-archive-monthly-compliance-report-1931 + title: Archive Monthly Compliance Report (legal) + description: Standard workflow to archive monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute archive procedure on the designated compliance report. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly compliance report targets before running. +- name: legal-archive-urgent-compliance-report-1932 + title: Archive Urgent Compliance Report (legal) + description: Standard workflow to archive urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and archive the urgent compliance report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent compliance report targets before running. +- name: legal-archive-secure-compliance-report-1933 + title: Archive Secure Compliance Report (legal) + description: Standard workflow to archive secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to archive the compliance report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure compliance report targets before running. +- name: legal-archive-weekly-policy-1934 + title: Archive Weekly Policy (legal) + description: Standard workflow to archive weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute archive procedure on the designated policy. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly policy targets before running. +- name: legal-archive-monthly-policy-1935 + title: Archive Monthly Policy (legal) + description: Standard workflow to archive monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and archive the monthly policy. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly policy targets before running. +- name: legal-archive-urgent-policy-1936 + title: Archive Urgent Policy (legal) + description: Standard workflow to archive urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to archive the policy. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent policy targets before running. +- name: legal-archive-secure-policy-1937 + title: Archive Secure Policy (legal) + description: Standard workflow to archive secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute archive procedure on the designated policy. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure policy targets before running. +- name: legal-archive-weekly-litigation-hold-1938 + title: Archive Weekly Litigation Hold (legal) + description: Standard workflow to archive weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and archive the weekly litigation hold. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly litigation hold targets before running. +- name: legal-archive-monthly-litigation-hold-1939 + title: Archive Monthly Litigation Hold (legal) + description: Standard workflow to archive monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to archive the litigation hold. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly litigation hold targets before running. +- name: legal-archive-urgent-litigation-hold-1940 + title: Archive Urgent Litigation Hold (legal) + description: Standard workflow to archive urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute archive procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent litigation hold targets before running. +- name: legal-archive-secure-litigation-hold-1941 + title: Archive Secure Litigation Hold (legal) + description: Standard workflow to archive secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and archive the secure litigation hold. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure litigation hold targets before running. +- name: legal-archive-weekly-terms-of-service-1942 + title: Archive Weekly Terms Of Service (legal) + description: Standard workflow to archive weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to archive the terms of service. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly terms of service targets before running. +- name: legal-archive-monthly-terms-of-service-1943 + title: Archive Monthly Terms Of Service (legal) + description: Standard workflow to archive monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute archive procedure on the designated terms of service. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly terms of service targets before running. +- name: legal-archive-urgent-terms-of-service-1944 + title: Archive Urgent Terms Of Service (legal) + description: Standard workflow to archive urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and archive the urgent terms of service. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent terms of service targets before running. +- name: legal-archive-secure-terms-of-service-1945 + title: Archive Secure Terms Of Service (legal) + description: Standard workflow to archive secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to archive the terms of service. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure terms of service targets before running. +- name: legal-export-weekly-nda-1946 + title: Export Weekly Nda (legal) + description: Standard workflow to export weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute export procedure on the designated nda. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly nda targets before running. +- name: legal-export-monthly-nda-1947 + title: Export Monthly Nda (legal) + description: Standard workflow to export monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and export the monthly nda. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly nda targets before running. +- name: legal-export-urgent-nda-1948 + title: Export Urgent Nda (legal) + description: Standard workflow to export urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to export the nda. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent nda targets before running. +- name: legal-export-secure-nda-1949 + title: Export Secure Nda (legal) + description: Standard workflow to export secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute export procedure on the designated nda. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure nda targets before running. +- name: legal-export-weekly-contract-1950 + title: Export Weekly Contract (legal) + description: Standard workflow to export weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and export the weekly contract. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. +- name: legal-export-monthly-contract-1951 + title: Export Monthly Contract (legal) + description: Standard workflow to export monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to export the contract. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. +- name: legal-export-urgent-contract-1952 + title: Export Urgent Contract (legal) + description: Standard workflow to export urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute export procedure on the designated contract. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. +- name: legal-export-secure-contract-1953 + title: Export Secure Contract (legal) + description: Standard workflow to export secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and export the secure contract. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure contract targets before running. +- name: legal-export-weekly-compliance-report-1954 + title: Export Weekly Compliance Report (legal) + description: Standard workflow to export weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to export the compliance report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly compliance report targets before running. +- name: legal-export-monthly-compliance-report-1955 + title: Export Monthly Compliance Report (legal) + description: Standard workflow to export monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute export procedure on the designated compliance report. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly compliance report targets before running. +- name: legal-export-urgent-compliance-report-1956 + title: Export Urgent Compliance Report (legal) + description: Standard workflow to export urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and export the urgent compliance report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent compliance report targets before running. +- name: legal-export-secure-compliance-report-1957 + title: Export Secure Compliance Report (legal) + description: Standard workflow to export secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to export the compliance report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure compliance report targets before running. +- name: legal-export-weekly-policy-1958 + title: Export Weekly Policy (legal) + description: Standard workflow to export weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute export procedure on the designated policy. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly policy targets before running. +- name: legal-export-monthly-policy-1959 + title: Export Monthly Policy (legal) + description: Standard workflow to export monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and export the monthly policy. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly policy targets before running. +- name: legal-export-urgent-policy-1960 + title: Export Urgent Policy (legal) + description: Standard workflow to export urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to export the policy. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent policy targets before running. +- name: legal-export-secure-policy-1961 + title: Export Secure Policy (legal) + description: Standard workflow to export secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute export procedure on the designated policy. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure policy targets before running. +- name: legal-export-weekly-litigation-hold-1962 + title: Export Weekly Litigation Hold (legal) + description: Standard workflow to export weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and export the weekly litigation hold. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly litigation hold targets before running. +- name: legal-export-monthly-litigation-hold-1963 + title: Export Monthly Litigation Hold (legal) + description: Standard workflow to export monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to export the litigation hold. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly litigation hold targets before running. +- name: legal-export-urgent-litigation-hold-1964 + title: Export Urgent Litigation Hold (legal) + description: Standard workflow to export urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute export procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent litigation hold targets before running. +- name: legal-export-secure-litigation-hold-1965 + title: Export Secure Litigation Hold (legal) + description: Standard workflow to export secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and export the secure litigation hold. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure litigation hold targets before running. +- name: legal-export-weekly-terms-of-service-1966 + title: Export Weekly Terms Of Service (legal) + description: Standard workflow to export weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to export the terms of service. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly terms of service targets before running. +- name: legal-export-monthly-terms-of-service-1967 + title: Export Monthly Terms Of Service (legal) + description: Standard workflow to export monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute export procedure on the designated terms of service. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly terms of service targets before running. +- name: legal-export-urgent-terms-of-service-1968 + title: Export Urgent Terms Of Service (legal) + description: Standard workflow to export urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and export the urgent terms of service. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent terms of service targets before running. +- name: legal-export-secure-terms-of-service-1969 + title: Export Secure Terms Of Service (legal) + description: Standard workflow to export secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to export the terms of service. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure terms of service targets before running. +- name: legal-import-weekly-nda-1970 + title: Import Weekly Nda (legal) + description: Standard workflow to import weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute import procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-import-monthly-nda-1971 + title: Import Monthly Nda (legal) + description: Standard workflow to import monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and import the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-import-urgent-nda-1972 + title: Import Urgent Nda (legal) + description: Standard workflow to import urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to import the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-import-secure-nda-1973 + title: Import Secure Nda (legal) + description: Standard workflow to import secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute import procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-import-weekly-contract-1974 + title: Import Weekly Contract (legal) + description: Standard workflow to import weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and import the weekly contract. + - Notify stakeholders via email. +- name: legal-import-monthly-contract-1975 + title: Import Monthly Contract (legal) + description: Standard workflow to import monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to import the contract. + - Send a status update to the legal team chat space. +- name: legal-import-urgent-contract-1976 + title: Import Urgent Contract (legal) + description: Standard workflow to import urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute import procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-import-secure-contract-1977 + title: Import Secure Contract (legal) + description: Standard workflow to import secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and import the secure contract. + - Archive results in a secure Drive folder. +- name: legal-import-weekly-compliance-report-1978 + title: Import Weekly Compliance Report (legal) + description: Standard workflow to import weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to import the compliance report. + - Notify stakeholders via email. +- name: legal-import-monthly-compliance-report-1979 + title: Import Monthly Compliance Report (legal) + description: Standard workflow to import monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute import procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-import-urgent-compliance-report-1980 + title: Import Urgent Compliance Report (legal) + description: Standard workflow to import urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and import the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-import-secure-compliance-report-1981 + title: Import Secure Compliance Report (legal) + description: Standard workflow to import secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to import the compliance report. + - Archive results in a secure Drive folder. +- name: legal-import-weekly-policy-1982 + title: Import Weekly Policy (legal) + description: Standard workflow to import weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute import procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-import-monthly-policy-1983 + title: Import Monthly Policy (legal) + description: Standard workflow to import monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and import the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-import-urgent-policy-1984 + title: Import Urgent Policy (legal) + description: Standard workflow to import urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to import the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-import-secure-policy-1985 + title: Import Secure Policy (legal) + description: Standard workflow to import secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute import procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-import-weekly-litigation-hold-1986 + title: Import Weekly Litigation Hold (legal) + description: Standard workflow to import weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and import the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-import-monthly-litigation-hold-1987 + title: Import Monthly Litigation Hold (legal) + description: Standard workflow to import monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to import the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-import-urgent-litigation-hold-1988 + title: Import Urgent Litigation Hold (legal) + description: Standard workflow to import urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute import procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-import-secure-litigation-hold-1989 + title: Import Secure Litigation Hold (legal) + description: Standard workflow to import secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and import the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-import-weekly-terms-of-service-1990 + title: Import Weekly Terms Of Service (legal) + description: Standard workflow to import weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to import the terms of service. + - Notify stakeholders via email. +- name: legal-import-monthly-terms-of-service-1991 + title: Import Monthly Terms Of Service (legal) + description: Standard workflow to import monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute import procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-import-urgent-terms-of-service-1992 + title: Import Urgent Terms Of Service (legal) + description: Standard workflow to import urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and import the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-import-secure-terms-of-service-1993 + title: Import Secure Terms Of Service (legal) + description: Standard workflow to import secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to import the terms of service. + - Archive results in a secure Drive folder. +- name: legal-sync-weekly-nda-1994 + title: Sync Weekly Nda (legal) + description: Standard workflow to sync weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute sync procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-sync-monthly-nda-1995 + title: Sync Monthly Nda (legal) + description: Standard workflow to sync monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and sync the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-sync-urgent-nda-1996 + title: Sync Urgent Nda (legal) + description: Standard workflow to sync urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to sync the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-sync-secure-nda-1997 + title: Sync Secure Nda (legal) + description: Standard workflow to sync secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute sync procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-sync-weekly-contract-1998 + title: Sync Weekly Contract (legal) + description: Standard workflow to sync weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and sync the weekly contract. + - Notify stakeholders via email. +- name: legal-sync-monthly-contract-1999 + title: Sync Monthly Contract (legal) + description: Standard workflow to sync monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to sync the contract. + - Send a status update to the legal team chat space. +- name: legal-sync-urgent-contract-2000 + title: Sync Urgent Contract (legal) + description: Standard workflow to sync urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute sync procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-sync-secure-contract-2001 + title: Sync Secure Contract (legal) + description: Standard workflow to sync secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and sync the secure contract. + - Archive results in a secure Drive folder. +- name: legal-sync-weekly-compliance-report-2002 + title: Sync Weekly Compliance Report (legal) + description: Standard workflow to sync weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to sync the compliance report. + - Notify stakeholders via email. +- name: legal-sync-monthly-compliance-report-2003 + title: Sync Monthly Compliance Report (legal) + description: Standard workflow to sync monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute sync procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-sync-urgent-compliance-report-2004 + title: Sync Urgent Compliance Report (legal) + description: Standard workflow to sync urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and sync the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-sync-secure-compliance-report-2005 + title: Sync Secure Compliance Report (legal) + description: Standard workflow to sync secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to sync the compliance report. + - Archive results in a secure Drive folder. +- name: legal-sync-weekly-policy-2006 + title: Sync Weekly Policy (legal) + description: Standard workflow to sync weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute sync procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-sync-monthly-policy-2007 + title: Sync Monthly Policy (legal) + description: Standard workflow to sync monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and sync the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-sync-urgent-policy-2008 + title: Sync Urgent Policy (legal) + description: Standard workflow to sync urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to sync the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-sync-secure-policy-2009 + title: Sync Secure Policy (legal) + description: Standard workflow to sync secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute sync procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-sync-weekly-litigation-hold-2010 + title: Sync Weekly Litigation Hold (legal) + description: Standard workflow to sync weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and sync the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-sync-monthly-litigation-hold-2011 + title: Sync Monthly Litigation Hold (legal) + description: Standard workflow to sync monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to sync the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-sync-urgent-litigation-hold-2012 + title: Sync Urgent Litigation Hold (legal) + description: Standard workflow to sync urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute sync procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-sync-secure-litigation-hold-2013 + title: Sync Secure Litigation Hold (legal) + description: Standard workflow to sync secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and sync the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-sync-weekly-terms-of-service-2014 + title: Sync Weekly Terms Of Service (legal) + description: Standard workflow to sync weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to sync the terms of service. + - Notify stakeholders via email. +- name: legal-sync-monthly-terms-of-service-2015 + title: Sync Monthly Terms Of Service (legal) + description: Standard workflow to sync monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute sync procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-sync-urgent-terms-of-service-2016 + title: Sync Urgent Terms Of Service (legal) + description: Standard workflow to sync urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and sync the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-sync-secure-terms-of-service-2017 + title: Sync Secure Terms Of Service (legal) + description: Standard workflow to sync secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to sync the terms of service. + - Archive results in a secure Drive folder. +- name: legal-migrate-weekly-nda-2018 + title: Migrate Weekly Nda (legal) + description: Standard workflow to migrate weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute migrate procedure on the designated nda. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly nda targets before running. +- name: legal-migrate-monthly-nda-2019 + title: Migrate Monthly Nda (legal) + description: Standard workflow to migrate monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and migrate the monthly nda. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly nda targets before running. +- name: legal-migrate-urgent-nda-2020 + title: Migrate Urgent Nda (legal) + description: Standard workflow to migrate urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to migrate the nda. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent nda targets before running. +- name: legal-migrate-secure-nda-2021 + title: Migrate Secure Nda (legal) + description: Standard workflow to migrate secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute migrate procedure on the designated nda. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure nda targets before running. +- name: legal-migrate-weekly-contract-2022 + title: Migrate Weekly Contract (legal) + description: Standard workflow to migrate weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and migrate the weekly contract. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. +- name: legal-migrate-monthly-contract-2023 + title: Migrate Monthly Contract (legal) + description: Standard workflow to migrate monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to migrate the contract. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. +- name: legal-migrate-urgent-contract-2024 + title: Migrate Urgent Contract (legal) + description: Standard workflow to migrate urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute migrate procedure on the designated contract. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. +- name: legal-migrate-secure-contract-2025 + title: Migrate Secure Contract (legal) + description: Standard workflow to migrate secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and migrate the secure contract. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure contract targets before running. +- name: legal-migrate-weekly-compliance-report-2026 + title: Migrate Weekly Compliance Report (legal) + description: Standard workflow to migrate weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to migrate the compliance report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly compliance report targets before running. +- name: legal-migrate-monthly-compliance-report-2027 + title: Migrate Monthly Compliance Report (legal) + description: Standard workflow to migrate monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute migrate procedure on the designated compliance report. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly compliance report targets before running. +- name: legal-migrate-urgent-compliance-report-2028 + title: Migrate Urgent Compliance Report (legal) + description: Standard workflow to migrate urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and migrate the urgent compliance report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent compliance report targets before running. +- name: legal-migrate-secure-compliance-report-2029 + title: Migrate Secure Compliance Report (legal) + description: Standard workflow to migrate secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to migrate the compliance report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure compliance report targets before running. +- name: legal-migrate-weekly-policy-2030 + title: Migrate Weekly Policy (legal) + description: Standard workflow to migrate weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute migrate procedure on the designated policy. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly policy targets before running. +- name: legal-migrate-monthly-policy-2031 + title: Migrate Monthly Policy (legal) + description: Standard workflow to migrate monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and migrate the monthly policy. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly policy targets before running. +- name: legal-migrate-urgent-policy-2032 + title: Migrate Urgent Policy (legal) + description: Standard workflow to migrate urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to migrate the policy. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent policy targets before running. +- name: legal-migrate-secure-policy-2033 + title: Migrate Secure Policy (legal) + description: Standard workflow to migrate secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute migrate procedure on the designated policy. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure policy targets before running. +- name: legal-migrate-weekly-litigation-hold-2034 + title: Migrate Weekly Litigation Hold (legal) + description: Standard workflow to migrate weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and migrate the weekly litigation hold. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly litigation hold targets before running. +- name: legal-migrate-monthly-litigation-hold-2035 + title: Migrate Monthly Litigation Hold (legal) + description: Standard workflow to migrate monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to migrate the litigation hold. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly litigation hold targets before running. +- name: legal-migrate-urgent-litigation-hold-2036 + title: Migrate Urgent Litigation Hold (legal) + description: Standard workflow to migrate urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute migrate procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent litigation hold targets before running. +- name: legal-migrate-secure-litigation-hold-2037 + title: Migrate Secure Litigation Hold (legal) + description: Standard workflow to migrate secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and migrate the secure litigation hold. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure litigation hold targets before running. +- name: legal-migrate-weekly-terms-of-service-2038 + title: Migrate Weekly Terms Of Service (legal) + description: Standard workflow to migrate weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to migrate the terms of service. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly terms of service targets before running. +- name: legal-migrate-monthly-terms-of-service-2039 + title: Migrate Monthly Terms Of Service (legal) + description: Standard workflow to migrate monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute migrate procedure on the designated terms of service. + - Send a status update to the legal team chat space. + caution: Action involves bulk data manipulation. Confirm monthly terms of service targets before running. +- name: legal-migrate-urgent-terms-of-service-2040 + title: Migrate Urgent Terms Of Service (legal) + description: Standard workflow to migrate urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and migrate the urgent terms of service. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent terms of service targets before running. +- name: legal-migrate-secure-terms-of-service-2041 + title: Migrate Secure Terms Of Service (legal) + description: Standard workflow to migrate secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to migrate the terms of service. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure terms of service targets before running. +- name: legal-backup-weekly-nda-2042 + title: Backup Weekly Nda (legal) + description: Standard workflow to backup weekly nda within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly nda requests. + - Execute backup procedure on the designated nda. + - Notify stakeholders via email. +- name: legal-backup-monthly-nda-2043 + title: Backup Monthly Nda (legal) + description: Standard workflow to backup monthly nda within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly nda records. + - Review and backup the monthly nda. + - Send a status update to the legal team chat space. +- name: legal-backup-urgent-nda-2044 + title: Backup Urgent Nda (legal) + description: Standard workflow to backup urgent nda within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent nda data. + - Apply legal policies to backup the nda. + - Log completion in the master tracking spreadsheet. +- name: legal-backup-secure-nda-2045 + title: Backup Secure Nda (legal) + description: Standard workflow to backup secure nda within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure nda requests. + - Execute backup procedure on the designated nda. + - Archive results in a secure Drive folder. +- name: legal-backup-weekly-contract-2046 + title: Backup Weekly Contract (legal) + description: Standard workflow to backup weekly contract within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly contract records. + - Review and backup the weekly contract. + - Notify stakeholders via email. +- name: legal-backup-monthly-contract-2047 + title: Backup Monthly Contract (legal) + description: Standard workflow to backup monthly contract within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly contract data. + - Apply legal policies to backup the contract. + - Send a status update to the legal team chat space. +- name: legal-backup-urgent-contract-2048 + title: Backup Urgent Contract (legal) + description: Standard workflow to backup urgent contract within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent contract requests. + - Execute backup procedure on the designated contract. + - Log completion in the master tracking spreadsheet. +- name: legal-backup-secure-contract-2049 + title: Backup Secure Contract (legal) + description: Standard workflow to backup secure contract within the legal department. + category: legal + services: + - drive + steps: + - Search for secure contract records. + - Review and backup the secure contract. + - Archive results in a secure Drive folder. +- name: legal-backup-weekly-compliance-report-2050 + title: Backup Weekly Compliance Report (legal) + description: Standard workflow to backup weekly compliance report within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly compliance report data. + - Apply legal policies to backup the compliance report. + - Notify stakeholders via email. +- name: legal-backup-monthly-compliance-report-2051 + title: Backup Monthly Compliance Report (legal) + description: Standard workflow to backup monthly compliance report within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly compliance report requests. + - Execute backup procedure on the designated compliance report. + - Send a status update to the legal team chat space. +- name: legal-backup-urgent-compliance-report-2052 + title: Backup Urgent Compliance Report (legal) + description: Standard workflow to backup urgent compliance report within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent compliance report records. + - Review and backup the urgent compliance report. + - Log completion in the master tracking spreadsheet. +- name: legal-backup-secure-compliance-report-2053 + title: Backup Secure Compliance Report (legal) + description: Standard workflow to backup secure compliance report within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure compliance report data. + - Apply legal policies to backup the compliance report. + - Archive results in a secure Drive folder. +- name: legal-backup-weekly-policy-2054 + title: Backup Weekly Policy (legal) + description: Standard workflow to backup weekly policy within the legal department. + category: legal + services: + - gmail + - vault + - docs + steps: + - Check system for pending weekly policy requests. + - Execute backup procedure on the designated policy. + - Notify stakeholders via email. +- name: legal-backup-monthly-policy-2055 + title: Backup Monthly Policy (legal) + description: Standard workflow to backup monthly policy within the legal department. + category: legal + services: + - vault + steps: + - Search for monthly policy records. + - Review and backup the monthly policy. + - Send a status update to the legal team chat space. +- name: legal-backup-urgent-policy-2056 + title: Backup Urgent Policy (legal) + description: Standard workflow to backup urgent policy within the legal department. + category: legal + services: + - docs + - drive + steps: + - Fetch latest urgent policy data. + - Apply legal policies to backup the policy. + - Log completion in the master tracking spreadsheet. +- name: legal-backup-secure-policy-2057 + title: Backup Secure Policy (legal) + description: Standard workflow to backup secure policy within the legal department. + category: legal + services: + - drive + - gmail + - vault + steps: + - Check system for pending secure policy requests. + - Execute backup procedure on the designated policy. + - Archive results in a secure Drive folder. +- name: legal-backup-weekly-litigation-hold-2058 + title: Backup Weekly Litigation Hold (legal) + description: Standard workflow to backup weekly litigation hold within the legal department. + category: legal + services: + - gmail + steps: + - Search for weekly litigation hold records. + - Review and backup the weekly litigation hold. + - Notify stakeholders via email. +- name: legal-backup-monthly-litigation-hold-2059 + title: Backup Monthly Litigation Hold (legal) + description: Standard workflow to backup monthly litigation hold within the legal department. + category: legal + services: + - vault + - docs + steps: + - Fetch latest monthly litigation hold data. + - Apply legal policies to backup the litigation hold. + - Send a status update to the legal team chat space. +- name: legal-backup-urgent-litigation-hold-2060 + title: Backup Urgent Litigation Hold (legal) + description: Standard workflow to backup urgent litigation hold within the legal department. + category: legal + services: + - docs + - drive + - gmail + steps: + - Check system for pending urgent litigation hold requests. + - Execute backup procedure on the designated litigation hold. + - Log completion in the master tracking spreadsheet. +- name: legal-backup-secure-litigation-hold-2061 + title: Backup Secure Litigation Hold (legal) + description: Standard workflow to backup secure litigation hold within the legal department. + category: legal + services: + - drive + steps: + - Search for secure litigation hold records. + - Review and backup the secure litigation hold. + - Archive results in a secure Drive folder. +- name: legal-backup-weekly-terms-of-service-2062 + title: Backup Weekly Terms Of Service (legal) + description: Standard workflow to backup weekly terms of service within the legal department. + category: legal + services: + - gmail + - vault + steps: + - Fetch latest weekly terms of service data. + - Apply legal policies to backup the terms of service. + - Notify stakeholders via email. +- name: legal-backup-monthly-terms-of-service-2063 + title: Backup Monthly Terms Of Service (legal) + description: Standard workflow to backup monthly terms of service within the legal department. + category: legal + services: + - vault + - docs + - drive + steps: + - Check system for pending monthly terms of service requests. + - Execute backup procedure on the designated terms of service. + - Send a status update to the legal team chat space. +- name: legal-backup-urgent-terms-of-service-2064 + title: Backup Urgent Terms Of Service (legal) + description: Standard workflow to backup urgent terms of service within the legal department. + category: legal + services: + - docs + steps: + - Search for urgent terms of service records. + - Review and backup the urgent terms of service. + - Log completion in the master tracking spreadsheet. +- name: legal-backup-secure-terms-of-service-2065 + title: Backup Secure Terms Of Service (legal) + description: Standard workflow to backup secure terms of service within the legal department. + category: legal + services: + - drive + - gmail + steps: + - Fetch latest secure terms of service data. + - Apply legal policies to backup the terms of service. + - Archive results in a secure Drive folder. +- name: support-audit-weekly-ticket-2066 + title: Audit Weekly Ticket (support) + description: Standard workflow to audit weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute audit procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-audit-monthly-ticket-2067 + title: Audit Monthly Ticket (support) + description: Standard workflow to audit monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and audit the monthly ticket. + - Send a status update to the support team chat space. +- name: support-audit-urgent-ticket-2068 + title: Audit Urgent Ticket (support) + description: Standard workflow to audit urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to audit the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-audit-secure-ticket-2069 + title: Audit Secure Ticket (support) + description: Standard workflow to audit secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute audit procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-audit-weekly-customer-record-2070 + title: Audit Weekly Customer Record (support) + description: Standard workflow to audit weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and audit the weekly customer record. + - Notify stakeholders via email. +- name: support-audit-monthly-customer-record-2071 + title: Audit Monthly Customer Record (support) + description: Standard workflow to audit monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to audit the customer record. + - Send a status update to the support team chat space. +- name: support-audit-urgent-customer-record-2072 + title: Audit Urgent Customer Record (support) + description: Standard workflow to audit urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute audit procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-audit-secure-customer-record-2073 + title: Audit Secure Customer Record (support) + description: Standard workflow to audit secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and audit the secure customer record. + - Archive results in a secure Drive folder. +- name: support-audit-weekly-kb-article-2074 + title: Audit Weekly Kb Article (support) + description: Standard workflow to audit weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to audit the kb article. + - Notify stakeholders via email. +- name: support-audit-monthly-kb-article-2075 + title: Audit Monthly Kb Article (support) + description: Standard workflow to audit monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute audit procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-audit-urgent-kb-article-2076 + title: Audit Urgent Kb Article (support) + description: Standard workflow to audit urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and audit the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-audit-secure-kb-article-2077 + title: Audit Secure Kb Article (support) + description: Standard workflow to audit secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to audit the kb article. + - Archive results in a secure Drive folder. +- name: support-audit-weekly-escalation-2078 + title: Audit Weekly Escalation (support) + description: Standard workflow to audit weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute audit procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-audit-monthly-escalation-2079 + title: Audit Monthly Escalation (support) + description: Standard workflow to audit monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and audit the monthly escalation. + - Send a status update to the support team chat space. +- name: support-audit-urgent-escalation-2080 + title: Audit Urgent Escalation (support) + description: Standard workflow to audit urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to audit the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-audit-secure-escalation-2081 + title: Audit Secure Escalation (support) + description: Standard workflow to audit secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute audit procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-audit-weekly-refund-request-2082 + title: Audit Weekly Refund Request (support) + description: Standard workflow to audit weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and audit the weekly refund request. + - Notify stakeholders via email. +- name: support-audit-monthly-refund-request-2083 + title: Audit Monthly Refund Request (support) + description: Standard workflow to audit monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to audit the refund request. + - Send a status update to the support team chat space. +- name: support-audit-urgent-refund-request-2084 + title: Audit Urgent Refund Request (support) + description: Standard workflow to audit urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute audit procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-audit-secure-refund-request-2085 + title: Audit Secure Refund Request (support) + description: Standard workflow to audit secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and audit the secure refund request. + - Archive results in a secure Drive folder. +- name: support-audit-weekly-bug-report-2086 + title: Audit Weekly Bug Report (support) + description: Standard workflow to audit weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to audit the bug report. + - Notify stakeholders via email. +- name: support-audit-monthly-bug-report-2087 + title: Audit Monthly Bug Report (support) + description: Standard workflow to audit monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute audit procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-audit-urgent-bug-report-2088 + title: Audit Urgent Bug Report (support) + description: Standard workflow to audit urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and audit the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-audit-secure-bug-report-2089 + title: Audit Secure Bug Report (support) + description: Standard workflow to audit secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to audit the bug report. + - Archive results in a secure Drive folder. +- name: support-onboard-weekly-ticket-2090 + title: Onboard Weekly Ticket (support) + description: Standard workflow to onboard weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute onboard procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-onboard-monthly-ticket-2091 + title: Onboard Monthly Ticket (support) + description: Standard workflow to onboard monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and onboard the monthly ticket. + - Send a status update to the support team chat space. +- name: support-onboard-urgent-ticket-2092 + title: Onboard Urgent Ticket (support) + description: Standard workflow to onboard urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to onboard the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-onboard-secure-ticket-2093 + title: Onboard Secure Ticket (support) + description: Standard workflow to onboard secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute onboard procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-onboard-weekly-customer-record-2094 + title: Onboard Weekly Customer Record (support) + description: Standard workflow to onboard weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and onboard the weekly customer record. + - Notify stakeholders via email. +- name: support-onboard-monthly-customer-record-2095 + title: Onboard Monthly Customer Record (support) + description: Standard workflow to onboard monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to onboard the customer record. + - Send a status update to the support team chat space. +- name: support-onboard-urgent-customer-record-2096 + title: Onboard Urgent Customer Record (support) + description: Standard workflow to onboard urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute onboard procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-onboard-secure-customer-record-2097 + title: Onboard Secure Customer Record (support) + description: Standard workflow to onboard secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and onboard the secure customer record. + - Archive results in a secure Drive folder. +- name: support-onboard-weekly-kb-article-2098 + title: Onboard Weekly Kb Article (support) + description: Standard workflow to onboard weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to onboard the kb article. + - Notify stakeholders via email. +- name: support-onboard-monthly-kb-article-2099 + title: Onboard Monthly Kb Article (support) + description: Standard workflow to onboard monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute onboard procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-onboard-urgent-kb-article-2100 + title: Onboard Urgent Kb Article (support) + description: Standard workflow to onboard urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and onboard the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-onboard-secure-kb-article-2101 + title: Onboard Secure Kb Article (support) + description: Standard workflow to onboard secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to onboard the kb article. + - Archive results in a secure Drive folder. +- name: support-onboard-weekly-escalation-2102 + title: Onboard Weekly Escalation (support) + description: Standard workflow to onboard weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute onboard procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-onboard-monthly-escalation-2103 + title: Onboard Monthly Escalation (support) + description: Standard workflow to onboard monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and onboard the monthly escalation. + - Send a status update to the support team chat space. +- name: support-onboard-urgent-escalation-2104 + title: Onboard Urgent Escalation (support) + description: Standard workflow to onboard urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to onboard the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-onboard-secure-escalation-2105 + title: Onboard Secure Escalation (support) + description: Standard workflow to onboard secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute onboard procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-onboard-weekly-refund-request-2106 + title: Onboard Weekly Refund Request (support) + description: Standard workflow to onboard weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and onboard the weekly refund request. + - Notify stakeholders via email. +- name: support-onboard-monthly-refund-request-2107 + title: Onboard Monthly Refund Request (support) + description: Standard workflow to onboard monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to onboard the refund request. + - Send a status update to the support team chat space. +- name: support-onboard-urgent-refund-request-2108 + title: Onboard Urgent Refund Request (support) + description: Standard workflow to onboard urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute onboard procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-onboard-secure-refund-request-2109 + title: Onboard Secure Refund Request (support) + description: Standard workflow to onboard secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and onboard the secure refund request. + - Archive results in a secure Drive folder. +- name: support-onboard-weekly-bug-report-2110 + title: Onboard Weekly Bug Report (support) + description: Standard workflow to onboard weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to onboard the bug report. + - Notify stakeholders via email. +- name: support-onboard-monthly-bug-report-2111 + title: Onboard Monthly Bug Report (support) + description: Standard workflow to onboard monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute onboard procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-onboard-urgent-bug-report-2112 + title: Onboard Urgent Bug Report (support) + description: Standard workflow to onboard urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and onboard the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-onboard-secure-bug-report-2113 + title: Onboard Secure Bug Report (support) + description: Standard workflow to onboard secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to onboard the bug report. + - Archive results in a secure Drive folder. +- name: support-review-weekly-ticket-2114 + title: Review Weekly Ticket (support) + description: Standard workflow to review weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute review procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-review-monthly-ticket-2115 + title: Review Monthly Ticket (support) + description: Standard workflow to review monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and review the monthly ticket. + - Send a status update to the support team chat space. +- name: support-review-urgent-ticket-2116 + title: Review Urgent Ticket (support) + description: Standard workflow to review urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to review the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-review-secure-ticket-2117 + title: Review Secure Ticket (support) + description: Standard workflow to review secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute review procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-review-weekly-customer-record-2118 + title: Review Weekly Customer Record (support) + description: Standard workflow to review weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and review the weekly customer record. + - Notify stakeholders via email. +- name: support-review-monthly-customer-record-2119 + title: Review Monthly Customer Record (support) + description: Standard workflow to review monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to review the customer record. + - Send a status update to the support team chat space. +- name: support-review-urgent-customer-record-2120 + title: Review Urgent Customer Record (support) + description: Standard workflow to review urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute review procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-review-secure-customer-record-2121 + title: Review Secure Customer Record (support) + description: Standard workflow to review secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and review the secure customer record. + - Archive results in a secure Drive folder. +- name: support-review-weekly-kb-article-2122 + title: Review Weekly Kb Article (support) + description: Standard workflow to review weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to review the kb article. + - Notify stakeholders via email. +- name: support-review-monthly-kb-article-2123 + title: Review Monthly Kb Article (support) + description: Standard workflow to review monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute review procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-review-urgent-kb-article-2124 + title: Review Urgent Kb Article (support) + description: Standard workflow to review urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and review the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-review-secure-kb-article-2125 + title: Review Secure Kb Article (support) + description: Standard workflow to review secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to review the kb article. + - Archive results in a secure Drive folder. +- name: support-review-weekly-escalation-2126 + title: Review Weekly Escalation (support) + description: Standard workflow to review weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute review procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-review-monthly-escalation-2127 + title: Review Monthly Escalation (support) + description: Standard workflow to review monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and review the monthly escalation. + - Send a status update to the support team chat space. +- name: support-review-urgent-escalation-2128 + title: Review Urgent Escalation (support) + description: Standard workflow to review urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to review the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-review-secure-escalation-2129 + title: Review Secure Escalation (support) + description: Standard workflow to review secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute review procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-review-weekly-refund-request-2130 + title: Review Weekly Refund Request (support) + description: Standard workflow to review weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and review the weekly refund request. + - Notify stakeholders via email. +- name: support-review-monthly-refund-request-2131 + title: Review Monthly Refund Request (support) + description: Standard workflow to review monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to review the refund request. + - Send a status update to the support team chat space. +- name: support-review-urgent-refund-request-2132 + title: Review Urgent Refund Request (support) + description: Standard workflow to review urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute review procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-review-secure-refund-request-2133 + title: Review Secure Refund Request (support) + description: Standard workflow to review secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and review the secure refund request. + - Archive results in a secure Drive folder. +- name: support-review-weekly-bug-report-2134 + title: Review Weekly Bug Report (support) + description: Standard workflow to review weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to review the bug report. + - Notify stakeholders via email. +- name: support-review-monthly-bug-report-2135 + title: Review Monthly Bug Report (support) + description: Standard workflow to review monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute review procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-review-urgent-bug-report-2136 + title: Review Urgent Bug Report (support) + description: Standard workflow to review urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and review the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-review-secure-bug-report-2137 + title: Review Secure Bug Report (support) + description: Standard workflow to review secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to review the bug report. + - Archive results in a secure Drive folder. +- name: support-approve-weekly-ticket-2138 + title: Approve Weekly Ticket (support) + description: Standard workflow to approve weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute approve procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-approve-monthly-ticket-2139 + title: Approve Monthly Ticket (support) + description: Standard workflow to approve monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and approve the monthly ticket. + - Send a status update to the support team chat space. +- name: support-approve-urgent-ticket-2140 + title: Approve Urgent Ticket (support) + description: Standard workflow to approve urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to approve the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-approve-secure-ticket-2141 + title: Approve Secure Ticket (support) + description: Standard workflow to approve secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute approve procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-approve-weekly-customer-record-2142 + title: Approve Weekly Customer Record (support) + description: Standard workflow to approve weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and approve the weekly customer record. + - Notify stakeholders via email. +- name: support-approve-monthly-customer-record-2143 + title: Approve Monthly Customer Record (support) + description: Standard workflow to approve monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to approve the customer record. + - Send a status update to the support team chat space. +- name: support-approve-urgent-customer-record-2144 + title: Approve Urgent Customer Record (support) + description: Standard workflow to approve urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute approve procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-approve-secure-customer-record-2145 + title: Approve Secure Customer Record (support) + description: Standard workflow to approve secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and approve the secure customer record. + - Archive results in a secure Drive folder. +- name: support-approve-weekly-kb-article-2146 + title: Approve Weekly Kb Article (support) + description: Standard workflow to approve weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to approve the kb article. + - Notify stakeholders via email. +- name: support-approve-monthly-kb-article-2147 + title: Approve Monthly Kb Article (support) + description: Standard workflow to approve monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute approve procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-approve-urgent-kb-article-2148 + title: Approve Urgent Kb Article (support) + description: Standard workflow to approve urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and approve the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-approve-secure-kb-article-2149 + title: Approve Secure Kb Article (support) + description: Standard workflow to approve secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to approve the kb article. + - Archive results in a secure Drive folder. +- name: support-approve-weekly-escalation-2150 + title: Approve Weekly Escalation (support) + description: Standard workflow to approve weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute approve procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-approve-monthly-escalation-2151 + title: Approve Monthly Escalation (support) + description: Standard workflow to approve monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and approve the monthly escalation. + - Send a status update to the support team chat space. +- name: support-approve-urgent-escalation-2152 + title: Approve Urgent Escalation (support) + description: Standard workflow to approve urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to approve the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-approve-secure-escalation-2153 + title: Approve Secure Escalation (support) + description: Standard workflow to approve secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute approve procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-approve-weekly-refund-request-2154 + title: Approve Weekly Refund Request (support) + description: Standard workflow to approve weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and approve the weekly refund request. + - Notify stakeholders via email. +- name: support-approve-monthly-refund-request-2155 + title: Approve Monthly Refund Request (support) + description: Standard workflow to approve monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to approve the refund request. + - Send a status update to the support team chat space. +- name: support-approve-urgent-refund-request-2156 + title: Approve Urgent Refund Request (support) + description: Standard workflow to approve urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute approve procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-approve-secure-refund-request-2157 + title: Approve Secure Refund Request (support) + description: Standard workflow to approve secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and approve the secure refund request. + - Archive results in a secure Drive folder. +- name: support-approve-weekly-bug-report-2158 + title: Approve Weekly Bug Report (support) + description: Standard workflow to approve weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to approve the bug report. + - Notify stakeholders via email. +- name: support-approve-monthly-bug-report-2159 + title: Approve Monthly Bug Report (support) + description: Standard workflow to approve monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute approve procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-approve-urgent-bug-report-2160 + title: Approve Urgent Bug Report (support) + description: Standard workflow to approve urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and approve the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-approve-secure-bug-report-2161 + title: Approve Secure Bug Report (support) + description: Standard workflow to approve secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to approve the bug report. + - Archive results in a secure Drive folder. +- name: support-share-weekly-ticket-2162 + title: Share Weekly Ticket (support) + description: Standard workflow to share weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute share procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-share-monthly-ticket-2163 + title: Share Monthly Ticket (support) + description: Standard workflow to share monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and share the monthly ticket. + - Send a status update to the support team chat space. +- name: support-share-urgent-ticket-2164 + title: Share Urgent Ticket (support) + description: Standard workflow to share urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to share the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-share-secure-ticket-2165 + title: Share Secure Ticket (support) + description: Standard workflow to share secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute share procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-share-weekly-customer-record-2166 + title: Share Weekly Customer Record (support) + description: Standard workflow to share weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and share the weekly customer record. + - Notify stakeholders via email. +- name: support-share-monthly-customer-record-2167 + title: Share Monthly Customer Record (support) + description: Standard workflow to share monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to share the customer record. + - Send a status update to the support team chat space. +- name: support-share-urgent-customer-record-2168 + title: Share Urgent Customer Record (support) + description: Standard workflow to share urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute share procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-share-secure-customer-record-2169 + title: Share Secure Customer Record (support) + description: Standard workflow to share secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and share the secure customer record. + - Archive results in a secure Drive folder. +- name: support-share-weekly-kb-article-2170 + title: Share Weekly Kb Article (support) + description: Standard workflow to share weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to share the kb article. + - Notify stakeholders via email. +- name: support-share-monthly-kb-article-2171 + title: Share Monthly Kb Article (support) + description: Standard workflow to share monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute share procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-share-urgent-kb-article-2172 + title: Share Urgent Kb Article (support) + description: Standard workflow to share urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and share the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-share-secure-kb-article-2173 + title: Share Secure Kb Article (support) + description: Standard workflow to share secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to share the kb article. + - Archive results in a secure Drive folder. +- name: support-share-weekly-escalation-2174 + title: Share Weekly Escalation (support) + description: Standard workflow to share weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute share procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-share-monthly-escalation-2175 + title: Share Monthly Escalation (support) + description: Standard workflow to share monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and share the monthly escalation. + - Send a status update to the support team chat space. +- name: support-share-urgent-escalation-2176 + title: Share Urgent Escalation (support) + description: Standard workflow to share urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to share the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-share-secure-escalation-2177 + title: Share Secure Escalation (support) + description: Standard workflow to share secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute share procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-share-weekly-refund-request-2178 + title: Share Weekly Refund Request (support) + description: Standard workflow to share weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and share the weekly refund request. + - Notify stakeholders via email. +- name: support-share-monthly-refund-request-2179 + title: Share Monthly Refund Request (support) + description: Standard workflow to share monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to share the refund request. + - Send a status update to the support team chat space. +- name: support-share-urgent-refund-request-2180 + title: Share Urgent Refund Request (support) + description: Standard workflow to share urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute share procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-share-secure-refund-request-2181 + title: Share Secure Refund Request (support) + description: Standard workflow to share secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and share the secure refund request. + - Archive results in a secure Drive folder. +- name: support-share-weekly-bug-report-2182 + title: Share Weekly Bug Report (support) + description: Standard workflow to share weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to share the bug report. + - Notify stakeholders via email. +- name: support-share-monthly-bug-report-2183 + title: Share Monthly Bug Report (support) + description: Standard workflow to share monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute share procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-share-urgent-bug-report-2184 + title: Share Urgent Bug Report (support) + description: Standard workflow to share urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and share the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-share-secure-bug-report-2185 + title: Share Secure Bug Report (support) + description: Standard workflow to share secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to share the bug report. + - Archive results in a secure Drive folder. +- name: support-publish-weekly-ticket-2186 + title: Publish Weekly Ticket (support) + description: Standard workflow to publish weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute publish procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-publish-monthly-ticket-2187 + title: Publish Monthly Ticket (support) + description: Standard workflow to publish monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and publish the monthly ticket. + - Send a status update to the support team chat space. +- name: support-publish-urgent-ticket-2188 + title: Publish Urgent Ticket (support) + description: Standard workflow to publish urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to publish the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-publish-secure-ticket-2189 + title: Publish Secure Ticket (support) + description: Standard workflow to publish secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute publish procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-publish-weekly-customer-record-2190 + title: Publish Weekly Customer Record (support) + description: Standard workflow to publish weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and publish the weekly customer record. + - Notify stakeholders via email. +- name: support-publish-monthly-customer-record-2191 + title: Publish Monthly Customer Record (support) + description: Standard workflow to publish monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to publish the customer record. + - Send a status update to the support team chat space. +- name: support-publish-urgent-customer-record-2192 + title: Publish Urgent Customer Record (support) + description: Standard workflow to publish urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute publish procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-publish-secure-customer-record-2193 + title: Publish Secure Customer Record (support) + description: Standard workflow to publish secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and publish the secure customer record. + - Archive results in a secure Drive folder. +- name: support-publish-weekly-kb-article-2194 + title: Publish Weekly Kb Article (support) + description: Standard workflow to publish weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to publish the kb article. + - Notify stakeholders via email. +- name: support-publish-monthly-kb-article-2195 + title: Publish Monthly Kb Article (support) + description: Standard workflow to publish monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute publish procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-publish-urgent-kb-article-2196 + title: Publish Urgent Kb Article (support) + description: Standard workflow to publish urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and publish the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-publish-secure-kb-article-2197 + title: Publish Secure Kb Article (support) + description: Standard workflow to publish secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to publish the kb article. + - Archive results in a secure Drive folder. +- name: support-publish-weekly-escalation-2198 + title: Publish Weekly Escalation (support) + description: Standard workflow to publish weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute publish procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-publish-monthly-escalation-2199 + title: Publish Monthly Escalation (support) + description: Standard workflow to publish monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and publish the monthly escalation. + - Send a status update to the support team chat space. +- name: support-publish-urgent-escalation-2200 + title: Publish Urgent Escalation (support) + description: Standard workflow to publish urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to publish the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-publish-secure-escalation-2201 + title: Publish Secure Escalation (support) + description: Standard workflow to publish secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute publish procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-publish-weekly-refund-request-2202 + title: Publish Weekly Refund Request (support) + description: Standard workflow to publish weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and publish the weekly refund request. + - Notify stakeholders via email. +- name: support-publish-monthly-refund-request-2203 + title: Publish Monthly Refund Request (support) + description: Standard workflow to publish monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to publish the refund request. + - Send a status update to the support team chat space. +- name: support-publish-urgent-refund-request-2204 + title: Publish Urgent Refund Request (support) + description: Standard workflow to publish urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute publish procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-publish-secure-refund-request-2205 + title: Publish Secure Refund Request (support) + description: Standard workflow to publish secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and publish the secure refund request. + - Archive results in a secure Drive folder. +- name: support-publish-weekly-bug-report-2206 + title: Publish Weekly Bug Report (support) + description: Standard workflow to publish weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to publish the bug report. + - Notify stakeholders via email. +- name: support-publish-monthly-bug-report-2207 + title: Publish Monthly Bug Report (support) + description: Standard workflow to publish monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute publish procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-publish-urgent-bug-report-2208 + title: Publish Urgent Bug Report (support) + description: Standard workflow to publish urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and publish the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-publish-secure-bug-report-2209 + title: Publish Secure Bug Report (support) + description: Standard workflow to publish secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to publish the bug report. + - Archive results in a secure Drive folder. +- name: support-archive-weekly-ticket-2210 + title: Archive Weekly Ticket (support) + description: Standard workflow to archive weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute archive procedure on the designated ticket. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly ticket targets before running. +- name: support-archive-monthly-ticket-2211 + title: Archive Monthly Ticket (support) + description: Standard workflow to archive monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and archive the monthly ticket. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly ticket targets before running. +- name: support-archive-urgent-ticket-2212 + title: Archive Urgent Ticket (support) + description: Standard workflow to archive urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to archive the ticket. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent ticket targets before running. +- name: support-archive-secure-ticket-2213 + title: Archive Secure Ticket (support) + description: Standard workflow to archive secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute archive procedure on the designated ticket. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure ticket targets before running. +- name: support-archive-weekly-customer-record-2214 + title: Archive Weekly Customer Record (support) + description: Standard workflow to archive weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and archive the weekly customer record. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly customer record targets before running. +- name: support-archive-monthly-customer-record-2215 + title: Archive Monthly Customer Record (support) + description: Standard workflow to archive monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to archive the customer record. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly customer record targets before running. +- name: support-archive-urgent-customer-record-2216 + title: Archive Urgent Customer Record (support) + description: Standard workflow to archive urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute archive procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent customer record targets before running. +- name: support-archive-secure-customer-record-2217 + title: Archive Secure Customer Record (support) + description: Standard workflow to archive secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and archive the secure customer record. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure customer record targets before running. +- name: support-archive-weekly-kb-article-2218 + title: Archive Weekly Kb Article (support) + description: Standard workflow to archive weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to archive the kb article. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly kb article targets before running. +- name: support-archive-monthly-kb-article-2219 + title: Archive Monthly Kb Article (support) + description: Standard workflow to archive monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute archive procedure on the designated kb article. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly kb article targets before running. +- name: support-archive-urgent-kb-article-2220 + title: Archive Urgent Kb Article (support) + description: Standard workflow to archive urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and archive the urgent kb article. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent kb article targets before running. +- name: support-archive-secure-kb-article-2221 + title: Archive Secure Kb Article (support) + description: Standard workflow to archive secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to archive the kb article. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure kb article targets before running. +- name: support-archive-weekly-escalation-2222 + title: Archive Weekly Escalation (support) + description: Standard workflow to archive weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute archive procedure on the designated escalation. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly escalation targets before running. +- name: support-archive-monthly-escalation-2223 + title: Archive Monthly Escalation (support) + description: Standard workflow to archive monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and archive the monthly escalation. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly escalation targets before running. +- name: support-archive-urgent-escalation-2224 + title: Archive Urgent Escalation (support) + description: Standard workflow to archive urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to archive the escalation. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent escalation targets before running. +- name: support-archive-secure-escalation-2225 + title: Archive Secure Escalation (support) + description: Standard workflow to archive secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute archive procedure on the designated escalation. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure escalation targets before running. +- name: support-archive-weekly-refund-request-2226 + title: Archive Weekly Refund Request (support) + description: Standard workflow to archive weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and archive the weekly refund request. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly refund request targets before running. +- name: support-archive-monthly-refund-request-2227 + title: Archive Monthly Refund Request (support) + description: Standard workflow to archive monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to archive the refund request. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly refund request targets before running. +- name: support-archive-urgent-refund-request-2228 + title: Archive Urgent Refund Request (support) + description: Standard workflow to archive urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute archive procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent refund request targets before running. +- name: support-archive-secure-refund-request-2229 + title: Archive Secure Refund Request (support) + description: Standard workflow to archive secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and archive the secure refund request. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure refund request targets before running. +- name: support-archive-weekly-bug-report-2230 + title: Archive Weekly Bug Report (support) + description: Standard workflow to archive weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to archive the bug report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly bug report targets before running. +- name: support-archive-monthly-bug-report-2231 + title: Archive Monthly Bug Report (support) + description: Standard workflow to archive monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute archive procedure on the designated bug report. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly bug report targets before running. +- name: support-archive-urgent-bug-report-2232 + title: Archive Urgent Bug Report (support) + description: Standard workflow to archive urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and archive the urgent bug report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent bug report targets before running. +- name: support-archive-secure-bug-report-2233 + title: Archive Secure Bug Report (support) + description: Standard workflow to archive secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to archive the bug report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure bug report targets before running. +- name: support-export-weekly-ticket-2234 + title: Export Weekly Ticket (support) + description: Standard workflow to export weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute export procedure on the designated ticket. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly ticket targets before running. +- name: support-export-monthly-ticket-2235 + title: Export Monthly Ticket (support) + description: Standard workflow to export monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and export the monthly ticket. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly ticket targets before running. +- name: support-export-urgent-ticket-2236 + title: Export Urgent Ticket (support) + description: Standard workflow to export urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to export the ticket. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent ticket targets before running. +- name: support-export-secure-ticket-2237 + title: Export Secure Ticket (support) + description: Standard workflow to export secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute export procedure on the designated ticket. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure ticket targets before running. +- name: support-export-weekly-customer-record-2238 + title: Export Weekly Customer Record (support) + description: Standard workflow to export weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and export the weekly customer record. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly customer record targets before running. +- name: support-export-monthly-customer-record-2239 + title: Export Monthly Customer Record (support) + description: Standard workflow to export monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to export the customer record. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly customer record targets before running. +- name: support-export-urgent-customer-record-2240 + title: Export Urgent Customer Record (support) + description: Standard workflow to export urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute export procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent customer record targets before running. +- name: support-export-secure-customer-record-2241 + title: Export Secure Customer Record (support) + description: Standard workflow to export secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and export the secure customer record. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure customer record targets before running. +- name: support-export-weekly-kb-article-2242 + title: Export Weekly Kb Article (support) + description: Standard workflow to export weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to export the kb article. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly kb article targets before running. +- name: support-export-monthly-kb-article-2243 + title: Export Monthly Kb Article (support) + description: Standard workflow to export monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute export procedure on the designated kb article. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly kb article targets before running. +- name: support-export-urgent-kb-article-2244 + title: Export Urgent Kb Article (support) + description: Standard workflow to export urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and export the urgent kb article. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent kb article targets before running. +- name: support-export-secure-kb-article-2245 + title: Export Secure Kb Article (support) + description: Standard workflow to export secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to export the kb article. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure kb article targets before running. +- name: support-export-weekly-escalation-2246 + title: Export Weekly Escalation (support) + description: Standard workflow to export weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute export procedure on the designated escalation. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly escalation targets before running. +- name: support-export-monthly-escalation-2247 + title: Export Monthly Escalation (support) + description: Standard workflow to export monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and export the monthly escalation. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly escalation targets before running. +- name: support-export-urgent-escalation-2248 + title: Export Urgent Escalation (support) + description: Standard workflow to export urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to export the escalation. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent escalation targets before running. +- name: support-export-secure-escalation-2249 + title: Export Secure Escalation (support) + description: Standard workflow to export secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute export procedure on the designated escalation. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure escalation targets before running. +- name: support-export-weekly-refund-request-2250 + title: Export Weekly Refund Request (support) + description: Standard workflow to export weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and export the weekly refund request. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly refund request targets before running. +- name: support-export-monthly-refund-request-2251 + title: Export Monthly Refund Request (support) + description: Standard workflow to export monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to export the refund request. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly refund request targets before running. +- name: support-export-urgent-refund-request-2252 + title: Export Urgent Refund Request (support) + description: Standard workflow to export urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute export procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent refund request targets before running. +- name: support-export-secure-refund-request-2253 + title: Export Secure Refund Request (support) + description: Standard workflow to export secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and export the secure refund request. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure refund request targets before running. +- name: support-export-weekly-bug-report-2254 + title: Export Weekly Bug Report (support) + description: Standard workflow to export weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to export the bug report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly bug report targets before running. +- name: support-export-monthly-bug-report-2255 + title: Export Monthly Bug Report (support) + description: Standard workflow to export monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute export procedure on the designated bug report. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly bug report targets before running. +- name: support-export-urgent-bug-report-2256 + title: Export Urgent Bug Report (support) + description: Standard workflow to export urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and export the urgent bug report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent bug report targets before running. +- name: support-export-secure-bug-report-2257 + title: Export Secure Bug Report (support) + description: Standard workflow to export secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to export the bug report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure bug report targets before running. +- name: support-import-weekly-ticket-2258 + title: Import Weekly Ticket (support) + description: Standard workflow to import weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute import procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-import-monthly-ticket-2259 + title: Import Monthly Ticket (support) + description: Standard workflow to import monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and import the monthly ticket. + - Send a status update to the support team chat space. +- name: support-import-urgent-ticket-2260 + title: Import Urgent Ticket (support) + description: Standard workflow to import urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to import the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-import-secure-ticket-2261 + title: Import Secure Ticket (support) + description: Standard workflow to import secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute import procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-import-weekly-customer-record-2262 + title: Import Weekly Customer Record (support) + description: Standard workflow to import weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and import the weekly customer record. + - Notify stakeholders via email. +- name: support-import-monthly-customer-record-2263 + title: Import Monthly Customer Record (support) + description: Standard workflow to import monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to import the customer record. + - Send a status update to the support team chat space. +- name: support-import-urgent-customer-record-2264 + title: Import Urgent Customer Record (support) + description: Standard workflow to import urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute import procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-import-secure-customer-record-2265 + title: Import Secure Customer Record (support) + description: Standard workflow to import secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and import the secure customer record. + - Archive results in a secure Drive folder. +- name: support-import-weekly-kb-article-2266 + title: Import Weekly Kb Article (support) + description: Standard workflow to import weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to import the kb article. + - Notify stakeholders via email. +- name: support-import-monthly-kb-article-2267 + title: Import Monthly Kb Article (support) + description: Standard workflow to import monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute import procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-import-urgent-kb-article-2268 + title: Import Urgent Kb Article (support) + description: Standard workflow to import urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and import the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-import-secure-kb-article-2269 + title: Import Secure Kb Article (support) + description: Standard workflow to import secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to import the kb article. + - Archive results in a secure Drive folder. +- name: support-import-weekly-escalation-2270 + title: Import Weekly Escalation (support) + description: Standard workflow to import weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute import procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-import-monthly-escalation-2271 + title: Import Monthly Escalation (support) + description: Standard workflow to import monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and import the monthly escalation. + - Send a status update to the support team chat space. +- name: support-import-urgent-escalation-2272 + title: Import Urgent Escalation (support) + description: Standard workflow to import urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to import the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-import-secure-escalation-2273 + title: Import Secure Escalation (support) + description: Standard workflow to import secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute import procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-import-weekly-refund-request-2274 + title: Import Weekly Refund Request (support) + description: Standard workflow to import weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and import the weekly refund request. + - Notify stakeholders via email. +- name: support-import-monthly-refund-request-2275 + title: Import Monthly Refund Request (support) + description: Standard workflow to import monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to import the refund request. + - Send a status update to the support team chat space. +- name: support-import-urgent-refund-request-2276 + title: Import Urgent Refund Request (support) + description: Standard workflow to import urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute import procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-import-secure-refund-request-2277 + title: Import Secure Refund Request (support) + description: Standard workflow to import secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and import the secure refund request. + - Archive results in a secure Drive folder. +- name: support-import-weekly-bug-report-2278 + title: Import Weekly Bug Report (support) + description: Standard workflow to import weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to import the bug report. + - Notify stakeholders via email. +- name: support-import-monthly-bug-report-2279 + title: Import Monthly Bug Report (support) + description: Standard workflow to import monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute import procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-import-urgent-bug-report-2280 + title: Import Urgent Bug Report (support) + description: Standard workflow to import urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and import the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-import-secure-bug-report-2281 + title: Import Secure Bug Report (support) + description: Standard workflow to import secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to import the bug report. + - Archive results in a secure Drive folder. +- name: support-sync-weekly-ticket-2282 + title: Sync Weekly Ticket (support) + description: Standard workflow to sync weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute sync procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-sync-monthly-ticket-2283 + title: Sync Monthly Ticket (support) + description: Standard workflow to sync monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and sync the monthly ticket. + - Send a status update to the support team chat space. +- name: support-sync-urgent-ticket-2284 + title: Sync Urgent Ticket (support) + description: Standard workflow to sync urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to sync the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-sync-secure-ticket-2285 + title: Sync Secure Ticket (support) + description: Standard workflow to sync secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute sync procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-sync-weekly-customer-record-2286 + title: Sync Weekly Customer Record (support) + description: Standard workflow to sync weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and sync the weekly customer record. + - Notify stakeholders via email. +- name: support-sync-monthly-customer-record-2287 + title: Sync Monthly Customer Record (support) + description: Standard workflow to sync monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to sync the customer record. + - Send a status update to the support team chat space. +- name: support-sync-urgent-customer-record-2288 + title: Sync Urgent Customer Record (support) + description: Standard workflow to sync urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute sync procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-sync-secure-customer-record-2289 + title: Sync Secure Customer Record (support) + description: Standard workflow to sync secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and sync the secure customer record. + - Archive results in a secure Drive folder. +- name: support-sync-weekly-kb-article-2290 + title: Sync Weekly Kb Article (support) + description: Standard workflow to sync weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to sync the kb article. + - Notify stakeholders via email. +- name: support-sync-monthly-kb-article-2291 + title: Sync Monthly Kb Article (support) + description: Standard workflow to sync monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute sync procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-sync-urgent-kb-article-2292 + title: Sync Urgent Kb Article (support) + description: Standard workflow to sync urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and sync the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-sync-secure-kb-article-2293 + title: Sync Secure Kb Article (support) + description: Standard workflow to sync secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to sync the kb article. + - Archive results in a secure Drive folder. +- name: support-sync-weekly-escalation-2294 + title: Sync Weekly Escalation (support) + description: Standard workflow to sync weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute sync procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-sync-monthly-escalation-2295 + title: Sync Monthly Escalation (support) + description: Standard workflow to sync monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and sync the monthly escalation. + - Send a status update to the support team chat space. +- name: support-sync-urgent-escalation-2296 + title: Sync Urgent Escalation (support) + description: Standard workflow to sync urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to sync the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-sync-secure-escalation-2297 + title: Sync Secure Escalation (support) + description: Standard workflow to sync secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute sync procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-sync-weekly-refund-request-2298 + title: Sync Weekly Refund Request (support) + description: Standard workflow to sync weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and sync the weekly refund request. + - Notify stakeholders via email. +- name: support-sync-monthly-refund-request-2299 + title: Sync Monthly Refund Request (support) + description: Standard workflow to sync monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to sync the refund request. + - Send a status update to the support team chat space. +- name: support-sync-urgent-refund-request-2300 + title: Sync Urgent Refund Request (support) + description: Standard workflow to sync urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute sync procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-sync-secure-refund-request-2301 + title: Sync Secure Refund Request (support) + description: Standard workflow to sync secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and sync the secure refund request. + - Archive results in a secure Drive folder. +- name: support-sync-weekly-bug-report-2302 + title: Sync Weekly Bug Report (support) + description: Standard workflow to sync weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to sync the bug report. + - Notify stakeholders via email. +- name: support-sync-monthly-bug-report-2303 + title: Sync Monthly Bug Report (support) + description: Standard workflow to sync monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute sync procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-sync-urgent-bug-report-2304 + title: Sync Urgent Bug Report (support) + description: Standard workflow to sync urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and sync the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-sync-secure-bug-report-2305 + title: Sync Secure Bug Report (support) + description: Standard workflow to sync secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to sync the bug report. + - Archive results in a secure Drive folder. +- name: support-migrate-weekly-ticket-2306 + title: Migrate Weekly Ticket (support) + description: Standard workflow to migrate weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute migrate procedure on the designated ticket. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly ticket targets before running. +- name: support-migrate-monthly-ticket-2307 + title: Migrate Monthly Ticket (support) + description: Standard workflow to migrate monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and migrate the monthly ticket. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly ticket targets before running. +- name: support-migrate-urgent-ticket-2308 + title: Migrate Urgent Ticket (support) + description: Standard workflow to migrate urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to migrate the ticket. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent ticket targets before running. +- name: support-migrate-secure-ticket-2309 + title: Migrate Secure Ticket (support) + description: Standard workflow to migrate secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute migrate procedure on the designated ticket. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure ticket targets before running. +- name: support-migrate-weekly-customer-record-2310 + title: Migrate Weekly Customer Record (support) + description: Standard workflow to migrate weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and migrate the weekly customer record. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly customer record targets before running. +- name: support-migrate-monthly-customer-record-2311 + title: Migrate Monthly Customer Record (support) + description: Standard workflow to migrate monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to migrate the customer record. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly customer record targets before running. +- name: support-migrate-urgent-customer-record-2312 + title: Migrate Urgent Customer Record (support) + description: Standard workflow to migrate urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute migrate procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent customer record targets before running. +- name: support-migrate-secure-customer-record-2313 + title: Migrate Secure Customer Record (support) + description: Standard workflow to migrate secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and migrate the secure customer record. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure customer record targets before running. +- name: support-migrate-weekly-kb-article-2314 + title: Migrate Weekly Kb Article (support) + description: Standard workflow to migrate weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to migrate the kb article. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly kb article targets before running. +- name: support-migrate-monthly-kb-article-2315 + title: Migrate Monthly Kb Article (support) + description: Standard workflow to migrate monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute migrate procedure on the designated kb article. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly kb article targets before running. +- name: support-migrate-urgent-kb-article-2316 + title: Migrate Urgent Kb Article (support) + description: Standard workflow to migrate urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and migrate the urgent kb article. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent kb article targets before running. +- name: support-migrate-secure-kb-article-2317 + title: Migrate Secure Kb Article (support) + description: Standard workflow to migrate secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to migrate the kb article. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure kb article targets before running. +- name: support-migrate-weekly-escalation-2318 + title: Migrate Weekly Escalation (support) + description: Standard workflow to migrate weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute migrate procedure on the designated escalation. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly escalation targets before running. +- name: support-migrate-monthly-escalation-2319 + title: Migrate Monthly Escalation (support) + description: Standard workflow to migrate monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and migrate the monthly escalation. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly escalation targets before running. +- name: support-migrate-urgent-escalation-2320 + title: Migrate Urgent Escalation (support) + description: Standard workflow to migrate urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to migrate the escalation. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent escalation targets before running. +- name: support-migrate-secure-escalation-2321 + title: Migrate Secure Escalation (support) + description: Standard workflow to migrate secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute migrate procedure on the designated escalation. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure escalation targets before running. +- name: support-migrate-weekly-refund-request-2322 + title: Migrate Weekly Refund Request (support) + description: Standard workflow to migrate weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and migrate the weekly refund request. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly refund request targets before running. +- name: support-migrate-monthly-refund-request-2323 + title: Migrate Monthly Refund Request (support) + description: Standard workflow to migrate monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to migrate the refund request. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly refund request targets before running. +- name: support-migrate-urgent-refund-request-2324 + title: Migrate Urgent Refund Request (support) + description: Standard workflow to migrate urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute migrate procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent refund request targets before running. +- name: support-migrate-secure-refund-request-2325 + title: Migrate Secure Refund Request (support) + description: Standard workflow to migrate secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and migrate the secure refund request. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure refund request targets before running. +- name: support-migrate-weekly-bug-report-2326 + title: Migrate Weekly Bug Report (support) + description: Standard workflow to migrate weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to migrate the bug report. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly bug report targets before running. +- name: support-migrate-monthly-bug-report-2327 + title: Migrate Monthly Bug Report (support) + description: Standard workflow to migrate monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute migrate procedure on the designated bug report. + - Send a status update to the support team chat space. + caution: Action involves bulk data manipulation. Confirm monthly bug report targets before running. +- name: support-migrate-urgent-bug-report-2328 + title: Migrate Urgent Bug Report (support) + description: Standard workflow to migrate urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and migrate the urgent bug report. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent bug report targets before running. +- name: support-migrate-secure-bug-report-2329 + title: Migrate Secure Bug Report (support) + description: Standard workflow to migrate secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to migrate the bug report. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure bug report targets before running. +- name: support-backup-weekly-ticket-2330 + title: Backup Weekly Ticket (support) + description: Standard workflow to backup weekly ticket within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly ticket requests. + - Execute backup procedure on the designated ticket. + - Notify stakeholders via email. +- name: support-backup-monthly-ticket-2331 + title: Backup Monthly Ticket (support) + description: Standard workflow to backup monthly ticket within the support department. + category: support + services: + - sheets + steps: + - Search for monthly ticket records. + - Review and backup the monthly ticket. + - Send a status update to the support team chat space. +- name: support-backup-urgent-ticket-2332 + title: Backup Urgent Ticket (support) + description: Standard workflow to backup urgent ticket within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent ticket data. + - Apply support policies to backup the ticket. + - Log completion in the master tracking spreadsheet. +- name: support-backup-secure-ticket-2333 + title: Backup Secure Ticket (support) + description: Standard workflow to backup secure ticket within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure ticket requests. + - Execute backup procedure on the designated ticket. + - Archive results in a secure Drive folder. +- name: support-backup-weekly-customer-record-2334 + title: Backup Weekly Customer Record (support) + description: Standard workflow to backup weekly customer record within the support department. + category: support + services: + - gmail + steps: + - Search for weekly customer record records. + - Review and backup the weekly customer record. + - Notify stakeholders via email. +- name: support-backup-monthly-customer-record-2335 + title: Backup Monthly Customer Record (support) + description: Standard workflow to backup monthly customer record within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly customer record data. + - Apply support policies to backup the customer record. + - Send a status update to the support team chat space. +- name: support-backup-urgent-customer-record-2336 + title: Backup Urgent Customer Record (support) + description: Standard workflow to backup urgent customer record within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent customer record requests. + - Execute backup procedure on the designated customer record. + - Log completion in the master tracking spreadsheet. +- name: support-backup-secure-customer-record-2337 + title: Backup Secure Customer Record (support) + description: Standard workflow to backup secure customer record within the support department. + category: support + services: + - docs + steps: + - Search for secure customer record records. + - Review and backup the secure customer record. + - Archive results in a secure Drive folder. +- name: support-backup-weekly-kb-article-2338 + title: Backup Weekly Kb Article (support) + description: Standard workflow to backup weekly kb article within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly kb article data. + - Apply support policies to backup the kb article. + - Notify stakeholders via email. +- name: support-backup-monthly-kb-article-2339 + title: Backup Monthly Kb Article (support) + description: Standard workflow to backup monthly kb article within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly kb article requests. + - Execute backup procedure on the designated kb article. + - Send a status update to the support team chat space. +- name: support-backup-urgent-kb-article-2340 + title: Backup Urgent Kb Article (support) + description: Standard workflow to backup urgent kb article within the support department. + category: support + services: + - chat + steps: + - Search for urgent kb article records. + - Review and backup the urgent kb article. + - Log completion in the master tracking spreadsheet. +- name: support-backup-secure-kb-article-2341 + title: Backup Secure Kb Article (support) + description: Standard workflow to backup secure kb article within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure kb article data. + - Apply support policies to backup the kb article. + - Archive results in a secure Drive folder. +- name: support-backup-weekly-escalation-2342 + title: Backup Weekly Escalation (support) + description: Standard workflow to backup weekly escalation within the support department. + category: support + services: + - gmail + - sheets + - chat + steps: + - Check system for pending weekly escalation requests. + - Execute backup procedure on the designated escalation. + - Notify stakeholders via email. +- name: support-backup-monthly-escalation-2343 + title: Backup Monthly Escalation (support) + description: Standard workflow to backup monthly escalation within the support department. + category: support + services: + - sheets + steps: + - Search for monthly escalation records. + - Review and backup the monthly escalation. + - Send a status update to the support team chat space. +- name: support-backup-urgent-escalation-2344 + title: Backup Urgent Escalation (support) + description: Standard workflow to backup urgent escalation within the support department. + category: support + services: + - chat + - docs + steps: + - Fetch latest urgent escalation data. + - Apply support policies to backup the escalation. + - Log completion in the master tracking spreadsheet. +- name: support-backup-secure-escalation-2345 + title: Backup Secure Escalation (support) + description: Standard workflow to backup secure escalation within the support department. + category: support + services: + - docs + - gmail + - sheets + steps: + - Check system for pending secure escalation requests. + - Execute backup procedure on the designated escalation. + - Archive results in a secure Drive folder. +- name: support-backup-weekly-refund-request-2346 + title: Backup Weekly Refund Request (support) + description: Standard workflow to backup weekly refund request within the support department. + category: support + services: + - gmail + steps: + - Search for weekly refund request records. + - Review and backup the weekly refund request. + - Notify stakeholders via email. +- name: support-backup-monthly-refund-request-2347 + title: Backup Monthly Refund Request (support) + description: Standard workflow to backup monthly refund request within the support department. + category: support + services: + - sheets + - chat + steps: + - Fetch latest monthly refund request data. + - Apply support policies to backup the refund request. + - Send a status update to the support team chat space. +- name: support-backup-urgent-refund-request-2348 + title: Backup Urgent Refund Request (support) + description: Standard workflow to backup urgent refund request within the support department. + category: support + services: + - chat + - docs + - gmail + steps: + - Check system for pending urgent refund request requests. + - Execute backup procedure on the designated refund request. + - Log completion in the master tracking spreadsheet. +- name: support-backup-secure-refund-request-2349 + title: Backup Secure Refund Request (support) + description: Standard workflow to backup secure refund request within the support department. + category: support + services: + - docs + steps: + - Search for secure refund request records. + - Review and backup the secure refund request. + - Archive results in a secure Drive folder. +- name: support-backup-weekly-bug-report-2350 + title: Backup Weekly Bug Report (support) + description: Standard workflow to backup weekly bug report within the support department. + category: support + services: + - gmail + - sheets + steps: + - Fetch latest weekly bug report data. + - Apply support policies to backup the bug report. + - Notify stakeholders via email. +- name: support-backup-monthly-bug-report-2351 + title: Backup Monthly Bug Report (support) + description: Standard workflow to backup monthly bug report within the support department. + category: support + services: + - sheets + - chat + - docs + steps: + - Check system for pending monthly bug report requests. + - Execute backup procedure on the designated bug report. + - Send a status update to the support team chat space. +- name: support-backup-urgent-bug-report-2352 + title: Backup Urgent Bug Report (support) + description: Standard workflow to backup urgent bug report within the support department. + category: support + services: + - chat + steps: + - Search for urgent bug report records. + - Review and backup the urgent bug report. + - Log completion in the master tracking spreadsheet. +- name: support-backup-secure-bug-report-2353 + title: Backup Secure Bug Report (support) + description: Standard workflow to backup secure bug report within the support department. + category: support + services: + - docs + - gmail + steps: + - Fetch latest secure bug report data. + - Apply support policies to backup the bug report. + - Archive results in a secure Drive folder. +- name: operations-audit-weekly-vendor-2354 + title: Audit Weekly Vendor (operations) + description: Standard workflow to audit weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly vendor requests. + - Execute audit procedure on the designated vendor. + - Notify stakeholders via email. +- name: operations-audit-monthly-vendor-2355 + title: Audit Monthly Vendor (operations) + description: Standard workflow to audit monthly vendor within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly vendor records. + - Review and audit the monthly vendor. + - Send a status update to the operations team chat space. +- name: operations-audit-urgent-vendor-2356 + title: Audit Urgent Vendor (operations) + description: Standard workflow to audit urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent vendor data. + - Apply operations policies to audit the vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-audit-secure-vendor-2357 + title: Audit Secure Vendor (operations) + description: Standard workflow to audit secure vendor within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure vendor requests. + - Execute audit procedure on the designated vendor. + - Archive results in a secure Drive folder. +- name: operations-audit-weekly-facility-2358 + title: Audit Weekly Facility (operations) + description: Standard workflow to audit weekly facility within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly facility records. + - Review and audit the weekly facility. + - Notify stakeholders via email. +- name: operations-audit-monthly-facility-2359 + title: Audit Monthly Facility (operations) + description: Standard workflow to audit monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly facility data. + - Apply operations policies to audit the facility. + - Send a status update to the operations team chat space. +- name: operations-audit-urgent-facility-2360 + title: Audit Urgent Facility (operations) + description: Standard workflow to audit urgent facility within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent facility requests. + - Execute audit procedure on the designated facility. + - Log completion in the master tracking spreadsheet. +- name: operations-audit-secure-facility-2361 + title: Audit Secure Facility (operations) + description: Standard workflow to audit secure facility within the operations department. + category: operations + services: + - chat + steps: + - Search for secure facility records. + - Review and audit the secure facility. + - Archive results in a secure Drive folder. +- name: operations-audit-weekly-inventory-2362 + title: Audit Weekly Inventory (operations) + description: Standard workflow to audit weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly inventory data. + - Apply operations policies to audit the inventory. + - Notify stakeholders via email. +- name: operations-audit-monthly-inventory-2363 + title: Audit Monthly Inventory (operations) + description: Standard workflow to audit monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly inventory requests. + - Execute audit procedure on the designated inventory. + - Send a status update to the operations team chat space. +- name: operations-audit-urgent-inventory-2364 + title: Audit Urgent Inventory (operations) + description: Standard workflow to audit urgent inventory within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent inventory records. + - Review and audit the urgent inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-audit-secure-inventory-2365 + title: Audit Secure Inventory (operations) + description: Standard workflow to audit secure inventory within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure inventory data. + - Apply operations policies to audit the inventory. + - Archive results in a secure Drive folder. +- name: operations-audit-weekly-shipping-manifest-2366 + title: Audit Weekly Shipping Manifest (operations) + description: Standard workflow to audit weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly shipping manifest requests. + - Execute audit procedure on the designated shipping manifest. + - Notify stakeholders via email. +- name: operations-audit-monthly-shipping-manifest-2367 + title: Audit Monthly Shipping Manifest (operations) + description: Standard workflow to audit monthly shipping manifest within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly shipping manifest records. + - Review and audit the monthly shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-audit-urgent-shipping-manifest-2368 + title: Audit Urgent Shipping Manifest (operations) + description: Standard workflow to audit urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent shipping manifest data. + - Apply operations policies to audit the shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-audit-secure-shipping-manifest-2369 + title: Audit Secure Shipping Manifest (operations) + description: Standard workflow to audit secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure shipping manifest requests. + - Execute audit procedure on the designated shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-audit-weekly-safety-audit-2370 + title: Audit Weekly Safety Audit (operations) + description: Standard workflow to audit weekly safety audit within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly safety audit records. + - Review and audit the weekly safety audit. + - Notify stakeholders via email. +- name: operations-audit-monthly-safety-audit-2371 + title: Audit Monthly Safety Audit (operations) + description: Standard workflow to audit monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly safety audit data. + - Apply operations policies to audit the safety audit. + - Send a status update to the operations team chat space. +- name: operations-audit-urgent-safety-audit-2372 + title: Audit Urgent Safety Audit (operations) + description: Standard workflow to audit urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent safety audit requests. + - Execute audit procedure on the designated safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-audit-secure-safety-audit-2373 + title: Audit Secure Safety Audit (operations) + description: Standard workflow to audit secure safety audit within the operations department. + category: operations + services: + - chat + steps: + - Search for secure safety audit records. + - Review and audit the secure safety audit. + - Archive results in a secure Drive folder. +- name: operations-onboard-weekly-vendor-2374 + title: Onboard Weekly Vendor (operations) + description: Standard workflow to onboard weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly vendor data. + - Apply operations policies to onboard the vendor. + - Notify stakeholders via email. +- name: operations-onboard-monthly-vendor-2375 + title: Onboard Monthly Vendor (operations) + description: Standard workflow to onboard monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly vendor requests. + - Execute onboard procedure on the designated vendor. + - Send a status update to the operations team chat space. +- name: operations-onboard-urgent-vendor-2376 + title: Onboard Urgent Vendor (operations) + description: Standard workflow to onboard urgent vendor within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent vendor records. + - Review and onboard the urgent vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-onboard-secure-vendor-2377 + title: Onboard Secure Vendor (operations) + description: Standard workflow to onboard secure vendor within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure vendor data. + - Apply operations policies to onboard the vendor. + - Archive results in a secure Drive folder. +- name: operations-onboard-weekly-facility-2378 + title: Onboard Weekly Facility (operations) + description: Standard workflow to onboard weekly facility within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly facility requests. + - Execute onboard procedure on the designated facility. + - Notify stakeholders via email. +- name: operations-onboard-monthly-facility-2379 + title: Onboard Monthly Facility (operations) + description: Standard workflow to onboard monthly facility within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly facility records. + - Review and onboard the monthly facility. + - Send a status update to the operations team chat space. +- name: operations-onboard-urgent-facility-2380 + title: Onboard Urgent Facility (operations) + description: Standard workflow to onboard urgent facility within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent facility data. + - Apply operations policies to onboard the facility. + - Log completion in the master tracking spreadsheet. +- name: operations-onboard-secure-facility-2381 + title: Onboard Secure Facility (operations) + description: Standard workflow to onboard secure facility within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure facility requests. + - Execute onboard procedure on the designated facility. + - Archive results in a secure Drive folder. +- name: operations-onboard-weekly-inventory-2382 + title: Onboard Weekly Inventory (operations) + description: Standard workflow to onboard weekly inventory within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly inventory records. + - Review and onboard the weekly inventory. + - Notify stakeholders via email. +- name: operations-onboard-monthly-inventory-2383 + title: Onboard Monthly Inventory (operations) + description: Standard workflow to onboard monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly inventory data. + - Apply operations policies to onboard the inventory. + - Send a status update to the operations team chat space. +- name: operations-onboard-urgent-inventory-2384 + title: Onboard Urgent Inventory (operations) + description: Standard workflow to onboard urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent inventory requests. + - Execute onboard procedure on the designated inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-onboard-secure-inventory-2385 + title: Onboard Secure Inventory (operations) + description: Standard workflow to onboard secure inventory within the operations department. + category: operations + services: + - chat + steps: + - Search for secure inventory records. + - Review and onboard the secure inventory. + - Archive results in a secure Drive folder. +- name: operations-onboard-weekly-shipping-manifest-2386 + title: Onboard Weekly Shipping Manifest (operations) + description: Standard workflow to onboard weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly shipping manifest data. + - Apply operations policies to onboard the shipping manifest. + - Notify stakeholders via email. +- name: operations-onboard-monthly-shipping-manifest-2387 + title: Onboard Monthly Shipping Manifest (operations) + description: Standard workflow to onboard monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly shipping manifest requests. + - Execute onboard procedure on the designated shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-onboard-urgent-shipping-manifest-2388 + title: Onboard Urgent Shipping Manifest (operations) + description: Standard workflow to onboard urgent shipping manifest within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent shipping manifest records. + - Review and onboard the urgent shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-onboard-secure-shipping-manifest-2389 + title: Onboard Secure Shipping Manifest (operations) + description: Standard workflow to onboard secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure shipping manifest data. + - Apply operations policies to onboard the shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-onboard-weekly-safety-audit-2390 + title: Onboard Weekly Safety Audit (operations) + description: Standard workflow to onboard weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly safety audit requests. + - Execute onboard procedure on the designated safety audit. + - Notify stakeholders via email. +- name: operations-onboard-monthly-safety-audit-2391 + title: Onboard Monthly Safety Audit (operations) + description: Standard workflow to onboard monthly safety audit within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly safety audit records. + - Review and onboard the monthly safety audit. + - Send a status update to the operations team chat space. +- name: operations-onboard-urgent-safety-audit-2392 + title: Onboard Urgent Safety Audit (operations) + description: Standard workflow to onboard urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent safety audit data. + - Apply operations policies to onboard the safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-onboard-secure-safety-audit-2393 + title: Onboard Secure Safety Audit (operations) + description: Standard workflow to onboard secure safety audit within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure safety audit requests. + - Execute onboard procedure on the designated safety audit. + - Archive results in a secure Drive folder. +- name: operations-review-weekly-vendor-2394 + title: Review Weekly Vendor (operations) + description: Standard workflow to review weekly vendor within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly vendor records. + - Review and review the weekly vendor. + - Notify stakeholders via email. +- name: operations-review-monthly-vendor-2395 + title: Review Monthly Vendor (operations) + description: Standard workflow to review monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly vendor data. + - Apply operations policies to review the vendor. + - Send a status update to the operations team chat space. +- name: operations-review-urgent-vendor-2396 + title: Review Urgent Vendor (operations) + description: Standard workflow to review urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent vendor requests. + - Execute review procedure on the designated vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-review-secure-vendor-2397 + title: Review Secure Vendor (operations) + description: Standard workflow to review secure vendor within the operations department. + category: operations + services: + - chat + steps: + - Search for secure vendor records. + - Review and review the secure vendor. + - Archive results in a secure Drive folder. +- name: operations-review-weekly-facility-2398 + title: Review Weekly Facility (operations) + description: Standard workflow to review weekly facility within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly facility data. + - Apply operations policies to review the facility. + - Notify stakeholders via email. +- name: operations-review-monthly-facility-2399 + title: Review Monthly Facility (operations) + description: Standard workflow to review monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly facility requests. + - Execute review procedure on the designated facility. + - Send a status update to the operations team chat space. +- name: operations-review-urgent-facility-2400 + title: Review Urgent Facility (operations) + description: Standard workflow to review urgent facility within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent facility records. + - Review and review the urgent facility. + - Log completion in the master tracking spreadsheet. +- name: operations-review-secure-facility-2401 + title: Review Secure Facility (operations) + description: Standard workflow to review secure facility within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure facility data. + - Apply operations policies to review the facility. + - Archive results in a secure Drive folder. +- name: operations-review-weekly-inventory-2402 + title: Review Weekly Inventory (operations) + description: Standard workflow to review weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly inventory requests. + - Execute review procedure on the designated inventory. + - Notify stakeholders via email. +- name: operations-review-monthly-inventory-2403 + title: Review Monthly Inventory (operations) + description: Standard workflow to review monthly inventory within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly inventory records. + - Review and review the monthly inventory. + - Send a status update to the operations team chat space. +- name: operations-review-urgent-inventory-2404 + title: Review Urgent Inventory (operations) + description: Standard workflow to review urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent inventory data. + - Apply operations policies to review the inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-review-secure-inventory-2405 + title: Review Secure Inventory (operations) + description: Standard workflow to review secure inventory within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure inventory requests. + - Execute review procedure on the designated inventory. + - Archive results in a secure Drive folder. +- name: operations-review-weekly-shipping-manifest-2406 + title: Review Weekly Shipping Manifest (operations) + description: Standard workflow to review weekly shipping manifest within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly shipping manifest records. + - Review and review the weekly shipping manifest. + - Notify stakeholders via email. +- name: operations-review-monthly-shipping-manifest-2407 + title: Review Monthly Shipping Manifest (operations) + description: Standard workflow to review monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly shipping manifest data. + - Apply operations policies to review the shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-review-urgent-shipping-manifest-2408 + title: Review Urgent Shipping Manifest (operations) + description: Standard workflow to review urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent shipping manifest requests. + - Execute review procedure on the designated shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-review-secure-shipping-manifest-2409 + title: Review Secure Shipping Manifest (operations) + description: Standard workflow to review secure shipping manifest within the operations department. + category: operations + services: + - chat + steps: + - Search for secure shipping manifest records. + - Review and review the secure shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-review-weekly-safety-audit-2410 + title: Review Weekly Safety Audit (operations) + description: Standard workflow to review weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly safety audit data. + - Apply operations policies to review the safety audit. + - Notify stakeholders via email. +- name: operations-review-monthly-safety-audit-2411 + title: Review Monthly Safety Audit (operations) + description: Standard workflow to review monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly safety audit requests. + - Execute review procedure on the designated safety audit. + - Send a status update to the operations team chat space. +- name: operations-review-urgent-safety-audit-2412 + title: Review Urgent Safety Audit (operations) + description: Standard workflow to review urgent safety audit within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent safety audit records. + - Review and review the urgent safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-review-secure-safety-audit-2413 + title: Review Secure Safety Audit (operations) + description: Standard workflow to review secure safety audit within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure safety audit data. + - Apply operations policies to review the safety audit. + - Archive results in a secure Drive folder. +- name: operations-approve-weekly-vendor-2414 + title: Approve Weekly Vendor (operations) + description: Standard workflow to approve weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly vendor requests. + - Execute approve procedure on the designated vendor. + - Notify stakeholders via email. +- name: operations-approve-monthly-vendor-2415 + title: Approve Monthly Vendor (operations) + description: Standard workflow to approve monthly vendor within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly vendor records. + - Review and approve the monthly vendor. + - Send a status update to the operations team chat space. +- name: operations-approve-urgent-vendor-2416 + title: Approve Urgent Vendor (operations) + description: Standard workflow to approve urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent vendor data. + - Apply operations policies to approve the vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-approve-secure-vendor-2417 + title: Approve Secure Vendor (operations) + description: Standard workflow to approve secure vendor within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure vendor requests. + - Execute approve procedure on the designated vendor. + - Archive results in a secure Drive folder. +- name: operations-approve-weekly-facility-2418 + title: Approve Weekly Facility (operations) + description: Standard workflow to approve weekly facility within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly facility records. + - Review and approve the weekly facility. + - Notify stakeholders via email. +- name: operations-approve-monthly-facility-2419 + title: Approve Monthly Facility (operations) + description: Standard workflow to approve monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly facility data. + - Apply operations policies to approve the facility. + - Send a status update to the operations team chat space. +- name: operations-approve-urgent-facility-2420 + title: Approve Urgent Facility (operations) + description: Standard workflow to approve urgent facility within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent facility requests. + - Execute approve procedure on the designated facility. + - Log completion in the master tracking spreadsheet. +- name: operations-approve-secure-facility-2421 + title: Approve Secure Facility (operations) + description: Standard workflow to approve secure facility within the operations department. + category: operations + services: + - chat + steps: + - Search for secure facility records. + - Review and approve the secure facility. + - Archive results in a secure Drive folder. +- name: operations-approve-weekly-inventory-2422 + title: Approve Weekly Inventory (operations) + description: Standard workflow to approve weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly inventory data. + - Apply operations policies to approve the inventory. + - Notify stakeholders via email. +- name: operations-approve-monthly-inventory-2423 + title: Approve Monthly Inventory (operations) + description: Standard workflow to approve monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly inventory requests. + - Execute approve procedure on the designated inventory. + - Send a status update to the operations team chat space. +- name: operations-approve-urgent-inventory-2424 + title: Approve Urgent Inventory (operations) + description: Standard workflow to approve urgent inventory within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent inventory records. + - Review and approve the urgent inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-approve-secure-inventory-2425 + title: Approve Secure Inventory (operations) + description: Standard workflow to approve secure inventory within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure inventory data. + - Apply operations policies to approve the inventory. + - Archive results in a secure Drive folder. +- name: operations-approve-weekly-shipping-manifest-2426 + title: Approve Weekly Shipping Manifest (operations) + description: Standard workflow to approve weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly shipping manifest requests. + - Execute approve procedure on the designated shipping manifest. + - Notify stakeholders via email. +- name: operations-approve-monthly-shipping-manifest-2427 + title: Approve Monthly Shipping Manifest (operations) + description: Standard workflow to approve monthly shipping manifest within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly shipping manifest records. + - Review and approve the monthly shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-approve-urgent-shipping-manifest-2428 + title: Approve Urgent Shipping Manifest (operations) + description: Standard workflow to approve urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent shipping manifest data. + - Apply operations policies to approve the shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-approve-secure-shipping-manifest-2429 + title: Approve Secure Shipping Manifest (operations) + description: Standard workflow to approve secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure shipping manifest requests. + - Execute approve procedure on the designated shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-approve-weekly-safety-audit-2430 + title: Approve Weekly Safety Audit (operations) + description: Standard workflow to approve weekly safety audit within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly safety audit records. + - Review and approve the weekly safety audit. + - Notify stakeholders via email. +- name: operations-approve-monthly-safety-audit-2431 + title: Approve Monthly Safety Audit (operations) + description: Standard workflow to approve monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly safety audit data. + - Apply operations policies to approve the safety audit. + - Send a status update to the operations team chat space. +- name: operations-approve-urgent-safety-audit-2432 + title: Approve Urgent Safety Audit (operations) + description: Standard workflow to approve urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent safety audit requests. + - Execute approve procedure on the designated safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-approve-secure-safety-audit-2433 + title: Approve Secure Safety Audit (operations) + description: Standard workflow to approve secure safety audit within the operations department. + category: operations + services: + - chat + steps: + - Search for secure safety audit records. + - Review and approve the secure safety audit. + - Archive results in a secure Drive folder. +- name: operations-share-weekly-vendor-2434 + title: Share Weekly Vendor (operations) + description: Standard workflow to share weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly vendor data. + - Apply operations policies to share the vendor. + - Notify stakeholders via email. +- name: operations-share-monthly-vendor-2435 + title: Share Monthly Vendor (operations) + description: Standard workflow to share monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly vendor requests. + - Execute share procedure on the designated vendor. + - Send a status update to the operations team chat space. +- name: operations-share-urgent-vendor-2436 + title: Share Urgent Vendor (operations) + description: Standard workflow to share urgent vendor within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent vendor records. + - Review and share the urgent vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-share-secure-vendor-2437 + title: Share Secure Vendor (operations) + description: Standard workflow to share secure vendor within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure vendor data. + - Apply operations policies to share the vendor. + - Archive results in a secure Drive folder. +- name: operations-share-weekly-facility-2438 + title: Share Weekly Facility (operations) + description: Standard workflow to share weekly facility within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly facility requests. + - Execute share procedure on the designated facility. + - Notify stakeholders via email. +- name: operations-share-monthly-facility-2439 + title: Share Monthly Facility (operations) + description: Standard workflow to share monthly facility within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly facility records. + - Review and share the monthly facility. + - Send a status update to the operations team chat space. +- name: operations-share-urgent-facility-2440 + title: Share Urgent Facility (operations) + description: Standard workflow to share urgent facility within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent facility data. + - Apply operations policies to share the facility. + - Log completion in the master tracking spreadsheet. +- name: operations-share-secure-facility-2441 + title: Share Secure Facility (operations) + description: Standard workflow to share secure facility within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure facility requests. + - Execute share procedure on the designated facility. + - Archive results in a secure Drive folder. +- name: operations-share-weekly-inventory-2442 + title: Share Weekly Inventory (operations) + description: Standard workflow to share weekly inventory within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly inventory records. + - Review and share the weekly inventory. + - Notify stakeholders via email. +- name: operations-share-monthly-inventory-2443 + title: Share Monthly Inventory (operations) + description: Standard workflow to share monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly inventory data. + - Apply operations policies to share the inventory. + - Send a status update to the operations team chat space. +- name: operations-share-urgent-inventory-2444 + title: Share Urgent Inventory (operations) + description: Standard workflow to share urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent inventory requests. + - Execute share procedure on the designated inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-share-secure-inventory-2445 + title: Share Secure Inventory (operations) + description: Standard workflow to share secure inventory within the operations department. + category: operations + services: + - chat + steps: + - Search for secure inventory records. + - Review and share the secure inventory. + - Archive results in a secure Drive folder. +- name: operations-share-weekly-shipping-manifest-2446 + title: Share Weekly Shipping Manifest (operations) + description: Standard workflow to share weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly shipping manifest data. + - Apply operations policies to share the shipping manifest. + - Notify stakeholders via email. +- name: operations-share-monthly-shipping-manifest-2447 + title: Share Monthly Shipping Manifest (operations) + description: Standard workflow to share monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly shipping manifest requests. + - Execute share procedure on the designated shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-share-urgent-shipping-manifest-2448 + title: Share Urgent Shipping Manifest (operations) + description: Standard workflow to share urgent shipping manifest within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent shipping manifest records. + - Review and share the urgent shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-share-secure-shipping-manifest-2449 + title: Share Secure Shipping Manifest (operations) + description: Standard workflow to share secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure shipping manifest data. + - Apply operations policies to share the shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-share-weekly-safety-audit-2450 + title: Share Weekly Safety Audit (operations) + description: Standard workflow to share weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly safety audit requests. + - Execute share procedure on the designated safety audit. + - Notify stakeholders via email. +- name: operations-share-monthly-safety-audit-2451 + title: Share Monthly Safety Audit (operations) + description: Standard workflow to share monthly safety audit within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly safety audit records. + - Review and share the monthly safety audit. + - Send a status update to the operations team chat space. +- name: operations-share-urgent-safety-audit-2452 + title: Share Urgent Safety Audit (operations) + description: Standard workflow to share urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent safety audit data. + - Apply operations policies to share the safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-share-secure-safety-audit-2453 + title: Share Secure Safety Audit (operations) + description: Standard workflow to share secure safety audit within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure safety audit requests. + - Execute share procedure on the designated safety audit. + - Archive results in a secure Drive folder. +- name: operations-publish-weekly-vendor-2454 + title: Publish Weekly Vendor (operations) + description: Standard workflow to publish weekly vendor within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly vendor records. + - Review and publish the weekly vendor. + - Notify stakeholders via email. +- name: operations-publish-monthly-vendor-2455 + title: Publish Monthly Vendor (operations) + description: Standard workflow to publish monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly vendor data. + - Apply operations policies to publish the vendor. + - Send a status update to the operations team chat space. +- name: operations-publish-urgent-vendor-2456 + title: Publish Urgent Vendor (operations) + description: Standard workflow to publish urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent vendor requests. + - Execute publish procedure on the designated vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-publish-secure-vendor-2457 + title: Publish Secure Vendor (operations) + description: Standard workflow to publish secure vendor within the operations department. + category: operations + services: + - chat + steps: + - Search for secure vendor records. + - Review and publish the secure vendor. + - Archive results in a secure Drive folder. +- name: operations-publish-weekly-facility-2458 + title: Publish Weekly Facility (operations) + description: Standard workflow to publish weekly facility within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly facility data. + - Apply operations policies to publish the facility. + - Notify stakeholders via email. +- name: operations-publish-monthly-facility-2459 + title: Publish Monthly Facility (operations) + description: Standard workflow to publish monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly facility requests. + - Execute publish procedure on the designated facility. + - Send a status update to the operations team chat space. +- name: operations-publish-urgent-facility-2460 + title: Publish Urgent Facility (operations) + description: Standard workflow to publish urgent facility within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent facility records. + - Review and publish the urgent facility. + - Log completion in the master tracking spreadsheet. +- name: operations-publish-secure-facility-2461 + title: Publish Secure Facility (operations) + description: Standard workflow to publish secure facility within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure facility data. + - Apply operations policies to publish the facility. + - Archive results in a secure Drive folder. +- name: operations-publish-weekly-inventory-2462 + title: Publish Weekly Inventory (operations) + description: Standard workflow to publish weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly inventory requests. + - Execute publish procedure on the designated inventory. + - Notify stakeholders via email. +- name: operations-publish-monthly-inventory-2463 + title: Publish Monthly Inventory (operations) + description: Standard workflow to publish monthly inventory within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly inventory records. + - Review and publish the monthly inventory. + - Send a status update to the operations team chat space. +- name: operations-publish-urgent-inventory-2464 + title: Publish Urgent Inventory (operations) + description: Standard workflow to publish urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent inventory data. + - Apply operations policies to publish the inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-publish-secure-inventory-2465 + title: Publish Secure Inventory (operations) + description: Standard workflow to publish secure inventory within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure inventory requests. + - Execute publish procedure on the designated inventory. + - Archive results in a secure Drive folder. +- name: operations-publish-weekly-shipping-manifest-2466 + title: Publish Weekly Shipping Manifest (operations) + description: Standard workflow to publish weekly shipping manifest within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly shipping manifest records. + - Review and publish the weekly shipping manifest. + - Notify stakeholders via email. +- name: operations-publish-monthly-shipping-manifest-2467 + title: Publish Monthly Shipping Manifest (operations) + description: Standard workflow to publish monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly shipping manifest data. + - Apply operations policies to publish the shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-publish-urgent-shipping-manifest-2468 + title: Publish Urgent Shipping Manifest (operations) + description: Standard workflow to publish urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent shipping manifest requests. + - Execute publish procedure on the designated shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-publish-secure-shipping-manifest-2469 + title: Publish Secure Shipping Manifest (operations) + description: Standard workflow to publish secure shipping manifest within the operations department. + category: operations + services: + - chat + steps: + - Search for secure shipping manifest records. + - Review and publish the secure shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-publish-weekly-safety-audit-2470 + title: Publish Weekly Safety Audit (operations) + description: Standard workflow to publish weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly safety audit data. + - Apply operations policies to publish the safety audit. + - Notify stakeholders via email. +- name: operations-publish-monthly-safety-audit-2471 + title: Publish Monthly Safety Audit (operations) + description: Standard workflow to publish monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly safety audit requests. + - Execute publish procedure on the designated safety audit. + - Send a status update to the operations team chat space. +- name: operations-publish-urgent-safety-audit-2472 + title: Publish Urgent Safety Audit (operations) + description: Standard workflow to publish urgent safety audit within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent safety audit records. + - Review and publish the urgent safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-publish-secure-safety-audit-2473 + title: Publish Secure Safety Audit (operations) + description: Standard workflow to publish secure safety audit within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure safety audit data. + - Apply operations policies to publish the safety audit. + - Archive results in a secure Drive folder. +- name: operations-archive-weekly-vendor-2474 + title: Archive Weekly Vendor (operations) + description: Standard workflow to archive weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly vendor requests. + - Execute archive procedure on the designated vendor. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly vendor targets before running. +- name: operations-archive-monthly-vendor-2475 + title: Archive Monthly Vendor (operations) + description: Standard workflow to archive monthly vendor within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly vendor records. + - Review and archive the monthly vendor. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly vendor targets before running. +- name: operations-archive-urgent-vendor-2476 + title: Archive Urgent Vendor (operations) + description: Standard workflow to archive urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent vendor data. + - Apply operations policies to archive the vendor. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent vendor targets before running. +- name: operations-archive-secure-vendor-2477 + title: Archive Secure Vendor (operations) + description: Standard workflow to archive secure vendor within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure vendor requests. + - Execute archive procedure on the designated vendor. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure vendor targets before running. +- name: operations-archive-weekly-facility-2478 + title: Archive Weekly Facility (operations) + description: Standard workflow to archive weekly facility within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly facility records. + - Review and archive the weekly facility. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly facility targets before running. +- name: operations-archive-monthly-facility-2479 + title: Archive Monthly Facility (operations) + description: Standard workflow to archive monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly facility data. + - Apply operations policies to archive the facility. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly facility targets before running. +- name: operations-archive-urgent-facility-2480 + title: Archive Urgent Facility (operations) + description: Standard workflow to archive urgent facility within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent facility requests. + - Execute archive procedure on the designated facility. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent facility targets before running. +- name: operations-archive-secure-facility-2481 + title: Archive Secure Facility (operations) + description: Standard workflow to archive secure facility within the operations department. + category: operations + services: + - chat + steps: + - Search for secure facility records. + - Review and archive the secure facility. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure facility targets before running. +- name: operations-archive-weekly-inventory-2482 + title: Archive Weekly Inventory (operations) + description: Standard workflow to archive weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly inventory data. + - Apply operations policies to archive the inventory. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly inventory targets before running. +- name: operations-archive-monthly-inventory-2483 + title: Archive Monthly Inventory (operations) + description: Standard workflow to archive monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly inventory requests. + - Execute archive procedure on the designated inventory. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly inventory targets before running. +- name: operations-archive-urgent-inventory-2484 + title: Archive Urgent Inventory (operations) + description: Standard workflow to archive urgent inventory within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent inventory records. + - Review and archive the urgent inventory. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent inventory targets before running. +- name: operations-archive-secure-inventory-2485 + title: Archive Secure Inventory (operations) + description: Standard workflow to archive secure inventory within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure inventory data. + - Apply operations policies to archive the inventory. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure inventory targets before running. +- name: operations-archive-weekly-shipping-manifest-2486 + title: Archive Weekly Shipping Manifest (operations) + description: Standard workflow to archive weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly shipping manifest requests. + - Execute archive procedure on the designated shipping manifest. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly shipping manifest targets before running. +- name: operations-archive-monthly-shipping-manifest-2487 + title: Archive Monthly Shipping Manifest (operations) + description: Standard workflow to archive monthly shipping manifest within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly shipping manifest records. + - Review and archive the monthly shipping manifest. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly shipping manifest targets before running. +- name: operations-archive-urgent-shipping-manifest-2488 + title: Archive Urgent Shipping Manifest (operations) + description: Standard workflow to archive urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent shipping manifest data. + - Apply operations policies to archive the shipping manifest. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent shipping manifest targets before running. +- name: operations-archive-secure-shipping-manifest-2489 + title: Archive Secure Shipping Manifest (operations) + description: Standard workflow to archive secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure shipping manifest requests. + - Execute archive procedure on the designated shipping manifest. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure shipping manifest targets before running. +- name: operations-archive-weekly-safety-audit-2490 + title: Archive Weekly Safety Audit (operations) + description: Standard workflow to archive weekly safety audit within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly safety audit records. + - Review and archive the weekly safety audit. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly safety audit targets before running. +- name: operations-archive-monthly-safety-audit-2491 + title: Archive Monthly Safety Audit (operations) + description: Standard workflow to archive monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly safety audit data. + - Apply operations policies to archive the safety audit. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly safety audit targets before running. +- name: operations-archive-urgent-safety-audit-2492 + title: Archive Urgent Safety Audit (operations) + description: Standard workflow to archive urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent safety audit requests. + - Execute archive procedure on the designated safety audit. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent safety audit targets before running. +- name: operations-archive-secure-safety-audit-2493 + title: Archive Secure Safety Audit (operations) + description: Standard workflow to archive secure safety audit within the operations department. + category: operations + services: + - chat + steps: + - Search for secure safety audit records. + - Review and archive the secure safety audit. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure safety audit targets before running. +- name: operations-export-weekly-vendor-2494 + title: Export Weekly Vendor (operations) + description: Standard workflow to export weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly vendor data. + - Apply operations policies to export the vendor. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly vendor targets before running. +- name: operations-export-monthly-vendor-2495 + title: Export Monthly Vendor (operations) + description: Standard workflow to export monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly vendor requests. + - Execute export procedure on the designated vendor. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly vendor targets before running. +- name: operations-export-urgent-vendor-2496 + title: Export Urgent Vendor (operations) + description: Standard workflow to export urgent vendor within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent vendor records. + - Review and export the urgent vendor. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent vendor targets before running. +- name: operations-export-secure-vendor-2497 + title: Export Secure Vendor (operations) + description: Standard workflow to export secure vendor within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure vendor data. + - Apply operations policies to export the vendor. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure vendor targets before running. +- name: operations-export-weekly-facility-2498 + title: Export Weekly Facility (operations) + description: Standard workflow to export weekly facility within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly facility requests. + - Execute export procedure on the designated facility. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly facility targets before running. +- name: operations-export-monthly-facility-2499 + title: Export Monthly Facility (operations) + description: Standard workflow to export monthly facility within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly facility records. + - Review and export the monthly facility. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly facility targets before running. +- name: operations-export-urgent-facility-2500 + title: Export Urgent Facility (operations) + description: Standard workflow to export urgent facility within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent facility data. + - Apply operations policies to export the facility. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent facility targets before running. +- name: operations-export-secure-facility-2501 + title: Export Secure Facility (operations) + description: Standard workflow to export secure facility within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure facility requests. + - Execute export procedure on the designated facility. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure facility targets before running. +- name: operations-export-weekly-inventory-2502 + title: Export Weekly Inventory (operations) + description: Standard workflow to export weekly inventory within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly inventory records. + - Review and export the weekly inventory. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly inventory targets before running. +- name: operations-export-monthly-inventory-2503 + title: Export Monthly Inventory (operations) + description: Standard workflow to export monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly inventory data. + - Apply operations policies to export the inventory. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly inventory targets before running. +- name: operations-export-urgent-inventory-2504 + title: Export Urgent Inventory (operations) + description: Standard workflow to export urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent inventory requests. + - Execute export procedure on the designated inventory. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent inventory targets before running. +- name: operations-export-secure-inventory-2505 + title: Export Secure Inventory (operations) + description: Standard workflow to export secure inventory within the operations department. + category: operations + services: + - chat + steps: + - Search for secure inventory records. + - Review and export the secure inventory. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure inventory targets before running. +- name: operations-export-weekly-shipping-manifest-2506 + title: Export Weekly Shipping Manifest (operations) + description: Standard workflow to export weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly shipping manifest data. + - Apply operations policies to export the shipping manifest. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly shipping manifest targets before running. +- name: operations-export-monthly-shipping-manifest-2507 + title: Export Monthly Shipping Manifest (operations) + description: Standard workflow to export monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly shipping manifest requests. + - Execute export procedure on the designated shipping manifest. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly shipping manifest targets before running. +- name: operations-export-urgent-shipping-manifest-2508 + title: Export Urgent Shipping Manifest (operations) + description: Standard workflow to export urgent shipping manifest within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent shipping manifest records. + - Review and export the urgent shipping manifest. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent shipping manifest targets before running. +- name: operations-export-secure-shipping-manifest-2509 + title: Export Secure Shipping Manifest (operations) + description: Standard workflow to export secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure shipping manifest data. + - Apply operations policies to export the shipping manifest. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure shipping manifest targets before running. +- name: operations-export-weekly-safety-audit-2510 + title: Export Weekly Safety Audit (operations) + description: Standard workflow to export weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly safety audit requests. + - Execute export procedure on the designated safety audit. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly safety audit targets before running. +- name: operations-export-monthly-safety-audit-2511 + title: Export Monthly Safety Audit (operations) + description: Standard workflow to export monthly safety audit within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly safety audit records. + - Review and export the monthly safety audit. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly safety audit targets before running. +- name: operations-export-urgent-safety-audit-2512 + title: Export Urgent Safety Audit (operations) + description: Standard workflow to export urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent safety audit data. + - Apply operations policies to export the safety audit. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent safety audit targets before running. +- name: operations-export-secure-safety-audit-2513 + title: Export Secure Safety Audit (operations) + description: Standard workflow to export secure safety audit within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure safety audit requests. + - Execute export procedure on the designated safety audit. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure safety audit targets before running. +- name: operations-import-weekly-vendor-2514 + title: Import Weekly Vendor (operations) + description: Standard workflow to import weekly vendor within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly vendor records. + - Review and import the weekly vendor. + - Notify stakeholders via email. +- name: operations-import-monthly-vendor-2515 + title: Import Monthly Vendor (operations) + description: Standard workflow to import monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly vendor data. + - Apply operations policies to import the vendor. + - Send a status update to the operations team chat space. +- name: operations-import-urgent-vendor-2516 + title: Import Urgent Vendor (operations) + description: Standard workflow to import urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent vendor requests. + - Execute import procedure on the designated vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-import-secure-vendor-2517 + title: Import Secure Vendor (operations) + description: Standard workflow to import secure vendor within the operations department. + category: operations + services: + - chat + steps: + - Search for secure vendor records. + - Review and import the secure vendor. + - Archive results in a secure Drive folder. +- name: operations-import-weekly-facility-2518 + title: Import Weekly Facility (operations) + description: Standard workflow to import weekly facility within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly facility data. + - Apply operations policies to import the facility. + - Notify stakeholders via email. +- name: operations-import-monthly-facility-2519 + title: Import Monthly Facility (operations) + description: Standard workflow to import monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly facility requests. + - Execute import procedure on the designated facility. + - Send a status update to the operations team chat space. +- name: operations-import-urgent-facility-2520 + title: Import Urgent Facility (operations) + description: Standard workflow to import urgent facility within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent facility records. + - Review and import the urgent facility. + - Log completion in the master tracking spreadsheet. +- name: operations-import-secure-facility-2521 + title: Import Secure Facility (operations) + description: Standard workflow to import secure facility within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure facility data. + - Apply operations policies to import the facility. + - Archive results in a secure Drive folder. +- name: operations-import-weekly-inventory-2522 + title: Import Weekly Inventory (operations) + description: Standard workflow to import weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly inventory requests. + - Execute import procedure on the designated inventory. + - Notify stakeholders via email. +- name: operations-import-monthly-inventory-2523 + title: Import Monthly Inventory (operations) + description: Standard workflow to import monthly inventory within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly inventory records. + - Review and import the monthly inventory. + - Send a status update to the operations team chat space. +- name: operations-import-urgent-inventory-2524 + title: Import Urgent Inventory (operations) + description: Standard workflow to import urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent inventory data. + - Apply operations policies to import the inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-import-secure-inventory-2525 + title: Import Secure Inventory (operations) + description: Standard workflow to import secure inventory within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure inventory requests. + - Execute import procedure on the designated inventory. + - Archive results in a secure Drive folder. +- name: operations-import-weekly-shipping-manifest-2526 + title: Import Weekly Shipping Manifest (operations) + description: Standard workflow to import weekly shipping manifest within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly shipping manifest records. + - Review and import the weekly shipping manifest. + - Notify stakeholders via email. +- name: operations-import-monthly-shipping-manifest-2527 + title: Import Monthly Shipping Manifest (operations) + description: Standard workflow to import monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly shipping manifest data. + - Apply operations policies to import the shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-import-urgent-shipping-manifest-2528 + title: Import Urgent Shipping Manifest (operations) + description: Standard workflow to import urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent shipping manifest requests. + - Execute import procedure on the designated shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-import-secure-shipping-manifest-2529 + title: Import Secure Shipping Manifest (operations) + description: Standard workflow to import secure shipping manifest within the operations department. + category: operations + services: + - chat + steps: + - Search for secure shipping manifest records. + - Review and import the secure shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-import-weekly-safety-audit-2530 + title: Import Weekly Safety Audit (operations) + description: Standard workflow to import weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly safety audit data. + - Apply operations policies to import the safety audit. + - Notify stakeholders via email. +- name: operations-import-monthly-safety-audit-2531 + title: Import Monthly Safety Audit (operations) + description: Standard workflow to import monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly safety audit requests. + - Execute import procedure on the designated safety audit. + - Send a status update to the operations team chat space. +- name: operations-import-urgent-safety-audit-2532 + title: Import Urgent Safety Audit (operations) + description: Standard workflow to import urgent safety audit within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent safety audit records. + - Review and import the urgent safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-import-secure-safety-audit-2533 + title: Import Secure Safety Audit (operations) + description: Standard workflow to import secure safety audit within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure safety audit data. + - Apply operations policies to import the safety audit. + - Archive results in a secure Drive folder. +- name: operations-sync-weekly-vendor-2534 + title: Sync Weekly Vendor (operations) + description: Standard workflow to sync weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly vendor requests. + - Execute sync procedure on the designated vendor. + - Notify stakeholders via email. +- name: operations-sync-monthly-vendor-2535 + title: Sync Monthly Vendor (operations) + description: Standard workflow to sync monthly vendor within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly vendor records. + - Review and sync the monthly vendor. + - Send a status update to the operations team chat space. +- name: operations-sync-urgent-vendor-2536 + title: Sync Urgent Vendor (operations) + description: Standard workflow to sync urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent vendor data. + - Apply operations policies to sync the vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-sync-secure-vendor-2537 + title: Sync Secure Vendor (operations) + description: Standard workflow to sync secure vendor within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure vendor requests. + - Execute sync procedure on the designated vendor. + - Archive results in a secure Drive folder. +- name: operations-sync-weekly-facility-2538 + title: Sync Weekly Facility (operations) + description: Standard workflow to sync weekly facility within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly facility records. + - Review and sync the weekly facility. + - Notify stakeholders via email. +- name: operations-sync-monthly-facility-2539 + title: Sync Monthly Facility (operations) + description: Standard workflow to sync monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly facility data. + - Apply operations policies to sync the facility. + - Send a status update to the operations team chat space. +- name: operations-sync-urgent-facility-2540 + title: Sync Urgent Facility (operations) + description: Standard workflow to sync urgent facility within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent facility requests. + - Execute sync procedure on the designated facility. + - Log completion in the master tracking spreadsheet. +- name: operations-sync-secure-facility-2541 + title: Sync Secure Facility (operations) + description: Standard workflow to sync secure facility within the operations department. + category: operations + services: + - chat + steps: + - Search for secure facility records. + - Review and sync the secure facility. + - Archive results in a secure Drive folder. +- name: operations-sync-weekly-inventory-2542 + title: Sync Weekly Inventory (operations) + description: Standard workflow to sync weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly inventory data. + - Apply operations policies to sync the inventory. + - Notify stakeholders via email. +- name: operations-sync-monthly-inventory-2543 + title: Sync Monthly Inventory (operations) + description: Standard workflow to sync monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly inventory requests. + - Execute sync procedure on the designated inventory. + - Send a status update to the operations team chat space. +- name: operations-sync-urgent-inventory-2544 + title: Sync Urgent Inventory (operations) + description: Standard workflow to sync urgent inventory within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent inventory records. + - Review and sync the urgent inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-sync-secure-inventory-2545 + title: Sync Secure Inventory (operations) + description: Standard workflow to sync secure inventory within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure inventory data. + - Apply operations policies to sync the inventory. + - Archive results in a secure Drive folder. +- name: operations-sync-weekly-shipping-manifest-2546 + title: Sync Weekly Shipping Manifest (operations) + description: Standard workflow to sync weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly shipping manifest requests. + - Execute sync procedure on the designated shipping manifest. + - Notify stakeholders via email. +- name: operations-sync-monthly-shipping-manifest-2547 + title: Sync Monthly Shipping Manifest (operations) + description: Standard workflow to sync monthly shipping manifest within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly shipping manifest records. + - Review and sync the monthly shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-sync-urgent-shipping-manifest-2548 + title: Sync Urgent Shipping Manifest (operations) + description: Standard workflow to sync urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent shipping manifest data. + - Apply operations policies to sync the shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-sync-secure-shipping-manifest-2549 + title: Sync Secure Shipping Manifest (operations) + description: Standard workflow to sync secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure shipping manifest requests. + - Execute sync procedure on the designated shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-sync-weekly-safety-audit-2550 + title: Sync Weekly Safety Audit (operations) + description: Standard workflow to sync weekly safety audit within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly safety audit records. + - Review and sync the weekly safety audit. + - Notify stakeholders via email. +- name: operations-sync-monthly-safety-audit-2551 + title: Sync Monthly Safety Audit (operations) + description: Standard workflow to sync monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly safety audit data. + - Apply operations policies to sync the safety audit. + - Send a status update to the operations team chat space. +- name: operations-sync-urgent-safety-audit-2552 + title: Sync Urgent Safety Audit (operations) + description: Standard workflow to sync urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent safety audit requests. + - Execute sync procedure on the designated safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-sync-secure-safety-audit-2553 + title: Sync Secure Safety Audit (operations) + description: Standard workflow to sync secure safety audit within the operations department. + category: operations + services: + - chat + steps: + - Search for secure safety audit records. + - Review and sync the secure safety audit. + - Archive results in a secure Drive folder. +- name: operations-migrate-weekly-vendor-2554 + title: Migrate Weekly Vendor (operations) + description: Standard workflow to migrate weekly vendor within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly vendor data. + - Apply operations policies to migrate the vendor. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly vendor targets before running. +- name: operations-migrate-monthly-vendor-2555 + title: Migrate Monthly Vendor (operations) + description: Standard workflow to migrate monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly vendor requests. + - Execute migrate procedure on the designated vendor. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly vendor targets before running. +- name: operations-migrate-urgent-vendor-2556 + title: Migrate Urgent Vendor (operations) + description: Standard workflow to migrate urgent vendor within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent vendor records. + - Review and migrate the urgent vendor. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent vendor targets before running. +- name: operations-migrate-secure-vendor-2557 + title: Migrate Secure Vendor (operations) + description: Standard workflow to migrate secure vendor within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure vendor data. + - Apply operations policies to migrate the vendor. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure vendor targets before running. +- name: operations-migrate-weekly-facility-2558 + title: Migrate Weekly Facility (operations) + description: Standard workflow to migrate weekly facility within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly facility requests. + - Execute migrate procedure on the designated facility. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly facility targets before running. +- name: operations-migrate-monthly-facility-2559 + title: Migrate Monthly Facility (operations) + description: Standard workflow to migrate monthly facility within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly facility records. + - Review and migrate the monthly facility. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly facility targets before running. +- name: operations-migrate-urgent-facility-2560 + title: Migrate Urgent Facility (operations) + description: Standard workflow to migrate urgent facility within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent facility data. + - Apply operations policies to migrate the facility. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent facility targets before running. +- name: operations-migrate-secure-facility-2561 + title: Migrate Secure Facility (operations) + description: Standard workflow to migrate secure facility within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure facility requests. + - Execute migrate procedure on the designated facility. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure facility targets before running. +- name: operations-migrate-weekly-inventory-2562 + title: Migrate Weekly Inventory (operations) + description: Standard workflow to migrate weekly inventory within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly inventory records. + - Review and migrate the weekly inventory. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly inventory targets before running. +- name: operations-migrate-monthly-inventory-2563 + title: Migrate Monthly Inventory (operations) + description: Standard workflow to migrate monthly inventory within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly inventory data. + - Apply operations policies to migrate the inventory. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly inventory targets before running. +- name: operations-migrate-urgent-inventory-2564 + title: Migrate Urgent Inventory (operations) + description: Standard workflow to migrate urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent inventory requests. + - Execute migrate procedure on the designated inventory. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent inventory targets before running. +- name: operations-migrate-secure-inventory-2565 + title: Migrate Secure Inventory (operations) + description: Standard workflow to migrate secure inventory within the operations department. + category: operations + services: + - chat + steps: + - Search for secure inventory records. + - Review and migrate the secure inventory. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure inventory targets before running. +- name: operations-migrate-weekly-shipping-manifest-2566 + title: Migrate Weekly Shipping Manifest (operations) + description: Standard workflow to migrate weekly shipping manifest within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly shipping manifest data. + - Apply operations policies to migrate the shipping manifest. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly shipping manifest targets before running. +- name: operations-migrate-monthly-shipping-manifest-2567 + title: Migrate Monthly Shipping Manifest (operations) + description: Standard workflow to migrate monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly shipping manifest requests. + - Execute migrate procedure on the designated shipping manifest. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly shipping manifest targets before running. +- name: operations-migrate-urgent-shipping-manifest-2568 + title: Migrate Urgent Shipping Manifest (operations) + description: Standard workflow to migrate urgent shipping manifest within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent shipping manifest records. + - Review and migrate the urgent shipping manifest. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent shipping manifest targets before running. +- name: operations-migrate-secure-shipping-manifest-2569 + title: Migrate Secure Shipping Manifest (operations) + description: Standard workflow to migrate secure shipping manifest within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure shipping manifest data. + - Apply operations policies to migrate the shipping manifest. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure shipping manifest targets before running. +- name: operations-migrate-weekly-safety-audit-2570 + title: Migrate Weekly Safety Audit (operations) + description: Standard workflow to migrate weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly safety audit requests. + - Execute migrate procedure on the designated safety audit. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly safety audit targets before running. +- name: operations-migrate-monthly-safety-audit-2571 + title: Migrate Monthly Safety Audit (operations) + description: Standard workflow to migrate monthly safety audit within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly safety audit records. + - Review and migrate the monthly safety audit. + - Send a status update to the operations team chat space. + caution: Action involves bulk data manipulation. Confirm monthly safety audit targets before running. +- name: operations-migrate-urgent-safety-audit-2572 + title: Migrate Urgent Safety Audit (operations) + description: Standard workflow to migrate urgent safety audit within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent safety audit data. + - Apply operations policies to migrate the safety audit. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent safety audit targets before running. +- name: operations-migrate-secure-safety-audit-2573 + title: Migrate Secure Safety Audit (operations) + description: Standard workflow to migrate secure safety audit within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure safety audit requests. + - Execute migrate procedure on the designated safety audit. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure safety audit targets before running. +- name: operations-backup-weekly-vendor-2574 + title: Backup Weekly Vendor (operations) + description: Standard workflow to backup weekly vendor within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly vendor records. + - Review and backup the weekly vendor. + - Notify stakeholders via email. +- name: operations-backup-monthly-vendor-2575 + title: Backup Monthly Vendor (operations) + description: Standard workflow to backup monthly vendor within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly vendor data. + - Apply operations policies to backup the vendor. + - Send a status update to the operations team chat space. +- name: operations-backup-urgent-vendor-2576 + title: Backup Urgent Vendor (operations) + description: Standard workflow to backup urgent vendor within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent vendor requests. + - Execute backup procedure on the designated vendor. + - Log completion in the master tracking spreadsheet. +- name: operations-backup-secure-vendor-2577 + title: Backup Secure Vendor (operations) + description: Standard workflow to backup secure vendor within the operations department. + category: operations + services: + - chat + steps: + - Search for secure vendor records. + - Review and backup the secure vendor. + - Archive results in a secure Drive folder. +- name: operations-backup-weekly-facility-2578 + title: Backup Weekly Facility (operations) + description: Standard workflow to backup weekly facility within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly facility data. + - Apply operations policies to backup the facility. + - Notify stakeholders via email. +- name: operations-backup-monthly-facility-2579 + title: Backup Monthly Facility (operations) + description: Standard workflow to backup monthly facility within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly facility requests. + - Execute backup procedure on the designated facility. + - Send a status update to the operations team chat space. +- name: operations-backup-urgent-facility-2580 + title: Backup Urgent Facility (operations) + description: Standard workflow to backup urgent facility within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent facility records. + - Review and backup the urgent facility. + - Log completion in the master tracking spreadsheet. +- name: operations-backup-secure-facility-2581 + title: Backup Secure Facility (operations) + description: Standard workflow to backup secure facility within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure facility data. + - Apply operations policies to backup the facility. + - Archive results in a secure Drive folder. +- name: operations-backup-weekly-inventory-2582 + title: Backup Weekly Inventory (operations) + description: Standard workflow to backup weekly inventory within the operations department. + category: operations + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly inventory requests. + - Execute backup procedure on the designated inventory. + - Notify stakeholders via email. +- name: operations-backup-monthly-inventory-2583 + title: Backup Monthly Inventory (operations) + description: Standard workflow to backup monthly inventory within the operations department. + category: operations + services: + - sheets + steps: + - Search for monthly inventory records. + - Review and backup the monthly inventory. + - Send a status update to the operations team chat space. +- name: operations-backup-urgent-inventory-2584 + title: Backup Urgent Inventory (operations) + description: Standard workflow to backup urgent inventory within the operations department. + category: operations + services: + - calendar + - chat + steps: + - Fetch latest urgent inventory data. + - Apply operations policies to backup the inventory. + - Log completion in the master tracking spreadsheet. +- name: operations-backup-secure-inventory-2585 + title: Backup Secure Inventory (operations) + description: Standard workflow to backup secure inventory within the operations department. + category: operations + services: + - chat + - drive + - sheets + steps: + - Check system for pending secure inventory requests. + - Execute backup procedure on the designated inventory. + - Archive results in a secure Drive folder. +- name: operations-backup-weekly-shipping-manifest-2586 + title: Backup Weekly Shipping Manifest (operations) + description: Standard workflow to backup weekly shipping manifest within the operations department. + category: operations + services: + - drive + steps: + - Search for weekly shipping manifest records. + - Review and backup the weekly shipping manifest. + - Notify stakeholders via email. +- name: operations-backup-monthly-shipping-manifest-2587 + title: Backup Monthly Shipping Manifest (operations) + description: Standard workflow to backup monthly shipping manifest within the operations department. + category: operations + services: + - sheets + - calendar + steps: + - Fetch latest monthly shipping manifest data. + - Apply operations policies to backup the shipping manifest. + - Send a status update to the operations team chat space. +- name: operations-backup-urgent-shipping-manifest-2588 + title: Backup Urgent Shipping Manifest (operations) + description: Standard workflow to backup urgent shipping manifest within the operations department. + category: operations + services: + - calendar + - chat + - drive + steps: + - Check system for pending urgent shipping manifest requests. + - Execute backup procedure on the designated shipping manifest. + - Log completion in the master tracking spreadsheet. +- name: operations-backup-secure-shipping-manifest-2589 + title: Backup Secure Shipping Manifest (operations) + description: Standard workflow to backup secure shipping manifest within the operations department. + category: operations + services: + - chat + steps: + - Search for secure shipping manifest records. + - Review and backup the secure shipping manifest. + - Archive results in a secure Drive folder. +- name: operations-backup-weekly-safety-audit-2590 + title: Backup Weekly Safety Audit (operations) + description: Standard workflow to backup weekly safety audit within the operations department. + category: operations + services: + - drive + - sheets + steps: + - Fetch latest weekly safety audit data. + - Apply operations policies to backup the safety audit. + - Notify stakeholders via email. +- name: operations-backup-monthly-safety-audit-2591 + title: Backup Monthly Safety Audit (operations) + description: Standard workflow to backup monthly safety audit within the operations department. + category: operations + services: + - sheets + - calendar + - chat + steps: + - Check system for pending monthly safety audit requests. + - Execute backup procedure on the designated safety audit. + - Send a status update to the operations team chat space. +- name: operations-backup-urgent-safety-audit-2592 + title: Backup Urgent Safety Audit (operations) + description: Standard workflow to backup urgent safety audit within the operations department. + category: operations + services: + - calendar + steps: + - Search for urgent safety audit records. + - Review and backup the urgent safety audit. + - Log completion in the master tracking spreadsheet. +- name: operations-backup-secure-safety-audit-2593 + title: Backup Secure Safety Audit (operations) + description: Standard workflow to backup secure safety audit within the operations department. + category: operations + services: + - chat + - drive + steps: + - Fetch latest secure safety audit data. + - Apply operations policies to backup the safety audit. + - Archive results in a secure Drive folder. +- name: product-audit-weekly-roadmap-2594 + title: Audit Weekly Roadmap (product) + description: Standard workflow to audit weekly roadmap within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly roadmap requests. + - Execute audit procedure on the designated roadmap. + - Notify stakeholders via email. +- name: product-audit-monthly-roadmap-2595 + title: Audit Monthly Roadmap (product) + description: Standard workflow to audit monthly roadmap within the product department. + category: product + services: + - sheets + steps: + - Search for monthly roadmap records. + - Review and audit the monthly roadmap. + - Send a status update to the product team chat space. +- name: product-audit-urgent-roadmap-2596 + title: Audit Urgent Roadmap (product) + description: Standard workflow to audit urgent roadmap within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent roadmap data. + - Apply product policies to audit the roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-audit-secure-roadmap-2597 + title: Audit Secure Roadmap (product) + description: Standard workflow to audit secure roadmap within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure roadmap requests. + - Execute audit procedure on the designated roadmap. + - Archive results in a secure Drive folder. +- name: product-audit-weekly-feature-spec-2598 + title: Audit Weekly Feature Spec (product) + description: Standard workflow to audit weekly feature spec within the product department. + category: product + services: + - drive + steps: + - Search for weekly feature spec records. + - Review and audit the weekly feature spec. + - Notify stakeholders via email. +- name: product-audit-monthly-feature-spec-2599 + title: Audit Monthly Feature Spec (product) + description: Standard workflow to audit monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly feature spec data. + - Apply product policies to audit the feature spec. + - Send a status update to the product team chat space. +- name: product-audit-urgent-feature-spec-2600 + title: Audit Urgent Feature Spec (product) + description: Standard workflow to audit urgent feature spec within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent feature spec requests. + - Execute audit procedure on the designated feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-audit-secure-feature-spec-2601 + title: Audit Secure Feature Spec (product) + description: Standard workflow to audit secure feature spec within the product department. + category: product + services: + - docs + steps: + - Search for secure feature spec records. + - Review and audit the secure feature spec. + - Archive results in a secure Drive folder. +- name: product-audit-weekly-backlog-2602 + title: Audit Weekly Backlog (product) + description: Standard workflow to audit weekly backlog within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly backlog data. + - Apply product policies to audit the backlog. + - Notify stakeholders via email. +- name: product-audit-monthly-backlog-2603 + title: Audit Monthly Backlog (product) + description: Standard workflow to audit monthly backlog within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly backlog requests. + - Execute audit procedure on the designated backlog. + - Send a status update to the product team chat space. +- name: product-audit-urgent-backlog-2604 + title: Audit Urgent Backlog (product) + description: Standard workflow to audit urgent backlog within the product department. + category: product + services: + - calendar + steps: + - Search for urgent backlog records. + - Review and audit the urgent backlog. + - Log completion in the master tracking spreadsheet. +- name: product-audit-secure-backlog-2605 + title: Audit Secure Backlog (product) + description: Standard workflow to audit secure backlog within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure backlog data. + - Apply product policies to audit the backlog. + - Archive results in a secure Drive folder. +- name: product-audit-weekly-user-interview-2606 + title: Audit Weekly User Interview (product) + description: Standard workflow to audit weekly user interview within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly user interview requests. + - Execute audit procedure on the designated user interview. + - Notify stakeholders via email. +- name: product-audit-monthly-user-interview-2607 + title: Audit Monthly User Interview (product) + description: Standard workflow to audit monthly user interview within the product department. + category: product + services: + - sheets + steps: + - Search for monthly user interview records. + - Review and audit the monthly user interview. + - Send a status update to the product team chat space. +- name: product-audit-urgent-user-interview-2608 + title: Audit Urgent User Interview (product) + description: Standard workflow to audit urgent user interview within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent user interview data. + - Apply product policies to audit the user interview. + - Log completion in the master tracking spreadsheet. +- name: product-audit-secure-user-interview-2609 + title: Audit Secure User Interview (product) + description: Standard workflow to audit secure user interview within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure user interview requests. + - Execute audit procedure on the designated user interview. + - Archive results in a secure Drive folder. +- name: product-audit-weekly-release-note-2610 + title: Audit Weekly Release Note (product) + description: Standard workflow to audit weekly release note within the product department. + category: product + services: + - drive + steps: + - Search for weekly release note records. + - Review and audit the weekly release note. + - Notify stakeholders via email. +- name: product-audit-monthly-release-note-2611 + title: Audit Monthly Release Note (product) + description: Standard workflow to audit monthly release note within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly release note data. + - Apply product policies to audit the release note. + - Send a status update to the product team chat space. +- name: product-audit-urgent-release-note-2612 + title: Audit Urgent Release Note (product) + description: Standard workflow to audit urgent release note within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent release note requests. + - Execute audit procedure on the designated release note. + - Log completion in the master tracking spreadsheet. +- name: product-audit-secure-release-note-2613 + title: Audit Secure Release Note (product) + description: Standard workflow to audit secure release note within the product department. + category: product + services: + - docs + steps: + - Search for secure release note records. + - Review and audit the secure release note. + - Archive results in a secure Drive folder. +- name: product-onboard-weekly-roadmap-2614 + title: Onboard Weekly Roadmap (product) + description: Standard workflow to onboard weekly roadmap within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly roadmap data. + - Apply product policies to onboard the roadmap. + - Notify stakeholders via email. +- name: product-onboard-monthly-roadmap-2615 + title: Onboard Monthly Roadmap (product) + description: Standard workflow to onboard monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly roadmap requests. + - Execute onboard procedure on the designated roadmap. + - Send a status update to the product team chat space. +- name: product-onboard-urgent-roadmap-2616 + title: Onboard Urgent Roadmap (product) + description: Standard workflow to onboard urgent roadmap within the product department. + category: product + services: + - calendar + steps: + - Search for urgent roadmap records. + - Review and onboard the urgent roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-onboard-secure-roadmap-2617 + title: Onboard Secure Roadmap (product) + description: Standard workflow to onboard secure roadmap within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure roadmap data. + - Apply product policies to onboard the roadmap. + - Archive results in a secure Drive folder. +- name: product-onboard-weekly-feature-spec-2618 + title: Onboard Weekly Feature Spec (product) + description: Standard workflow to onboard weekly feature spec within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly feature spec requests. + - Execute onboard procedure on the designated feature spec. + - Notify stakeholders via email. +- name: product-onboard-monthly-feature-spec-2619 + title: Onboard Monthly Feature Spec (product) + description: Standard workflow to onboard monthly feature spec within the product department. + category: product + services: + - sheets + steps: + - Search for monthly feature spec records. + - Review and onboard the monthly feature spec. + - Send a status update to the product team chat space. +- name: product-onboard-urgent-feature-spec-2620 + title: Onboard Urgent Feature Spec (product) + description: Standard workflow to onboard urgent feature spec within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent feature spec data. + - Apply product policies to onboard the feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-onboard-secure-feature-spec-2621 + title: Onboard Secure Feature Spec (product) + description: Standard workflow to onboard secure feature spec within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure feature spec requests. + - Execute onboard procedure on the designated feature spec. + - Archive results in a secure Drive folder. +- name: product-onboard-weekly-backlog-2622 + title: Onboard Weekly Backlog (product) + description: Standard workflow to onboard weekly backlog within the product department. + category: product + services: + - drive + steps: + - Search for weekly backlog records. + - Review and onboard the weekly backlog. + - Notify stakeholders via email. +- name: product-onboard-monthly-backlog-2623 + title: Onboard Monthly Backlog (product) + description: Standard workflow to onboard monthly backlog within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly backlog data. + - Apply product policies to onboard the backlog. + - Send a status update to the product team chat space. +- name: product-onboard-urgent-backlog-2624 + title: Onboard Urgent Backlog (product) + description: Standard workflow to onboard urgent backlog within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent backlog requests. + - Execute onboard procedure on the designated backlog. + - Log completion in the master tracking spreadsheet. +- name: product-onboard-secure-backlog-2625 + title: Onboard Secure Backlog (product) + description: Standard workflow to onboard secure backlog within the product department. + category: product + services: + - docs + steps: + - Search for secure backlog records. + - Review and onboard the secure backlog. + - Archive results in a secure Drive folder. +- name: product-onboard-weekly-user-interview-2626 + title: Onboard Weekly User Interview (product) + description: Standard workflow to onboard weekly user interview within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly user interview data. + - Apply product policies to onboard the user interview. + - Notify stakeholders via email. +- name: product-onboard-monthly-user-interview-2627 + title: Onboard Monthly User Interview (product) + description: Standard workflow to onboard monthly user interview within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly user interview requests. + - Execute onboard procedure on the designated user interview. + - Send a status update to the product team chat space. +- name: product-onboard-urgent-user-interview-2628 + title: Onboard Urgent User Interview (product) + description: Standard workflow to onboard urgent user interview within the product department. + category: product + services: + - calendar + steps: + - Search for urgent user interview records. + - Review and onboard the urgent user interview. + - Log completion in the master tracking spreadsheet. +- name: product-onboard-secure-user-interview-2629 + title: Onboard Secure User Interview (product) + description: Standard workflow to onboard secure user interview within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure user interview data. + - Apply product policies to onboard the user interview. + - Archive results in a secure Drive folder. +- name: product-onboard-weekly-release-note-2630 + title: Onboard Weekly Release Note (product) + description: Standard workflow to onboard weekly release note within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly release note requests. + - Execute onboard procedure on the designated release note. + - Notify stakeholders via email. +- name: product-onboard-monthly-release-note-2631 + title: Onboard Monthly Release Note (product) + description: Standard workflow to onboard monthly release note within the product department. + category: product + services: + - sheets + steps: + - Search for monthly release note records. + - Review and onboard the monthly release note. + - Send a status update to the product team chat space. +- name: product-onboard-urgent-release-note-2632 + title: Onboard Urgent Release Note (product) + description: Standard workflow to onboard urgent release note within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent release note data. + - Apply product policies to onboard the release note. + - Log completion in the master tracking spreadsheet. +- name: product-onboard-secure-release-note-2633 + title: Onboard Secure Release Note (product) + description: Standard workflow to onboard secure release note within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure release note requests. + - Execute onboard procedure on the designated release note. + - Archive results in a secure Drive folder. +- name: product-review-weekly-roadmap-2634 + title: Review Weekly Roadmap (product) + description: Standard workflow to review weekly roadmap within the product department. + category: product + services: + - drive + steps: + - Search for weekly roadmap records. + - Review and review the weekly roadmap. + - Notify stakeholders via email. +- name: product-review-monthly-roadmap-2635 + title: Review Monthly Roadmap (product) + description: Standard workflow to review monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly roadmap data. + - Apply product policies to review the roadmap. + - Send a status update to the product team chat space. +- name: product-review-urgent-roadmap-2636 + title: Review Urgent Roadmap (product) + description: Standard workflow to review urgent roadmap within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent roadmap requests. + - Execute review procedure on the designated roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-review-secure-roadmap-2637 + title: Review Secure Roadmap (product) + description: Standard workflow to review secure roadmap within the product department. + category: product + services: + - docs + steps: + - Search for secure roadmap records. + - Review and review the secure roadmap. + - Archive results in a secure Drive folder. +- name: product-review-weekly-feature-spec-2638 + title: Review Weekly Feature Spec (product) + description: Standard workflow to review weekly feature spec within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly feature spec data. + - Apply product policies to review the feature spec. + - Notify stakeholders via email. +- name: product-review-monthly-feature-spec-2639 + title: Review Monthly Feature Spec (product) + description: Standard workflow to review monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly feature spec requests. + - Execute review procedure on the designated feature spec. + - Send a status update to the product team chat space. +- name: product-review-urgent-feature-spec-2640 + title: Review Urgent Feature Spec (product) + description: Standard workflow to review urgent feature spec within the product department. + category: product + services: + - calendar + steps: + - Search for urgent feature spec records. + - Review and review the urgent feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-review-secure-feature-spec-2641 + title: Review Secure Feature Spec (product) + description: Standard workflow to review secure feature spec within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure feature spec data. + - Apply product policies to review the feature spec. + - Archive results in a secure Drive folder. +- name: product-review-weekly-backlog-2642 + title: Review Weekly Backlog (product) + description: Standard workflow to review weekly backlog within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly backlog requests. + - Execute review procedure on the designated backlog. + - Notify stakeholders via email. +- name: product-review-monthly-backlog-2643 + title: Review Monthly Backlog (product) + description: Standard workflow to review monthly backlog within the product department. + category: product + services: + - sheets + steps: + - Search for monthly backlog records. + - Review and review the monthly backlog. + - Send a status update to the product team chat space. +- name: product-review-urgent-backlog-2644 + title: Review Urgent Backlog (product) + description: Standard workflow to review urgent backlog within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent backlog data. + - Apply product policies to review the backlog. + - Log completion in the master tracking spreadsheet. +- name: product-review-secure-backlog-2645 + title: Review Secure Backlog (product) + description: Standard workflow to review secure backlog within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure backlog requests. + - Execute review procedure on the designated backlog. + - Archive results in a secure Drive folder. +- name: product-review-weekly-user-interview-2646 + title: Review Weekly User Interview (product) + description: Standard workflow to review weekly user interview within the product department. + category: product + services: + - drive + steps: + - Search for weekly user interview records. + - Review and review the weekly user interview. + - Notify stakeholders via email. +- name: product-review-monthly-user-interview-2647 + title: Review Monthly User Interview (product) + description: Standard workflow to review monthly user interview within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly user interview data. + - Apply product policies to review the user interview. + - Send a status update to the product team chat space. +- name: product-review-urgent-user-interview-2648 + title: Review Urgent User Interview (product) + description: Standard workflow to review urgent user interview within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent user interview requests. + - Execute review procedure on the designated user interview. + - Log completion in the master tracking spreadsheet. +- name: product-review-secure-user-interview-2649 + title: Review Secure User Interview (product) + description: Standard workflow to review secure user interview within the product department. + category: product + services: + - docs + steps: + - Search for secure user interview records. + - Review and review the secure user interview. + - Archive results in a secure Drive folder. +- name: product-review-weekly-release-note-2650 + title: Review Weekly Release Note (product) + description: Standard workflow to review weekly release note within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly release note data. + - Apply product policies to review the release note. + - Notify stakeholders via email. +- name: product-review-monthly-release-note-2651 + title: Review Monthly Release Note (product) + description: Standard workflow to review monthly release note within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly release note requests. + - Execute review procedure on the designated release note. + - Send a status update to the product team chat space. +- name: product-review-urgent-release-note-2652 + title: Review Urgent Release Note (product) + description: Standard workflow to review urgent release note within the product department. + category: product + services: + - calendar + steps: + - Search for urgent release note records. + - Review and review the urgent release note. + - Log completion in the master tracking spreadsheet. +- name: product-review-secure-release-note-2653 + title: Review Secure Release Note (product) + description: Standard workflow to review secure release note within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure release note data. + - Apply product policies to review the release note. + - Archive results in a secure Drive folder. +- name: product-approve-weekly-roadmap-2654 + title: Approve Weekly Roadmap (product) + description: Standard workflow to approve weekly roadmap within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly roadmap requests. + - Execute approve procedure on the designated roadmap. + - Notify stakeholders via email. +- name: product-approve-monthly-roadmap-2655 + title: Approve Monthly Roadmap (product) + description: Standard workflow to approve monthly roadmap within the product department. + category: product + services: + - sheets + steps: + - Search for monthly roadmap records. + - Review and approve the monthly roadmap. + - Send a status update to the product team chat space. +- name: product-approve-urgent-roadmap-2656 + title: Approve Urgent Roadmap (product) + description: Standard workflow to approve urgent roadmap within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent roadmap data. + - Apply product policies to approve the roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-approve-secure-roadmap-2657 + title: Approve Secure Roadmap (product) + description: Standard workflow to approve secure roadmap within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure roadmap requests. + - Execute approve procedure on the designated roadmap. + - Archive results in a secure Drive folder. +- name: product-approve-weekly-feature-spec-2658 + title: Approve Weekly Feature Spec (product) + description: Standard workflow to approve weekly feature spec within the product department. + category: product + services: + - drive + steps: + - Search for weekly feature spec records. + - Review and approve the weekly feature spec. + - Notify stakeholders via email. +- name: product-approve-monthly-feature-spec-2659 + title: Approve Monthly Feature Spec (product) + description: Standard workflow to approve monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly feature spec data. + - Apply product policies to approve the feature spec. + - Send a status update to the product team chat space. +- name: product-approve-urgent-feature-spec-2660 + title: Approve Urgent Feature Spec (product) + description: Standard workflow to approve urgent feature spec within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent feature spec requests. + - Execute approve procedure on the designated feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-approve-secure-feature-spec-2661 + title: Approve Secure Feature Spec (product) + description: Standard workflow to approve secure feature spec within the product department. + category: product + services: + - docs + steps: + - Search for secure feature spec records. + - Review and approve the secure feature spec. + - Archive results in a secure Drive folder. +- name: product-approve-weekly-backlog-2662 + title: Approve Weekly Backlog (product) + description: Standard workflow to approve weekly backlog within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly backlog data. + - Apply product policies to approve the backlog. + - Notify stakeholders via email. +- name: product-approve-monthly-backlog-2663 + title: Approve Monthly Backlog (product) + description: Standard workflow to approve monthly backlog within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly backlog requests. + - Execute approve procedure on the designated backlog. + - Send a status update to the product team chat space. +- name: product-approve-urgent-backlog-2664 + title: Approve Urgent Backlog (product) + description: Standard workflow to approve urgent backlog within the product department. + category: product + services: + - calendar + steps: + - Search for urgent backlog records. + - Review and approve the urgent backlog. + - Log completion in the master tracking spreadsheet. +- name: product-approve-secure-backlog-2665 + title: Approve Secure Backlog (product) + description: Standard workflow to approve secure backlog within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure backlog data. + - Apply product policies to approve the backlog. + - Archive results in a secure Drive folder. +- name: product-approve-weekly-user-interview-2666 + title: Approve Weekly User Interview (product) + description: Standard workflow to approve weekly user interview within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly user interview requests. + - Execute approve procedure on the designated user interview. + - Notify stakeholders via email. +- name: product-approve-monthly-user-interview-2667 + title: Approve Monthly User Interview (product) + description: Standard workflow to approve monthly user interview within the product department. + category: product + services: + - sheets + steps: + - Search for monthly user interview records. + - Review and approve the monthly user interview. + - Send a status update to the product team chat space. +- name: product-approve-urgent-user-interview-2668 + title: Approve Urgent User Interview (product) + description: Standard workflow to approve urgent user interview within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent user interview data. + - Apply product policies to approve the user interview. + - Log completion in the master tracking spreadsheet. +- name: product-approve-secure-user-interview-2669 + title: Approve Secure User Interview (product) + description: Standard workflow to approve secure user interview within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure user interview requests. + - Execute approve procedure on the designated user interview. + - Archive results in a secure Drive folder. +- name: product-approve-weekly-release-note-2670 + title: Approve Weekly Release Note (product) + description: Standard workflow to approve weekly release note within the product department. + category: product + services: + - drive + steps: + - Search for weekly release note records. + - Review and approve the weekly release note. + - Notify stakeholders via email. +- name: product-approve-monthly-release-note-2671 + title: Approve Monthly Release Note (product) + description: Standard workflow to approve monthly release note within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly release note data. + - Apply product policies to approve the release note. + - Send a status update to the product team chat space. +- name: product-approve-urgent-release-note-2672 + title: Approve Urgent Release Note (product) + description: Standard workflow to approve urgent release note within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent release note requests. + - Execute approve procedure on the designated release note. + - Log completion in the master tracking spreadsheet. +- name: product-approve-secure-release-note-2673 + title: Approve Secure Release Note (product) + description: Standard workflow to approve secure release note within the product department. + category: product + services: + - docs + steps: + - Search for secure release note records. + - Review and approve the secure release note. + - Archive results in a secure Drive folder. +- name: product-share-weekly-roadmap-2674 + title: Share Weekly Roadmap (product) + description: Standard workflow to share weekly roadmap within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly roadmap data. + - Apply product policies to share the roadmap. + - Notify stakeholders via email. +- name: product-share-monthly-roadmap-2675 + title: Share Monthly Roadmap (product) + description: Standard workflow to share monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly roadmap requests. + - Execute share procedure on the designated roadmap. + - Send a status update to the product team chat space. +- name: product-share-urgent-roadmap-2676 + title: Share Urgent Roadmap (product) + description: Standard workflow to share urgent roadmap within the product department. + category: product + services: + - calendar + steps: + - Search for urgent roadmap records. + - Review and share the urgent roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-share-secure-roadmap-2677 + title: Share Secure Roadmap (product) + description: Standard workflow to share secure roadmap within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure roadmap data. + - Apply product policies to share the roadmap. + - Archive results in a secure Drive folder. +- name: product-share-weekly-feature-spec-2678 + title: Share Weekly Feature Spec (product) + description: Standard workflow to share weekly feature spec within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly feature spec requests. + - Execute share procedure on the designated feature spec. + - Notify stakeholders via email. +- name: product-share-monthly-feature-spec-2679 + title: Share Monthly Feature Spec (product) + description: Standard workflow to share monthly feature spec within the product department. + category: product + services: + - sheets + steps: + - Search for monthly feature spec records. + - Review and share the monthly feature spec. + - Send a status update to the product team chat space. +- name: product-share-urgent-feature-spec-2680 + title: Share Urgent Feature Spec (product) + description: Standard workflow to share urgent feature spec within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent feature spec data. + - Apply product policies to share the feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-share-secure-feature-spec-2681 + title: Share Secure Feature Spec (product) + description: Standard workflow to share secure feature spec within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure feature spec requests. + - Execute share procedure on the designated feature spec. + - Archive results in a secure Drive folder. +- name: product-share-weekly-backlog-2682 + title: Share Weekly Backlog (product) + description: Standard workflow to share weekly backlog within the product department. + category: product + services: + - drive + steps: + - Search for weekly backlog records. + - Review and share the weekly backlog. + - Notify stakeholders via email. +- name: product-share-monthly-backlog-2683 + title: Share Monthly Backlog (product) + description: Standard workflow to share monthly backlog within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly backlog data. + - Apply product policies to share the backlog. + - Send a status update to the product team chat space. +- name: product-share-urgent-backlog-2684 + title: Share Urgent Backlog (product) + description: Standard workflow to share urgent backlog within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent backlog requests. + - Execute share procedure on the designated backlog. + - Log completion in the master tracking spreadsheet. +- name: product-share-secure-backlog-2685 + title: Share Secure Backlog (product) + description: Standard workflow to share secure backlog within the product department. + category: product + services: + - docs + steps: + - Search for secure backlog records. + - Review and share the secure backlog. + - Archive results in a secure Drive folder. +- name: product-share-weekly-user-interview-2686 + title: Share Weekly User Interview (product) + description: Standard workflow to share weekly user interview within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly user interview data. + - Apply product policies to share the user interview. + - Notify stakeholders via email. +- name: product-share-monthly-user-interview-2687 + title: Share Monthly User Interview (product) + description: Standard workflow to share monthly user interview within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly user interview requests. + - Execute share procedure on the designated user interview. + - Send a status update to the product team chat space. +- name: product-share-urgent-user-interview-2688 + title: Share Urgent User Interview (product) + description: Standard workflow to share urgent user interview within the product department. + category: product + services: + - calendar + steps: + - Search for urgent user interview records. + - Review and share the urgent user interview. + - Log completion in the master tracking spreadsheet. +- name: product-share-secure-user-interview-2689 + title: Share Secure User Interview (product) + description: Standard workflow to share secure user interview within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure user interview data. + - Apply product policies to share the user interview. + - Archive results in a secure Drive folder. +- name: product-share-weekly-release-note-2690 + title: Share Weekly Release Note (product) + description: Standard workflow to share weekly release note within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly release note requests. + - Execute share procedure on the designated release note. + - Notify stakeholders via email. +- name: product-share-monthly-release-note-2691 + title: Share Monthly Release Note (product) + description: Standard workflow to share monthly release note within the product department. + category: product + services: + - sheets + steps: + - Search for monthly release note records. + - Review and share the monthly release note. + - Send a status update to the product team chat space. +- name: product-share-urgent-release-note-2692 + title: Share Urgent Release Note (product) + description: Standard workflow to share urgent release note within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent release note data. + - Apply product policies to share the release note. + - Log completion in the master tracking spreadsheet. +- name: product-share-secure-release-note-2693 + title: Share Secure Release Note (product) + description: Standard workflow to share secure release note within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure release note requests. + - Execute share procedure on the designated release note. + - Archive results in a secure Drive folder. +- name: product-publish-weekly-roadmap-2694 + title: Publish Weekly Roadmap (product) + description: Standard workflow to publish weekly roadmap within the product department. + category: product + services: + - drive + steps: + - Search for weekly roadmap records. + - Review and publish the weekly roadmap. + - Notify stakeholders via email. +- name: product-publish-monthly-roadmap-2695 + title: Publish Monthly Roadmap (product) + description: Standard workflow to publish monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly roadmap data. + - Apply product policies to publish the roadmap. + - Send a status update to the product team chat space. +- name: product-publish-urgent-roadmap-2696 + title: Publish Urgent Roadmap (product) + description: Standard workflow to publish urgent roadmap within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent roadmap requests. + - Execute publish procedure on the designated roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-publish-secure-roadmap-2697 + title: Publish Secure Roadmap (product) + description: Standard workflow to publish secure roadmap within the product department. + category: product + services: + - docs + steps: + - Search for secure roadmap records. + - Review and publish the secure roadmap. + - Archive results in a secure Drive folder. +- name: product-publish-weekly-feature-spec-2698 + title: Publish Weekly Feature Spec (product) + description: Standard workflow to publish weekly feature spec within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly feature spec data. + - Apply product policies to publish the feature spec. + - Notify stakeholders via email. +- name: product-publish-monthly-feature-spec-2699 + title: Publish Monthly Feature Spec (product) + description: Standard workflow to publish monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly feature spec requests. + - Execute publish procedure on the designated feature spec. + - Send a status update to the product team chat space. +- name: product-publish-urgent-feature-spec-2700 + title: Publish Urgent Feature Spec (product) + description: Standard workflow to publish urgent feature spec within the product department. + category: product + services: + - calendar + steps: + - Search for urgent feature spec records. + - Review and publish the urgent feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-publish-secure-feature-spec-2701 + title: Publish Secure Feature Spec (product) + description: Standard workflow to publish secure feature spec within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure feature spec data. + - Apply product policies to publish the feature spec. + - Archive results in a secure Drive folder. +- name: product-publish-weekly-backlog-2702 + title: Publish Weekly Backlog (product) + description: Standard workflow to publish weekly backlog within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly backlog requests. + - Execute publish procedure on the designated backlog. + - Notify stakeholders via email. +- name: product-publish-monthly-backlog-2703 + title: Publish Monthly Backlog (product) + description: Standard workflow to publish monthly backlog within the product department. + category: product + services: + - sheets + steps: + - Search for monthly backlog records. + - Review and publish the monthly backlog. + - Send a status update to the product team chat space. +- name: product-publish-urgent-backlog-2704 + title: Publish Urgent Backlog (product) + description: Standard workflow to publish urgent backlog within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent backlog data. + - Apply product policies to publish the backlog. + - Log completion in the master tracking spreadsheet. +- name: product-publish-secure-backlog-2705 + title: Publish Secure Backlog (product) + description: Standard workflow to publish secure backlog within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure backlog requests. + - Execute publish procedure on the designated backlog. + - Archive results in a secure Drive folder. +- name: product-publish-weekly-user-interview-2706 + title: Publish Weekly User Interview (product) + description: Standard workflow to publish weekly user interview within the product department. + category: product + services: + - drive + steps: + - Search for weekly user interview records. + - Review and publish the weekly user interview. + - Notify stakeholders via email. +- name: product-publish-monthly-user-interview-2707 + title: Publish Monthly User Interview (product) + description: Standard workflow to publish monthly user interview within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly user interview data. + - Apply product policies to publish the user interview. + - Send a status update to the product team chat space. +- name: product-publish-urgent-user-interview-2708 + title: Publish Urgent User Interview (product) + description: Standard workflow to publish urgent user interview within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent user interview requests. + - Execute publish procedure on the designated user interview. + - Log completion in the master tracking spreadsheet. +- name: product-publish-secure-user-interview-2709 + title: Publish Secure User Interview (product) + description: Standard workflow to publish secure user interview within the product department. + category: product + services: + - docs + steps: + - Search for secure user interview records. + - Review and publish the secure user interview. + - Archive results in a secure Drive folder. +- name: product-publish-weekly-release-note-2710 + title: Publish Weekly Release Note (product) + description: Standard workflow to publish weekly release note within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly release note data. + - Apply product policies to publish the release note. + - Notify stakeholders via email. +- name: product-publish-monthly-release-note-2711 + title: Publish Monthly Release Note (product) + description: Standard workflow to publish monthly release note within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly release note requests. + - Execute publish procedure on the designated release note. + - Send a status update to the product team chat space. +- name: product-publish-urgent-release-note-2712 + title: Publish Urgent Release Note (product) + description: Standard workflow to publish urgent release note within the product department. + category: product + services: + - calendar + steps: + - Search for urgent release note records. + - Review and publish the urgent release note. + - Log completion in the master tracking spreadsheet. +- name: product-publish-secure-release-note-2713 + title: Publish Secure Release Note (product) + description: Standard workflow to publish secure release note within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure release note data. + - Apply product policies to publish the release note. + - Archive results in a secure Drive folder. +- name: product-archive-weekly-roadmap-2714 + title: Archive Weekly Roadmap (product) + description: Standard workflow to archive weekly roadmap within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly roadmap requests. + - Execute archive procedure on the designated roadmap. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly roadmap targets before running. +- name: product-archive-monthly-roadmap-2715 + title: Archive Monthly Roadmap (product) + description: Standard workflow to archive monthly roadmap within the product department. + category: product + services: + - sheets + steps: + - Search for monthly roadmap records. + - Review and archive the monthly roadmap. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly roadmap targets before running. +- name: product-archive-urgent-roadmap-2716 + title: Archive Urgent Roadmap (product) + description: Standard workflow to archive urgent roadmap within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent roadmap data. + - Apply product policies to archive the roadmap. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent roadmap targets before running. +- name: product-archive-secure-roadmap-2717 + title: Archive Secure Roadmap (product) + description: Standard workflow to archive secure roadmap within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure roadmap requests. + - Execute archive procedure on the designated roadmap. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure roadmap targets before running. +- name: product-archive-weekly-feature-spec-2718 + title: Archive Weekly Feature Spec (product) + description: Standard workflow to archive weekly feature spec within the product department. + category: product + services: + - drive + steps: + - Search for weekly feature spec records. + - Review and archive the weekly feature spec. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly feature spec targets before running. +- name: product-archive-monthly-feature-spec-2719 + title: Archive Monthly Feature Spec (product) + description: Standard workflow to archive monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly feature spec data. + - Apply product policies to archive the feature spec. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly feature spec targets before running. +- name: product-archive-urgent-feature-spec-2720 + title: Archive Urgent Feature Spec (product) + description: Standard workflow to archive urgent feature spec within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent feature spec requests. + - Execute archive procedure on the designated feature spec. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent feature spec targets before running. +- name: product-archive-secure-feature-spec-2721 + title: Archive Secure Feature Spec (product) + description: Standard workflow to archive secure feature spec within the product department. + category: product + services: + - docs + steps: + - Search for secure feature spec records. + - Review and archive the secure feature spec. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure feature spec targets before running. +- name: product-archive-weekly-backlog-2722 + title: Archive Weekly Backlog (product) + description: Standard workflow to archive weekly backlog within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly backlog data. + - Apply product policies to archive the backlog. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly backlog targets before running. +- name: product-archive-monthly-backlog-2723 + title: Archive Monthly Backlog (product) + description: Standard workflow to archive monthly backlog within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly backlog requests. + - Execute archive procedure on the designated backlog. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly backlog targets before running. +- name: product-archive-urgent-backlog-2724 + title: Archive Urgent Backlog (product) + description: Standard workflow to archive urgent backlog within the product department. + category: product + services: + - calendar + steps: + - Search for urgent backlog records. + - Review and archive the urgent backlog. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent backlog targets before running. +- name: product-archive-secure-backlog-2725 + title: Archive Secure Backlog (product) + description: Standard workflow to archive secure backlog within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure backlog data. + - Apply product policies to archive the backlog. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure backlog targets before running. +- name: product-archive-weekly-user-interview-2726 + title: Archive Weekly User Interview (product) + description: Standard workflow to archive weekly user interview within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly user interview requests. + - Execute archive procedure on the designated user interview. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly user interview targets before running. +- name: product-archive-monthly-user-interview-2727 + title: Archive Monthly User Interview (product) + description: Standard workflow to archive monthly user interview within the product department. + category: product + services: + - sheets + steps: + - Search for monthly user interview records. + - Review and archive the monthly user interview. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly user interview targets before running. +- name: product-archive-urgent-user-interview-2728 + title: Archive Urgent User Interview (product) + description: Standard workflow to archive urgent user interview within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent user interview data. + - Apply product policies to archive the user interview. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent user interview targets before running. +- name: product-archive-secure-user-interview-2729 + title: Archive Secure User Interview (product) + description: Standard workflow to archive secure user interview within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure user interview requests. + - Execute archive procedure on the designated user interview. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure user interview targets before running. +- name: product-archive-weekly-release-note-2730 + title: Archive Weekly Release Note (product) + description: Standard workflow to archive weekly release note within the product department. + category: product + services: + - drive + steps: + - Search for weekly release note records. + - Review and archive the weekly release note. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly release note targets before running. +- name: product-archive-monthly-release-note-2731 + title: Archive Monthly Release Note (product) + description: Standard workflow to archive monthly release note within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly release note data. + - Apply product policies to archive the release note. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly release note targets before running. +- name: product-archive-urgent-release-note-2732 + title: Archive Urgent Release Note (product) + description: Standard workflow to archive urgent release note within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent release note requests. + - Execute archive procedure on the designated release note. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent release note targets before running. +- name: product-archive-secure-release-note-2733 + title: Archive Secure Release Note (product) + description: Standard workflow to archive secure release note within the product department. + category: product + services: + - docs + steps: + - Search for secure release note records. + - Review and archive the secure release note. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure release note targets before running. +- name: product-export-weekly-roadmap-2734 + title: Export Weekly Roadmap (product) + description: Standard workflow to export weekly roadmap within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly roadmap data. + - Apply product policies to export the roadmap. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly roadmap targets before running. +- name: product-export-monthly-roadmap-2735 + title: Export Monthly Roadmap (product) + description: Standard workflow to export monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly roadmap requests. + - Execute export procedure on the designated roadmap. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly roadmap targets before running. +- name: product-export-urgent-roadmap-2736 + title: Export Urgent Roadmap (product) + description: Standard workflow to export urgent roadmap within the product department. + category: product + services: + - calendar + steps: + - Search for urgent roadmap records. + - Review and export the urgent roadmap. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent roadmap targets before running. +- name: product-export-secure-roadmap-2737 + title: Export Secure Roadmap (product) + description: Standard workflow to export secure roadmap within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure roadmap data. + - Apply product policies to export the roadmap. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure roadmap targets before running. +- name: product-export-weekly-feature-spec-2738 + title: Export Weekly Feature Spec (product) + description: Standard workflow to export weekly feature spec within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly feature spec requests. + - Execute export procedure on the designated feature spec. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly feature spec targets before running. +- name: product-export-monthly-feature-spec-2739 + title: Export Monthly Feature Spec (product) + description: Standard workflow to export monthly feature spec within the product department. + category: product + services: + - sheets + steps: + - Search for monthly feature spec records. + - Review and export the monthly feature spec. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly feature spec targets before running. +- name: product-export-urgent-feature-spec-2740 + title: Export Urgent Feature Spec (product) + description: Standard workflow to export urgent feature spec within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent feature spec data. + - Apply product policies to export the feature spec. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent feature spec targets before running. +- name: product-export-secure-feature-spec-2741 + title: Export Secure Feature Spec (product) + description: Standard workflow to export secure feature spec within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure feature spec requests. + - Execute export procedure on the designated feature spec. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure feature spec targets before running. +- name: product-export-weekly-backlog-2742 + title: Export Weekly Backlog (product) + description: Standard workflow to export weekly backlog within the product department. + category: product + services: + - drive + steps: + - Search for weekly backlog records. + - Review and export the weekly backlog. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly backlog targets before running. +- name: product-export-monthly-backlog-2743 + title: Export Monthly Backlog (product) + description: Standard workflow to export monthly backlog within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly backlog data. + - Apply product policies to export the backlog. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly backlog targets before running. +- name: product-export-urgent-backlog-2744 + title: Export Urgent Backlog (product) + description: Standard workflow to export urgent backlog within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent backlog requests. + - Execute export procedure on the designated backlog. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent backlog targets before running. +- name: product-export-secure-backlog-2745 + title: Export Secure Backlog (product) + description: Standard workflow to export secure backlog within the product department. + category: product + services: + - docs + steps: + - Search for secure backlog records. + - Review and export the secure backlog. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure backlog targets before running. +- name: product-export-weekly-user-interview-2746 + title: Export Weekly User Interview (product) + description: Standard workflow to export weekly user interview within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly user interview data. + - Apply product policies to export the user interview. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly user interview targets before running. +- name: product-export-monthly-user-interview-2747 + title: Export Monthly User Interview (product) + description: Standard workflow to export monthly user interview within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly user interview requests. + - Execute export procedure on the designated user interview. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly user interview targets before running. +- name: product-export-urgent-user-interview-2748 + title: Export Urgent User Interview (product) + description: Standard workflow to export urgent user interview within the product department. + category: product + services: + - calendar + steps: + - Search for urgent user interview records. + - Review and export the urgent user interview. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent user interview targets before running. +- name: product-export-secure-user-interview-2749 + title: Export Secure User Interview (product) + description: Standard workflow to export secure user interview within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure user interview data. + - Apply product policies to export the user interview. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure user interview targets before running. +- name: product-export-weekly-release-note-2750 + title: Export Weekly Release Note (product) + description: Standard workflow to export weekly release note within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly release note requests. + - Execute export procedure on the designated release note. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly release note targets before running. +- name: product-export-monthly-release-note-2751 + title: Export Monthly Release Note (product) + description: Standard workflow to export monthly release note within the product department. + category: product + services: + - sheets + steps: + - Search for monthly release note records. + - Review and export the monthly release note. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly release note targets before running. +- name: product-export-urgent-release-note-2752 + title: Export Urgent Release Note (product) + description: Standard workflow to export urgent release note within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent release note data. + - Apply product policies to export the release note. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent release note targets before running. +- name: product-export-secure-release-note-2753 + title: Export Secure Release Note (product) + description: Standard workflow to export secure release note within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure release note requests. + - Execute export procedure on the designated release note. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure release note targets before running. +- name: product-import-weekly-roadmap-2754 + title: Import Weekly Roadmap (product) + description: Standard workflow to import weekly roadmap within the product department. + category: product + services: + - drive + steps: + - Search for weekly roadmap records. + - Review and import the weekly roadmap. + - Notify stakeholders via email. +- name: product-import-monthly-roadmap-2755 + title: Import Monthly Roadmap (product) + description: Standard workflow to import monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly roadmap data. + - Apply product policies to import the roadmap. + - Send a status update to the product team chat space. +- name: product-import-urgent-roadmap-2756 + title: Import Urgent Roadmap (product) + description: Standard workflow to import urgent roadmap within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent roadmap requests. + - Execute import procedure on the designated roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-import-secure-roadmap-2757 + title: Import Secure Roadmap (product) + description: Standard workflow to import secure roadmap within the product department. + category: product + services: + - docs + steps: + - Search for secure roadmap records. + - Review and import the secure roadmap. + - Archive results in a secure Drive folder. +- name: product-import-weekly-feature-spec-2758 + title: Import Weekly Feature Spec (product) + description: Standard workflow to import weekly feature spec within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly feature spec data. + - Apply product policies to import the feature spec. + - Notify stakeholders via email. +- name: product-import-monthly-feature-spec-2759 + title: Import Monthly Feature Spec (product) + description: Standard workflow to import monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly feature spec requests. + - Execute import procedure on the designated feature spec. + - Send a status update to the product team chat space. +- name: product-import-urgent-feature-spec-2760 + title: Import Urgent Feature Spec (product) + description: Standard workflow to import urgent feature spec within the product department. + category: product + services: + - calendar + steps: + - Search for urgent feature spec records. + - Review and import the urgent feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-import-secure-feature-spec-2761 + title: Import Secure Feature Spec (product) + description: Standard workflow to import secure feature spec within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure feature spec data. + - Apply product policies to import the feature spec. + - Archive results in a secure Drive folder. +- name: product-import-weekly-backlog-2762 + title: Import Weekly Backlog (product) + description: Standard workflow to import weekly backlog within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly backlog requests. + - Execute import procedure on the designated backlog. + - Notify stakeholders via email. +- name: product-import-monthly-backlog-2763 + title: Import Monthly Backlog (product) + description: Standard workflow to import monthly backlog within the product department. + category: product + services: + - sheets + steps: + - Search for monthly backlog records. + - Review and import the monthly backlog. + - Send a status update to the product team chat space. +- name: product-import-urgent-backlog-2764 + title: Import Urgent Backlog (product) + description: Standard workflow to import urgent backlog within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent backlog data. + - Apply product policies to import the backlog. + - Log completion in the master tracking spreadsheet. +- name: product-import-secure-backlog-2765 + title: Import Secure Backlog (product) + description: Standard workflow to import secure backlog within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure backlog requests. + - Execute import procedure on the designated backlog. + - Archive results in a secure Drive folder. +- name: product-import-weekly-user-interview-2766 + title: Import Weekly User Interview (product) + description: Standard workflow to import weekly user interview within the product department. + category: product + services: + - drive + steps: + - Search for weekly user interview records. + - Review and import the weekly user interview. + - Notify stakeholders via email. +- name: product-import-monthly-user-interview-2767 + title: Import Monthly User Interview (product) + description: Standard workflow to import monthly user interview within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly user interview data. + - Apply product policies to import the user interview. + - Send a status update to the product team chat space. +- name: product-import-urgent-user-interview-2768 + title: Import Urgent User Interview (product) + description: Standard workflow to import urgent user interview within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent user interview requests. + - Execute import procedure on the designated user interview. + - Log completion in the master tracking spreadsheet. +- name: product-import-secure-user-interview-2769 + title: Import Secure User Interview (product) + description: Standard workflow to import secure user interview within the product department. + category: product + services: + - docs + steps: + - Search for secure user interview records. + - Review and import the secure user interview. + - Archive results in a secure Drive folder. +- name: product-import-weekly-release-note-2770 + title: Import Weekly Release Note (product) + description: Standard workflow to import weekly release note within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly release note data. + - Apply product policies to import the release note. + - Notify stakeholders via email. +- name: product-import-monthly-release-note-2771 + title: Import Monthly Release Note (product) + description: Standard workflow to import monthly release note within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly release note requests. + - Execute import procedure on the designated release note. + - Send a status update to the product team chat space. +- name: product-import-urgent-release-note-2772 + title: Import Urgent Release Note (product) + description: Standard workflow to import urgent release note within the product department. + category: product + services: + - calendar + steps: + - Search for urgent release note records. + - Review and import the urgent release note. + - Log completion in the master tracking spreadsheet. +- name: product-import-secure-release-note-2773 + title: Import Secure Release Note (product) + description: Standard workflow to import secure release note within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure release note data. + - Apply product policies to import the release note. + - Archive results in a secure Drive folder. +- name: product-sync-weekly-roadmap-2774 + title: Sync Weekly Roadmap (product) + description: Standard workflow to sync weekly roadmap within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly roadmap requests. + - Execute sync procedure on the designated roadmap. + - Notify stakeholders via email. +- name: product-sync-monthly-roadmap-2775 + title: Sync Monthly Roadmap (product) + description: Standard workflow to sync monthly roadmap within the product department. + category: product + services: + - sheets + steps: + - Search for monthly roadmap records. + - Review and sync the monthly roadmap. + - Send a status update to the product team chat space. +- name: product-sync-urgent-roadmap-2776 + title: Sync Urgent Roadmap (product) + description: Standard workflow to sync urgent roadmap within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent roadmap data. + - Apply product policies to sync the roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-sync-secure-roadmap-2777 + title: Sync Secure Roadmap (product) + description: Standard workflow to sync secure roadmap within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure roadmap requests. + - Execute sync procedure on the designated roadmap. + - Archive results in a secure Drive folder. +- name: product-sync-weekly-feature-spec-2778 + title: Sync Weekly Feature Spec (product) + description: Standard workflow to sync weekly feature spec within the product department. + category: product + services: + - drive + steps: + - Search for weekly feature spec records. + - Review and sync the weekly feature spec. + - Notify stakeholders via email. +- name: product-sync-monthly-feature-spec-2779 + title: Sync Monthly Feature Spec (product) + description: Standard workflow to sync monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly feature spec data. + - Apply product policies to sync the feature spec. + - Send a status update to the product team chat space. +- name: product-sync-urgent-feature-spec-2780 + title: Sync Urgent Feature Spec (product) + description: Standard workflow to sync urgent feature spec within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent feature spec requests. + - Execute sync procedure on the designated feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-sync-secure-feature-spec-2781 + title: Sync Secure Feature Spec (product) + description: Standard workflow to sync secure feature spec within the product department. + category: product + services: + - docs + steps: + - Search for secure feature spec records. + - Review and sync the secure feature spec. + - Archive results in a secure Drive folder. +- name: product-sync-weekly-backlog-2782 + title: Sync Weekly Backlog (product) + description: Standard workflow to sync weekly backlog within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly backlog data. + - Apply product policies to sync the backlog. + - Notify stakeholders via email. +- name: product-sync-monthly-backlog-2783 + title: Sync Monthly Backlog (product) + description: Standard workflow to sync monthly backlog within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly backlog requests. + - Execute sync procedure on the designated backlog. + - Send a status update to the product team chat space. +- name: product-sync-urgent-backlog-2784 + title: Sync Urgent Backlog (product) + description: Standard workflow to sync urgent backlog within the product department. + category: product + services: + - calendar + steps: + - Search for urgent backlog records. + - Review and sync the urgent backlog. + - Log completion in the master tracking spreadsheet. +- name: product-sync-secure-backlog-2785 + title: Sync Secure Backlog (product) + description: Standard workflow to sync secure backlog within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure backlog data. + - Apply product policies to sync the backlog. + - Archive results in a secure Drive folder. +- name: product-sync-weekly-user-interview-2786 + title: Sync Weekly User Interview (product) + description: Standard workflow to sync weekly user interview within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly user interview requests. + - Execute sync procedure on the designated user interview. + - Notify stakeholders via email. +- name: product-sync-monthly-user-interview-2787 + title: Sync Monthly User Interview (product) + description: Standard workflow to sync monthly user interview within the product department. + category: product + services: + - sheets + steps: + - Search for monthly user interview records. + - Review and sync the monthly user interview. + - Send a status update to the product team chat space. +- name: product-sync-urgent-user-interview-2788 + title: Sync Urgent User Interview (product) + description: Standard workflow to sync urgent user interview within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent user interview data. + - Apply product policies to sync the user interview. + - Log completion in the master tracking spreadsheet. +- name: product-sync-secure-user-interview-2789 + title: Sync Secure User Interview (product) + description: Standard workflow to sync secure user interview within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure user interview requests. + - Execute sync procedure on the designated user interview. + - Archive results in a secure Drive folder. +- name: product-sync-weekly-release-note-2790 + title: Sync Weekly Release Note (product) + description: Standard workflow to sync weekly release note within the product department. + category: product + services: + - drive + steps: + - Search for weekly release note records. + - Review and sync the weekly release note. + - Notify stakeholders via email. +- name: product-sync-monthly-release-note-2791 + title: Sync Monthly Release Note (product) + description: Standard workflow to sync monthly release note within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly release note data. + - Apply product policies to sync the release note. + - Send a status update to the product team chat space. +- name: product-sync-urgent-release-note-2792 + title: Sync Urgent Release Note (product) + description: Standard workflow to sync urgent release note within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent release note requests. + - Execute sync procedure on the designated release note. + - Log completion in the master tracking spreadsheet. +- name: product-sync-secure-release-note-2793 + title: Sync Secure Release Note (product) + description: Standard workflow to sync secure release note within the product department. + category: product + services: + - docs + steps: + - Search for secure release note records. + - Review and sync the secure release note. + - Archive results in a secure Drive folder. +- name: product-migrate-weekly-roadmap-2794 + title: Migrate Weekly Roadmap (product) + description: Standard workflow to migrate weekly roadmap within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly roadmap data. + - Apply product policies to migrate the roadmap. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly roadmap targets before running. +- name: product-migrate-monthly-roadmap-2795 + title: Migrate Monthly Roadmap (product) + description: Standard workflow to migrate monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly roadmap requests. + - Execute migrate procedure on the designated roadmap. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly roadmap targets before running. +- name: product-migrate-urgent-roadmap-2796 + title: Migrate Urgent Roadmap (product) + description: Standard workflow to migrate urgent roadmap within the product department. + category: product + services: + - calendar + steps: + - Search for urgent roadmap records. + - Review and migrate the urgent roadmap. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent roadmap targets before running. +- name: product-migrate-secure-roadmap-2797 + title: Migrate Secure Roadmap (product) + description: Standard workflow to migrate secure roadmap within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure roadmap data. + - Apply product policies to migrate the roadmap. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure roadmap targets before running. +- name: product-migrate-weekly-feature-spec-2798 + title: Migrate Weekly Feature Spec (product) + description: Standard workflow to migrate weekly feature spec within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly feature spec requests. + - Execute migrate procedure on the designated feature spec. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly feature spec targets before running. +- name: product-migrate-monthly-feature-spec-2799 + title: Migrate Monthly Feature Spec (product) + description: Standard workflow to migrate monthly feature spec within the product department. + category: product + services: + - sheets + steps: + - Search for monthly feature spec records. + - Review and migrate the monthly feature spec. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly feature spec targets before running. +- name: product-migrate-urgent-feature-spec-2800 + title: Migrate Urgent Feature Spec (product) + description: Standard workflow to migrate urgent feature spec within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent feature spec data. + - Apply product policies to migrate the feature spec. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent feature spec targets before running. +- name: product-migrate-secure-feature-spec-2801 + title: Migrate Secure Feature Spec (product) + description: Standard workflow to migrate secure feature spec within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure feature spec requests. + - Execute migrate procedure on the designated feature spec. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure feature spec targets before running. +- name: product-migrate-weekly-backlog-2802 + title: Migrate Weekly Backlog (product) + description: Standard workflow to migrate weekly backlog within the product department. + category: product + services: + - drive + steps: + - Search for weekly backlog records. + - Review and migrate the weekly backlog. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly backlog targets before running. +- name: product-migrate-monthly-backlog-2803 + title: Migrate Monthly Backlog (product) + description: Standard workflow to migrate monthly backlog within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly backlog data. + - Apply product policies to migrate the backlog. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly backlog targets before running. +- name: product-migrate-urgent-backlog-2804 + title: Migrate Urgent Backlog (product) + description: Standard workflow to migrate urgent backlog within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent backlog requests. + - Execute migrate procedure on the designated backlog. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent backlog targets before running. +- name: product-migrate-secure-backlog-2805 + title: Migrate Secure Backlog (product) + description: Standard workflow to migrate secure backlog within the product department. + category: product + services: + - docs + steps: + - Search for secure backlog records. + - Review and migrate the secure backlog. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure backlog targets before running. +- name: product-migrate-weekly-user-interview-2806 + title: Migrate Weekly User Interview (product) + description: Standard workflow to migrate weekly user interview within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly user interview data. + - Apply product policies to migrate the user interview. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly user interview targets before running. +- name: product-migrate-monthly-user-interview-2807 + title: Migrate Monthly User Interview (product) + description: Standard workflow to migrate monthly user interview within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly user interview requests. + - Execute migrate procedure on the designated user interview. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly user interview targets before running. +- name: product-migrate-urgent-user-interview-2808 + title: Migrate Urgent User Interview (product) + description: Standard workflow to migrate urgent user interview within the product department. + category: product + services: + - calendar + steps: + - Search for urgent user interview records. + - Review and migrate the urgent user interview. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent user interview targets before running. +- name: product-migrate-secure-user-interview-2809 + title: Migrate Secure User Interview (product) + description: Standard workflow to migrate secure user interview within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure user interview data. + - Apply product policies to migrate the user interview. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure user interview targets before running. +- name: product-migrate-weekly-release-note-2810 + title: Migrate Weekly Release Note (product) + description: Standard workflow to migrate weekly release note within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly release note requests. + - Execute migrate procedure on the designated release note. + - Notify stakeholders via email. + caution: Action involves bulk data manipulation. Confirm weekly release note targets before running. +- name: product-migrate-monthly-release-note-2811 + title: Migrate Monthly Release Note (product) + description: Standard workflow to migrate monthly release note within the product department. + category: product + services: + - sheets + steps: + - Search for monthly release note records. + - Review and migrate the monthly release note. + - Send a status update to the product team chat space. + caution: Action involves bulk data manipulation. Confirm monthly release note targets before running. +- name: product-migrate-urgent-release-note-2812 + title: Migrate Urgent Release Note (product) + description: Standard workflow to migrate urgent release note within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent release note data. + - Apply product policies to migrate the release note. + - Log completion in the master tracking spreadsheet. + caution: Action involves bulk data manipulation. Confirm urgent release note targets before running. +- name: product-migrate-secure-release-note-2813 + title: Migrate Secure Release Note (product) + description: Standard workflow to migrate secure release note within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure release note requests. + - Execute migrate procedure on the designated release note. + - Archive results in a secure Drive folder. + caution: Action involves bulk data manipulation. Confirm secure release note targets before running. +- name: product-backup-weekly-roadmap-2814 + title: Backup Weekly Roadmap (product) + description: Standard workflow to backup weekly roadmap within the product department. + category: product + services: + - drive + steps: + - Search for weekly roadmap records. + - Review and backup the weekly roadmap. + - Notify stakeholders via email. +- name: product-backup-monthly-roadmap-2815 + title: Backup Monthly Roadmap (product) + description: Standard workflow to backup monthly roadmap within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly roadmap data. + - Apply product policies to backup the roadmap. + - Send a status update to the product team chat space. +- name: product-backup-urgent-roadmap-2816 + title: Backup Urgent Roadmap (product) + description: Standard workflow to backup urgent roadmap within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent roadmap requests. + - Execute backup procedure on the designated roadmap. + - Log completion in the master tracking spreadsheet. +- name: product-backup-secure-roadmap-2817 + title: Backup Secure Roadmap (product) + description: Standard workflow to backup secure roadmap within the product department. + category: product + services: + - docs + steps: + - Search for secure roadmap records. + - Review and backup the secure roadmap. + - Archive results in a secure Drive folder. +- name: product-backup-weekly-feature-spec-2818 + title: Backup Weekly Feature Spec (product) + description: Standard workflow to backup weekly feature spec within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly feature spec data. + - Apply product policies to backup the feature spec. + - Notify stakeholders via email. +- name: product-backup-monthly-feature-spec-2819 + title: Backup Monthly Feature Spec (product) + description: Standard workflow to backup monthly feature spec within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly feature spec requests. + - Execute backup procedure on the designated feature spec. + - Send a status update to the product team chat space. +- name: product-backup-urgent-feature-spec-2820 + title: Backup Urgent Feature Spec (product) + description: Standard workflow to backup urgent feature spec within the product department. + category: product + services: + - calendar + steps: + - Search for urgent feature spec records. + - Review and backup the urgent feature spec. + - Log completion in the master tracking spreadsheet. +- name: product-backup-secure-feature-spec-2821 + title: Backup Secure Feature Spec (product) + description: Standard workflow to backup secure feature spec within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure feature spec data. + - Apply product policies to backup the feature spec. + - Archive results in a secure Drive folder. +- name: product-backup-weekly-backlog-2822 + title: Backup Weekly Backlog (product) + description: Standard workflow to backup weekly backlog within the product department. + category: product + services: + - drive + - sheets + - calendar + steps: + - Check system for pending weekly backlog requests. + - Execute backup procedure on the designated backlog. + - Notify stakeholders via email. +- name: product-backup-monthly-backlog-2823 + title: Backup Monthly Backlog (product) + description: Standard workflow to backup monthly backlog within the product department. + category: product + services: + - sheets + steps: + - Search for monthly backlog records. + - Review and backup the monthly backlog. + - Send a status update to the product team chat space. +- name: product-backup-urgent-backlog-2824 + title: Backup Urgent Backlog (product) + description: Standard workflow to backup urgent backlog within the product department. + category: product + services: + - calendar + - docs + steps: + - Fetch latest urgent backlog data. + - Apply product policies to backup the backlog. + - Log completion in the master tracking spreadsheet. +- name: product-backup-secure-backlog-2825 + title: Backup Secure Backlog (product) + description: Standard workflow to backup secure backlog within the product department. + category: product + services: + - docs + - drive + - sheets + steps: + - Check system for pending secure backlog requests. + - Execute backup procedure on the designated backlog. + - Archive results in a secure Drive folder. +- name: product-backup-weekly-user-interview-2826 + title: Backup Weekly User Interview (product) + description: Standard workflow to backup weekly user interview within the product department. + category: product + services: + - drive + steps: + - Search for weekly user interview records. + - Review and backup the weekly user interview. + - Notify stakeholders via email. +- name: product-backup-monthly-user-interview-2827 + title: Backup Monthly User Interview (product) + description: Standard workflow to backup monthly user interview within the product department. + category: product + services: + - sheets + - calendar + steps: + - Fetch latest monthly user interview data. + - Apply product policies to backup the user interview. + - Send a status update to the product team chat space. +- name: product-backup-urgent-user-interview-2828 + title: Backup Urgent User Interview (product) + description: Standard workflow to backup urgent user interview within the product department. + category: product + services: + - calendar + - docs + - drive + steps: + - Check system for pending urgent user interview requests. + - Execute backup procedure on the designated user interview. + - Log completion in the master tracking spreadsheet. +- name: product-backup-secure-user-interview-2829 + title: Backup Secure User Interview (product) + description: Standard workflow to backup secure user interview within the product department. + category: product + services: + - docs + steps: + - Search for secure user interview records. + - Review and backup the secure user interview. + - Archive results in a secure Drive folder. +- name: product-backup-weekly-release-note-2830 + title: Backup Weekly Release Note (product) + description: Standard workflow to backup weekly release note within the product department. + category: product + services: + - drive + - sheets + steps: + - Fetch latest weekly release note data. + - Apply product policies to backup the release note. + - Notify stakeholders via email. +- name: product-backup-monthly-release-note-2831 + title: Backup Monthly Release Note (product) + description: Standard workflow to backup monthly release note within the product department. + category: product + services: + - sheets + - calendar + - docs + steps: + - Check system for pending monthly release note requests. + - Execute backup procedure on the designated release note. + - Send a status update to the product team chat space. +- name: product-backup-urgent-release-note-2832 + title: Backup Urgent Release Note (product) + description: Standard workflow to backup urgent release note within the product department. + category: product + services: + - calendar + steps: + - Search for urgent release note records. + - Review and backup the urgent release note. + - Log completion in the master tracking spreadsheet. +- name: product-backup-secure-release-note-2833 + title: Backup Secure Release Note (product) + description: Standard workflow to backup secure release note within the product department. + category: product + services: + - docs + - drive + steps: + - Fetch latest secure release note data. + - Apply product policies to backup the release note. + - Archive results in a secure Drive folder. diff --git a/src/generate_skills.rs b/src/generate_skills.rs index 2f6e5b3a..1cb17bf6 100644 --- a/src/generate_skills.rs +++ b/src/generate_skills.rs @@ -23,6 +23,42 @@ use crate::services; use clap::Command; use std::path::Path; +const PERSONAS_YAML: &str = include_str!("../skills/registry/personas.yaml"); +const RECIPES_YAML: &str = include_str!("../skills/registry/recipes.yaml"); + +#[derive(serde::Deserialize)] +struct PersonaRegistry { + personas: Vec, +} + +#[derive(serde::Deserialize)] +struct PersonaEntry { + name: String, + title: String, + description: String, + services: Vec, + workflows: Vec, + instructions: Vec, + #[serde(default)] + tips: Vec, +} + +#[derive(serde::Deserialize)] +struct RecipeRegistry { + recipes: Vec, +} + +#[derive(serde::Deserialize)] +struct RecipeEntry { + name: String, + title: String, + description: String, + category: String, + services: Vec, + steps: Vec, + caution: Option, +} + /// Entry point for `gws generate-skills`. pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { let output_dir = parse_output_dir(args); @@ -47,12 +83,21 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { entry.api_name, entry.version ); - // Fetch discovery doc - let doc = match discovery::fetch_discovery_document(entry.api_name, entry.version).await { - Ok(d) => d, - Err(e) => { - eprintln!(" WARNING: Failed to fetch discovery doc for {alias}: {e}"); - continue; + // Synthetic services (no Discovery doc) use an empty RestDescription + let doc = if entry.api_name == "workflow" { + discovery::RestDescription { + name: "workflow".to_string(), + description: Some(entry.description.to_string()), + ..Default::default() + } + } else { + // Fetch discovery doc + match discovery::fetch_discovery_document(entry.api_name, entry.version).await { + Ok(d) => d, + Err(e) => { + eprintln!(" WARNING: Failed to fetch discovery doc for {alias}: {e}"); + continue; + } } }; @@ -101,6 +146,55 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { } } + // Generate Personas + if filter + .as_ref() + .is_none_or(|f| "persona".contains(f.as_str()) || "personas".contains(f.as_str())) + { + if let Ok(registry) = serde_yaml::from_str::(PERSONAS_YAML) { + eprintln!( + "Generating skills for {} personas...", + registry.personas.len() + ); + for persona in registry.personas { + let name = format!("persona-{}", persona.name); + let emit = match &filter { + Some(f) => name.contains(f.as_str()), + None => true, + }; + if emit { + let md = render_persona_skill(&persona); + write_skill(output_path, &name, &md)?; + } + } + } else { + eprintln!("WARNING: Failed to parse personas.yaml"); + } + } + + // Generate Recipes + if filter + .as_ref() + .is_none_or(|f| "recipe".contains(f.as_str()) || "recipes".contains(f.as_str())) + { + if let Ok(registry) = serde_yaml::from_str::(RECIPES_YAML) { + eprintln!("Generating skills for {} recipes...", registry.recipes.len()); + for recipe in registry.recipes { + let name = format!("recipe-{}", recipe.name); + let emit = match &filter { + Some(f) => name.contains(f.as_str()), + None => true, + }; + if emit { + let md = render_recipe_skill(&recipe); + write_skill(output_path, &name, &md)?; + } + } + } else { + eprintln!("WARNING: Failed to parse recipes.yaml"); + } + } + eprintln!("\nDone. Skills written to {output_dir}/"); Ok(()) } @@ -491,3 +585,180 @@ gws [sub-resource] [flags] write_skill(base, "gws-shared", content) } + +fn render_persona_skill(persona: &PersonaEntry) -> String { + let mut out = String::new(); + + // metadata JSON string for skills array + let required_skills = persona + .services + .iter() + .map(|s| format!("\"gws-{s}\"")) + .collect::>() + .join(", "); + + out.push_str(&format!( + r#"--- +name: persona-{name} +version: 1.0.0 +description: "{description}" +metadata: + openclaw: + category: "persona" + requires: + bins: ["gws"] + skills: [{skills}] +--- + +# {title} + +> **PREREQUISITE:** Load the following utility skills to operate as this persona: {skills_list} + +{description} + +## Relevant Workflows +{workflows} + +## Instructions +"#, + name = persona.name, + description = persona.description, + title = persona.title, + skills = required_skills, + skills_list = persona + .services + .iter() + .map(|s| format!("`gws-{s}`")) + .collect::>() + .join(", "), + workflows = persona + .workflows + .iter() + .map(|w| format!("- `gws workflow {w}`")) + .collect::>() + .join("\n") + )); + + for inst in &persona.instructions { + out.push_str(&format!("- {inst}\n")); + } + out.push('\n'); + + if !persona.tips.is_empty() { + out.push_str("## Tips\n"); + for tip in &persona.tips { + out.push_str(&format!("- {tip}\n")); + } + out.push('\n'); + } + + out +} + +fn render_recipe_skill(recipe: &RecipeEntry) -> String { + let mut out = String::new(); + + let required_skills = recipe + .services + .iter() + .map(|s| format!("\"gws-{s}\"")) + .collect::>() + .join(", "); + + out.push_str(&format!( + r#"--- +name: recipe-{name} +version: 1.0.0 +description: "{description}" +metadata: + openclaw: + category: "recipe" + domain: "{category}" + requires: + bins: ["gws"] + skills: [{skills}] +--- + +# {title} + +> **PREREQUISITE:** Load the following skills to execute this recipe: {skills_list} + +{description} + +"#, + name = recipe.name, + description = recipe.description, + title = recipe.title, + category = recipe.category, + skills = required_skills, + skills_list = recipe + .services + .iter() + .map(|s| format!("`gws-{s}`")) + .collect::>() + .join(", "), + )); + + if let Some(caution) = &recipe.caution { + out.push_str(&format!("> [!CAUTION]\n> {caution}\n\n")); + } + + out.push_str("## Steps\n\n"); + for (i, step) in recipe.steps.iter().enumerate() { + out.push_str(&format!("{}. {}\n", i + 1, step)); + } + out.push('\n'); + + out +} + +#[cfg(test)] +mod tests { + use super::*; + use crate::helpers; + use crate::services; + use clap::Command; + use std::collections::HashSet; + + #[test] + fn test_registry_references() { + let personas: PersonaRegistry = serde_yaml::from_str(PERSONAS_YAML).expect("valid personas yaml"); + let recipes: RecipeRegistry = serde_yaml::from_str(RECIPES_YAML).expect("valid recipes yaml"); + + // Valid services mapped by api_name or alias + let all_services = services::SERVICES; + let mut valid_services = HashSet::new(); + for s in all_services { + valid_services.insert(s.api_name); + for alias in s.aliases { + valid_services.insert(*alias); + } + } + // Workflows are synthetic and technically a service, so add it + valid_services.insert("workflow"); + + // Valid workflows + let wf_helper = helpers::get_helper("workflow").expect("workflow helper missing"); + let mut cli = Command::new("test"); + let doc = crate::discovery::RestDescription::default(); + cli = wf_helper.inject_commands(cli, &doc); + let valid_workflows: HashSet<_> = cli.get_subcommands().map(|s| s.get_name().to_string()).collect(); + + // Validate personas + for p in personas.personas { + for s in &p.services { + assert!(valid_services.contains(s.as_str()), "Persona '{}' refs invalid service '{}'", p.name, s); + } + for w in &p.workflows { + assert!(valid_workflows.contains(w.as_str()), "Persona '{}' refs invalid workflow '{}'", p.name, w); + } + } + + // Validate recipes + for r in recipes.recipes { + for s in &r.services { + assert!(valid_services.contains(s.as_str()), "Recipe '{}' refs invalid service '{}'", r.name, s); + } + } + } +} diff --git a/src/helpers/mod.rs b/src/helpers/mod.rs index 3d696af1..378f1ea5 100644 --- a/src/helpers/mod.rs +++ b/src/helpers/mod.rs @@ -25,6 +25,7 @@ pub mod gmail; pub mod modelarmor; pub mod script; pub mod sheets; +pub mod workflows; /// A trait for service-specific CLI helpers that inject custom commands. pub trait Helper: Send + Sync { @@ -58,6 +59,7 @@ pub fn get_helper(service: &str) -> Option> { "script" | "apps-script" => Some(Box::new(script::ScriptHelper)), "workspaceevents" => Some(Box::new(events::EventsHelper)), "modelarmor" => Some(Box::new(modelarmor::ModelArmorHelper)), + "workflow" => Some(Box::new(workflows::WorkflowHelper)), _ => None, } } diff --git a/src/helpers/workflows.rs b/src/helpers/workflows.rs new file mode 100644 index 00000000..40d26e6a --- /dev/null +++ b/src/helpers/workflows.rs @@ -0,0 +1,647 @@ +// Copyright 2026 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//! Cross-service workflow helpers that compose multiple Google Workspace API +//! calls into high-level productivity actions. + +use super::Helper; +use crate::auth; +use crate::error::GwsError; +use clap::{Arg, ArgMatches, Command}; +use serde_json::{json, Value}; +use std::future::Future; +use std::pin::Pin; + +pub struct WorkflowHelper; + +impl Helper for WorkflowHelper { + fn inject_commands( + &self, + mut cmd: Command, + _doc: &crate::discovery::RestDescription, + ) -> Command { + cmd = cmd.subcommand(build_standup_report_cmd()); + cmd = cmd.subcommand(build_meeting_prep_cmd()); + cmd = cmd.subcommand(build_email_to_task_cmd()); + cmd = cmd.subcommand(build_weekly_digest_cmd()); + cmd = cmd.subcommand(build_file_announce_cmd()); + cmd + } + + fn handle<'a>( + &'a self, + _doc: &'a crate::discovery::RestDescription, + matches: &'a ArgMatches, + _sanitize_config: &'a crate::helpers::modelarmor::SanitizeConfig, + ) -> Pin> + Send + 'a>> { + Box::pin(async move { + if let Some(m) = matches.subcommand_matches("+standup-report") { + handle_standup_report(m).await?; + return Ok(true); + } + if let Some(m) = matches.subcommand_matches("+meeting-prep") { + handle_meeting_prep(m).await?; + return Ok(true); + } + if let Some(m) = matches.subcommand_matches("+email-to-task") { + handle_email_to_task(m).await?; + return Ok(true); + } + if let Some(m) = matches.subcommand_matches("+weekly-digest") { + handle_weekly_digest(m).await?; + return Ok(true); + } + if let Some(m) = matches.subcommand_matches("+file-announce") { + handle_file_announce(m).await?; + return Ok(true); + } + Ok(false) + }) + } + + fn helper_only(&self) -> bool { + true + } +} + +// --------------------------------------------------------------------------- +// Command definitions +// --------------------------------------------------------------------------- + +fn build_standup_report_cmd() -> Command { + Command::new("+standup-report") + .about("[Helper] Today's meetings + open tasks as a standup summary") + .arg( + Arg::new("format") + .long("format") + .help("Output format: json (default), table, yaml, csv") + .value_name("FORMAT") + .global(true), + ) + .after_help("\ +EXAMPLES: + gws workflow +standup-report + gws workflow +standup-report --format table + +TIPS: + Read-only — never modifies data. + Combines calendar agenda (today) with tasks list.") +} + +fn build_meeting_prep_cmd() -> Command { + Command::new("+meeting-prep") + .about("[Helper] Prepare for your next meeting: agenda, attendees, and linked docs") + .arg( + Arg::new("calendar") + .long("calendar") + .help("Calendar ID (default: primary)") + .default_value("primary") + .value_name("ID"), + ) + .arg( + Arg::new("format") + .long("format") + .help("Output format: json (default), table, yaml, csv") + .value_name("FORMAT") + .global(true), + ) + .after_help("\ +EXAMPLES: + gws workflow +meeting-prep + gws workflow +meeting-prep --calendar Work + +TIPS: + Read-only — never modifies data. + Shows the next upcoming event with attendees and description.") +} + +fn build_email_to_task_cmd() -> Command { + Command::new("+email-to-task") + .about("[Helper] Convert a Gmail message into a Google Tasks entry") + .arg( + Arg::new("message-id") + .long("message-id") + .help("Gmail message ID to convert") + .required(true) + .value_name("ID"), + ) + .arg( + Arg::new("tasklist") + .long("tasklist") + .help("Task list ID (default: @default)") + .default_value("@default") + .value_name("ID"), + ) + .after_help("\ +EXAMPLES: + gws workflow +email-to-task --message-id MSG_ID + gws workflow +email-to-task --message-id MSG_ID --tasklist LIST_ID + +TIPS: + Reads the email subject as the task title and snippet as notes. + Creates a new task — confirm with the user before executing.") +} + +fn build_weekly_digest_cmd() -> Command { + Command::new("+weekly-digest") + .about("[Helper] Weekly summary: this week's meetings + unread email count") + .arg( + Arg::new("format") + .long("format") + .help("Output format: json (default), table, yaml, csv") + .value_name("FORMAT") + .global(true), + ) + .after_help("\ +EXAMPLES: + gws workflow +weekly-digest + gws workflow +weekly-digest --format table + +TIPS: + Read-only — never modifies data. + Combines calendar agenda (week) with gmail triage summary.") +} + +fn build_file_announce_cmd() -> Command { + Command::new("+file-announce") + .about("[Helper] Announce a Drive file in a Chat space") + .arg( + Arg::new("file-id") + .long("file-id") + .help("Drive file ID to announce") + .required(true) + .value_name("ID"), + ) + .arg( + Arg::new("space") + .long("space") + .help("Chat space name (e.g. spaces/SPACE_ID)") + .required(true) + .value_name("SPACE"), + ) + .arg( + Arg::new("message") + .long("message") + .help("Custom announcement message") + .value_name("TEXT"), + ) + .arg( + Arg::new("format") + .long("format") + .help("Output format: json (default), table, yaml, csv") + .value_name("FORMAT") + .global(true), + ) + .after_help("\ +EXAMPLES: + gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123 + gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123 --message 'Check this out!' + +TIPS: + This is a write command — sends a Chat message. + Use `gws drive +upload` first to upload the file, then announce it here. + Fetches the file name from Drive to build the announcement.") +} + +// --------------------------------------------------------------------------- +// Handlers +// --------------------------------------------------------------------------- + +async fn get_json( + client: &reqwest::Client, + url: &str, + token: &str, +) -> Result { + let resp = client + .get(url) + .bearer_auth(token) + .send() + .await + .map_err(|e| GwsError::Other(anyhow::anyhow!("HTTP request failed: {e}")))?; + + if !resp.status().is_success() { + let status = resp.status(); + let body = resp.text().await.unwrap_or_default(); + return Err(GwsError::Api { + code: status.as_u16(), + message: body, + reason: "workflow_request_failed".to_string(), + }); + } + + resp.json::() + .await + .map_err(|e| GwsError::Other(anyhow::anyhow!("JSON parse failed: {e}"))) +} + +fn format_and_print(value: &Value, matches: &ArgMatches) { + let fmt = matches + .get_one::("format") + .map(|s| crate::formatter::OutputFormat::from_str(s)) + .unwrap_or_default(); + println!("{}", crate::formatter::format_value(value, &fmt)); +} + +async fn handle_standup_report(matches: &ArgMatches) -> Result<(), GwsError> { + let cal_scope = "https://www.googleapis.com/auth/calendar.readonly"; + let tasks_scope = "https://www.googleapis.com/auth/tasks.readonly"; + let token = auth::get_token(&[cal_scope, tasks_scope]) + .await + .map_err(|e| GwsError::Auth(format!("Auth failed: {e}")))?; + + let client = crate::client::build_client()?; + + // Today's time range + let now = std::time::SystemTime::now() + .duration_since(std::time::UNIX_EPOCH) + .unwrap() + .as_secs(); + let day_start = (now / 86400) * 86400; + let day_end = day_start + 86400; + let time_min = epoch_to_rfc3339(day_start); + let time_max = epoch_to_rfc3339(day_end); + + // Fetch today's events + let events_url = format!( + "https://www.googleapis.com/calendar/v3/calendars/primary/events?timeMin={}&timeMax={}&singleEvents=true&orderBy=startTime&maxResults=25", + urlencoded(&time_min), + urlencoded(&time_max), + ); + let events_json = get_json(&client, &events_url, &token).await.unwrap_or(json!({})); + let events = events_json + .get("items") + .and_then(|i| i.as_array()) + .cloned() + .unwrap_or_default(); + + let meetings: Vec = events + .iter() + .map(|e| { + json!({ + "summary": e.get("summary").and_then(|v| v.as_str()).unwrap_or("(No title)"), + "start": e.get("start").and_then(|s| s.get("dateTime").or(s.get("date"))).and_then(|v| v.as_str()).unwrap_or(""), + "end": e.get("end").and_then(|s| s.get("dateTime").or(s.get("date"))).and_then(|v| v.as_str()).unwrap_or(""), + }) + }) + .collect(); + + // Fetch open tasks + let tasks_url = "https://tasks.googleapis.com/tasks/v1/lists/@default/tasks?showCompleted=false&maxResults=20"; + let tasks_json = get_json(&client, tasks_url, &token).await.unwrap_or(json!({})); + let tasks = tasks_json + .get("items") + .and_then(|i| i.as_array()) + .cloned() + .unwrap_or_default(); + + let open_tasks: Vec = tasks + .iter() + .map(|t| { + json!({ + "title": t.get("title").and_then(|v| v.as_str()).unwrap_or(""), + "due": t.get("due").and_then(|v| v.as_str()).unwrap_or(""), + }) + }) + .collect(); + + let output = json!({ + "meetings": meetings, + "meetingCount": meetings.len(), + "tasks": open_tasks, + "taskCount": open_tasks.len(), + "date": time_min.split('T').next().unwrap_or(""), + }); + + format_and_print(&output, matches); + Ok(()) +} + +async fn handle_meeting_prep(matches: &ArgMatches) -> Result<(), GwsError> { + let cal_scope = "https://www.googleapis.com/auth/calendar.readonly"; + let token = auth::get_token(&[cal_scope]) + .await + .map_err(|e| GwsError::Auth(format!("Auth failed: {e}")))?; + + let client = crate::client::build_client()?; + let calendar_id = matches + .get_one::("calendar") + .map(|s| s.as_str()) + .unwrap_or("primary"); + + // Fetch next upcoming event + let now_rfc = epoch_to_rfc3339( + std::time::SystemTime::now() + .duration_since(std::time::UNIX_EPOCH) + .unwrap() + .as_secs(), + ); + + let events_url = format!( + "https://www.googleapis.com/calendar/v3/calendars/{}/events?timeMin={}&singleEvents=true&orderBy=startTime&maxResults=1", + urlencoded(calendar_id), + urlencoded(&now_rfc), + ); + let events_json = get_json(&client, &events_url, &token).await?; + let items = events_json + .get("items") + .and_then(|i| i.as_array()) + .cloned() + .unwrap_or_default(); + + if items.is_empty() { + let output = json!({ "message": "No upcoming meetings found." }); + format_and_print(&output, matches); + return Ok(()); + } + + let event = &items[0]; + let attendees = event + .get("attendees") + .and_then(|a| a.as_array()) + .cloned() + .unwrap_or_default(); + + let attendee_list: Vec = attendees + .iter() + .map(|a| { + json!({ + "email": a.get("email").and_then(|v| v.as_str()).unwrap_or(""), + "responseStatus": a.get("responseStatus").and_then(|v| v.as_str()).unwrap_or(""), + }) + }) + .collect(); + + let output = json!({ + "summary": event.get("summary").and_then(|v| v.as_str()).unwrap_or("(No title)"), + "start": event.get("start").and_then(|s| s.get("dateTime").or(s.get("date"))).and_then(|v| v.as_str()).unwrap_or(""), + "end": event.get("end").and_then(|s| s.get("dateTime").or(s.get("date"))).and_then(|v| v.as_str()).unwrap_or(""), + "description": event.get("description").and_then(|v| v.as_str()).unwrap_or(""), + "location": event.get("location").and_then(|v| v.as_str()).unwrap_or(""), + "hangoutLink": event.get("hangoutLink").and_then(|v| v.as_str()).unwrap_or(""), + "htmlLink": event.get("htmlLink").and_then(|v| v.as_str()).unwrap_or(""), + "attendees": attendee_list, + "attendeeCount": attendee_list.len(), + }); + + format_and_print(&output, matches); + Ok(()) +} + +async fn handle_email_to_task(matches: &ArgMatches) -> Result<(), GwsError> { + let gmail_scope = "https://www.googleapis.com/auth/gmail.readonly"; + let tasks_scope = "https://www.googleapis.com/auth/tasks"; + let token = auth::get_token(&[gmail_scope, tasks_scope]) + .await + .map_err(|e| GwsError::Auth(format!("Auth failed: {e}")))?; + + let client = crate::client::build_client()?; + let message_id = matches.get_one::("message-id").unwrap(); + let tasklist = matches + .get_one::("tasklist") + .map(|s| s.as_str()) + .unwrap_or("@default"); + + // 1. Fetch the email + let msg_url = format!( + "https://gmail.googleapis.com/gmail/v1/users/me/messages/{}?format=metadata&metadataHeaders=Subject", + message_id, + ); + let msg_json = get_json(&client, &msg_url, &token).await?; + + let subject = msg_json + .get("payload") + .and_then(|p| p.get("headers")) + .and_then(|h| h.as_array()) + .and_then(|headers| { + headers.iter().find(|h| { + h.get("name") + .and_then(|n| n.as_str()) + .is_some_and(|n| n.eq_ignore_ascii_case("Subject")) + }) + }) + .and_then(|h| h.get("value")) + .and_then(|v| v.as_str()) + .unwrap_or("(No subject)"); + + let snippet = msg_json + .get("snippet") + .and_then(|v| v.as_str()) + .unwrap_or(""); + + // 2. Create the task + let task_body = json!({ + "title": subject, + "notes": format!("From email: {}\n\n{}", message_id, snippet), + }); + + let task_url = format!( + "https://tasks.googleapis.com/tasks/v1/lists/{}/tasks", + tasklist, + ); + + let resp = client + .post(&task_url) + .bearer_auth(&token) + .json(&task_body) + .send() + .await + .map_err(|e| GwsError::Other(anyhow::anyhow!("Failed to create task: {e}")))?; + + if !resp.status().is_success() { + let status = resp.status(); + let body = resp.text().await.unwrap_or_default(); + return Err(GwsError::Api { + code: status.as_u16(), + message: body, + reason: "task_create_failed".to_string(), + }); + } + + let task_result: Value = resp.json().await.unwrap_or(json!({})); + let output = json!({ + "created": true, + "taskId": task_result.get("id").and_then(|v| v.as_str()).unwrap_or(""), + "title": subject, + "sourceMessageId": message_id, + }); + + format_and_print(&output, matches); + Ok(()) +} + +async fn handle_weekly_digest(matches: &ArgMatches) -> Result<(), GwsError> { + let cal_scope = "https://www.googleapis.com/auth/calendar.readonly"; + let gmail_scope = "https://www.googleapis.com/auth/gmail.readonly"; + let token = auth::get_token(&[cal_scope, gmail_scope]) + .await + .map_err(|e| GwsError::Auth(format!("Auth failed: {e}")))?; + + let client = crate::client::build_client()?; + + let now = std::time::SystemTime::now() + .duration_since(std::time::UNIX_EPOCH) + .unwrap() + .as_secs(); + let week_end = now + 7 * 86400; + let time_min = epoch_to_rfc3339(now); + let time_max = epoch_to_rfc3339(week_end); + + // Fetch this week's events + let events_url = format!( + "https://www.googleapis.com/calendar/v3/calendars/primary/events?timeMin={}&timeMax={}&singleEvents=true&orderBy=startTime&maxResults=50", + urlencoded(&time_min), + urlencoded(&time_max), + ); + let events_json = get_json(&client, &events_url, &token).await.unwrap_or(json!({})); + let events = events_json + .get("items") + .and_then(|i| i.as_array()) + .cloned() + .unwrap_or_default(); + + let meetings: Vec = events + .iter() + .map(|e| { + json!({ + "summary": e.get("summary").and_then(|v| v.as_str()).unwrap_or("(No title)"), + "start": e.get("start").and_then(|s| s.get("dateTime").or(s.get("date"))).and_then(|v| v.as_str()).unwrap_or(""), + }) + }) + .collect(); + + // Fetch unread email count + let gmail_url = "https://gmail.googleapis.com/gmail/v1/users/me/messages?q=is%3Aunread&maxResults=1"; + let gmail_json = get_json(&client, gmail_url, &token).await.unwrap_or(json!({})); + let unread_estimate = gmail_json + .get("resultSizeEstimate") + .and_then(|v| v.as_u64()) + .unwrap_or(0); + + let output = json!({ + "meetings": meetings, + "meetingCount": meetings.len(), + "unreadEmails": unread_estimate, + "periodStart": time_min, + "periodEnd": time_max, + }); + + format_and_print(&output, matches); + Ok(()) +} + +async fn handle_file_announce(matches: &ArgMatches) -> Result<(), GwsError> { + let drive_scope = "https://www.googleapis.com/auth/drive.readonly"; + let chat_scope = "https://www.googleapis.com/auth/chat.messages.create"; + let token = auth::get_token(&[drive_scope, chat_scope]) + .await + .map_err(|e| GwsError::Auth(format!("Auth failed: {e}")))?; + + let client = crate::client::build_client()?; + let file_id = matches.get_one::("file-id").unwrap(); + let space = matches.get_one::("space").unwrap(); + let custom_msg = matches.get_one::("message"); + + // 1. Fetch file metadata from Drive + let file_url = format!( + "https://www.googleapis.com/drive/v3/files/{}?fields=id,name,webViewLink", + file_id, + ); + let file_json = get_json(&client, &file_url, &token).await?; + let file_name = file_json + .get("name") + .and_then(|v| v.as_str()) + .unwrap_or("file"); + let default_link = format!("https://drive.google.com/file/d/{}/view", file_id); + let file_link = file_json + .get("webViewLink") + .and_then(|v| v.as_str()) + .unwrap_or(&default_link); + + // 2. Send Chat message + let msg_text = custom_msg + .map(|m| format!("{m}\n{file_link}")) + .unwrap_or_else(|| format!("📎 {file_name}\n{file_link}")); + + let chat_body = json!({ "text": msg_text }); + let chat_url = format!("https://chat.googleapis.com/v1/{}/messages", space); + + let chat_resp = client + .post(&chat_url) + .bearer_auth(&token) + .json(&chat_body) + .send() + .await + .map_err(|e| GwsError::Other(anyhow::anyhow!("Chat send failed: {e}")))?; + + if !chat_resp.status().is_success() { + let status = chat_resp.status(); + let body = chat_resp.text().await.unwrap_or_default(); + return Err(GwsError::Api { + code: status.as_u16(), + message: body, + reason: "chat_send_failed".to_string(), + }); + } + + let output = json!({ + "announced": true, + "fileName": file_name, + "fileLink": file_link, + "space": space, + }); + + format_and_print(&output, matches); + Ok(()) +} + +// --------------------------------------------------------------------------- +// Utilities +// --------------------------------------------------------------------------- + +fn epoch_to_rfc3339(epoch: u64) -> String { + use chrono::{TimeZone, Utc}; + Utc.timestamp_opt(epoch as i64, 0).unwrap().to_rfc3339() +} + +fn urlencoded(s: &str) -> String { + s.replace('%', "%25") + .replace(' ', "%20") + .replace('@', "%40") + .replace('+', "%2B") + .replace(':', "%3A") +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_inject_commands() { + let helper = WorkflowHelper; + let cmd = Command::new("test"); + let doc = crate::discovery::RestDescription::default(); + let cmd = helper.inject_commands(cmd, &doc); + let names: Vec<_> = cmd.get_subcommands().map(|s| s.get_name().to_string()).collect(); + assert!(names.contains(&"+standup-report".to_string())); + assert!(names.contains(&"+meeting-prep".to_string())); + assert!(names.contains(&"+email-to-task".to_string())); + assert!(names.contains(&"+weekly-digest".to_string())); + assert!(names.contains(&"+file-announce".to_string())); + } + + #[test] + fn test_helper_only() { + assert!(WorkflowHelper.helper_only()); + } +} diff --git a/src/main.rs b/src/main.rs index 2d6bb14a..54644f31 100644 --- a/src/main.rs +++ b/src/main.rs @@ -104,10 +104,19 @@ async fn run() -> Result<(), GwsError> { // Parse service name and optional version override let (api_name, version) = parse_service_and_version(&args, first_arg)?; - // Fetch the Discovery Document - let doc = discovery::fetch_discovery_document(&api_name, &version) - .await - .map_err(|e| GwsError::Discovery(format!("{e:#}")))?; + // For synthetic services (no Discovery doc), use an empty RestDescription + let doc = if api_name == "workflow" { + discovery::RestDescription { + name: "workflow".to_string(), + description: Some("Cross-service productivity workflows".to_string()), + ..Default::default() + } + } else { + // Fetch the Discovery Document + discovery::fetch_discovery_document(&api_name, &version) + .await + .map_err(|e| GwsError::Discovery(format!("{e:#}")))? + }; // Build the dynamic command tree (all commands shown regardless of auth state) let cli = commands::build_cli(&doc); diff --git a/src/services.rs b/src/services.rs index fc5b1aa7..067831c8 100644 --- a/src/services.rs +++ b/src/services.rs @@ -168,6 +168,12 @@ pub const SERVICES: &[ServiceEntry] = &[ version: "v1", description: "Filter user-generated content for safety", }, + ServiceEntry { + aliases: &["workflow", "wf"], + api_name: "workflow", + version: "v1", + description: "Cross-service productivity workflows", + }, ]; /// Resolves a service alias to (api_name, version). diff --git a/src/setup.rs b/src/setup.rs index ea78f9f7..7da40655 100644 --- a/src/setup.rs +++ b/src/setup.rs @@ -1442,7 +1442,10 @@ mod tests { fn test_workspace_api_ids_covers_services() { let api_ids = all_api_ids(); for entry in services::SERVICES { - if entry.api_name == "modelarmor" || entry.api_name == "workspaceevents" { + if entry.api_name == "modelarmor" + || entry.api_name == "workspaceevents" + || entry.api_name == "workflow" + { continue; } let expected_suffix = if entry.api_name == "calendar" { From da4891c9580974bebb3b566fe8d4c0fbde8d8f39 Mon Sep 17 00:00:00 2001 From: jpoehnelt-bot Date: Tue, 3 Mar 2026 15:52:03 -0700 Subject: [PATCH 2/2] feat: replace admin recipes with 50 consumer-focused recipes - Remove all admin/security/IT recipes (offboard-user, audit-user-login, etc.) - Remove enterprise-only recipes (initiate-litigation-hold) - Replace dangerous recipes (setup-email-forwarding -> create-gmail-filter) - Remove recipes overlapping with gws-workflow-* helpers - Remove thin 2-step recipes better served as helpers - Add 50 curated consumer recipes for Gmail, Drive, Docs, Calendar, Sheets - Update README: link to docs/skills.md, update skill count to 100+ - Fix clippy needless_borrow warnings in generate_skills.rs - Fix lefthook.yml: run fmt/clippy sequentially (parallel causes races) --- .changeset/consumer-recipes.md | 11 + Cargo.toml | 4 +- README.md | 2 +- docs/skills.md | 139 + lefthook.yml | 2 +- {skills/registry => registry}/personas.yaml | 20 +- registry/recipes.yaml | 646 + skills/gws-admin-reports/SKILL.md | 2 +- skills/gws-admin/SKILL.md | 2 +- skills/gws-alertcenter/SKILL.md | 2 +- skills/gws-apps-script-push/SKILL.md | 2 +- skills/gws-apps-script/SKILL.md | 2 +- skills/gws-calendar-agenda/SKILL.md | 2 +- skills/gws-calendar-insert/SKILL.md | 2 +- skills/gws-calendar/SKILL.md | 2 +- skills/gws-chat-send/SKILL.md | 2 +- skills/gws-chat/SKILL.md | 2 +- skills/gws-classroom/SKILL.md | 2 +- skills/gws-cloudidentity/SKILL.md | 2 +- skills/gws-docs-write/SKILL.md | 2 +- skills/gws-docs/SKILL.md | 2 +- skills/gws-drive-upload/SKILL.md | 2 +- skills/gws-drive/SKILL.md | 2 +- skills/gws-events-renew/SKILL.md | 2 +- skills/gws-events-subscribe/SKILL.md | 2 +- skills/gws-events/SKILL.md | 2 +- skills/gws-forms/SKILL.md | 2 +- skills/gws-gmail-send/SKILL.md | 2 +- skills/gws-gmail-triage/SKILL.md | 2 +- skills/gws-gmail-watch/SKILL.md | 2 +- skills/gws-gmail/SKILL.md | 2 +- skills/gws-groupssettings/SKILL.md | 2 +- skills/gws-keep/SKILL.md | 2 +- skills/gws-licensing/SKILL.md | 2 +- skills/gws-meet/SKILL.md | 2 +- .../gws-modelarmor-create-template/SKILL.md | 2 +- .../gws-modelarmor-sanitize-prompt/SKILL.md | 2 +- .../gws-modelarmor-sanitize-response/SKILL.md | 2 +- skills/gws-modelarmor/SKILL.md | 2 +- skills/gws-people/SKILL.md | 2 +- skills/gws-reseller/SKILL.md | 2 +- skills/gws-shared/SKILL.md | 2 +- skills/gws-sheets-append/SKILL.md | 2 +- skills/gws-sheets-read/SKILL.md | 2 +- skills/gws-sheets/SKILL.md | 2 +- skills/gws-slides/SKILL.md | 2 +- skills/gws-tasks/SKILL.md | 2 +- skills/gws-vault/SKILL.md | 2 +- skills/gws-workflow-email-to-task/SKILL.md | 2 +- skills/gws-workflow-file-announce/SKILL.md | 2 +- skills/gws-workflow-meeting-prep/SKILL.md | 2 +- skills/gws-workflow-standup-report/SKILL.md | 2 +- skills/gws-workflow-weekly-digest/SKILL.md | 2 +- skills/gws-workflow/SKILL.md | 2 +- skills/persona-content-creator/SKILL.md | 4 +- skills/persona-customer-support/SKILL.md | 4 +- skills/persona-event-coordinator/SKILL.md | 4 +- skills/persona-exec-assistant/SKILL.md | 4 +- skills/persona-hr-coordinator/SKILL.md | 4 +- skills/persona-it-admin/SKILL.md | 4 +- skills/persona-project-manager/SKILL.md | 4 +- skills/persona-researcher/SKILL.md | 4 +- skills/persona-sales-ops/SKILL.md | 4 +- skills/persona-team-lead/SKILL.md | 4 +- skills/recipe-audit-drive-sharing/SKILL.md | 28 - skills/recipe-audit-external-sharing/SKILL.md | 28 + skills/recipe-backup-sheet-as-csv/SKILL.md | 25 + skills/recipe-batch-invite-to-event/SKILL.md | 25 + skills/recipe-batch-rename-files/SKILL.md | 25 + skills/recipe-batch-reply-to-emails/SKILL.md | 26 + skills/recipe-block-focus-time/SKILL.md | 24 + skills/recipe-bulk-download-folder/SKILL.md | 25 + skills/recipe-bulk-download/SKILL.md | 25 - skills/recipe-cancel-and-notify/SKILL.md | 28 + skills/recipe-cancel-meeting/SKILL.md | 28 - skills/recipe-chat-announcement/SKILL.md | 24 - skills/recipe-collect-form-responses/SKILL.md | 25 + skills/recipe-compare-sheet-tabs/SKILL.md | 25 + .../recipe-copy-sheet-for-new-month/SKILL.md | 25 + skills/recipe-create-chat-space/SKILL.md | 25 - .../recipe-create-classroom-course/SKILL.md | 25 + .../recipe-create-doc-from-template/SKILL.md | 29 + .../recipe-create-events-from-sheet/SKILL.md | 24 + skills/recipe-create-expense-tracker/SKILL.md | 26 + skills/recipe-create-feedback-form/SKILL.md | 25 + skills/recipe-create-gmail-filter/SKILL.md | 26 + skills/recipe-create-meet-space/SKILL.md | 25 + skills/recipe-create-presentation/SKILL.md | 25 + skills/recipe-create-shared-drive/SKILL.md | 25 + skills/recipe-create-task-from-email/SKILL.md | 26 - skills/recipe-create-task-list/SKILL.md | 26 + .../recipe-create-vacation-responder/SKILL.md | 25 + skills/recipe-daily-standup/SKILL.md | 25 - skills/recipe-deploy-apps-script/SKILL.md | 26 + skills/recipe-draft-email-from-doc/SKILL.md | 25 + skills/recipe-email-announcement/SKILL.md | 26 - skills/recipe-email-drive-link/SKILL.md | 25 + skills/recipe-find-free-time/SKILL.md | 25 + skills/recipe-find-large-files/SKILL.md | 28 + skills/recipe-follow-up-email/SKILL.md | 25 - skills/recipe-forward-labeled-emails/SKILL.md | 27 + .../SKILL.md | 34 + .../recipe-label-and-archive-emails/SKILL.md | 25 + skills/recipe-log-data-to-sheet/SKILL.md | 25 - skills/recipe-log-deal-update/SKILL.md | 25 + skills/recipe-new-hire-onboarding/SKILL.md | 29 - skills/recipe-onboarding-checklist/SKILL.md | 25 - skills/recipe-organize-drive-folder/SKILL.md | 16 +- skills/recipe-plan-weekly-schedule/SKILL.md | 26 + skills/recipe-post-mortem-setup/SKILL.md | 25 + skills/recipe-recurring-meeting/SKILL.md | 27 - skills/recipe-reschedule-meeting/SKILL.md | 25 + .../recipe-review-meet-participants/SKILL.md | 25 + skills/recipe-review-overdue-tasks/SKILL.md | 25 + skills/recipe-sanitize-response/SKILL.md | 25 - skills/recipe-save-email-attachments/SKILL.md | 26 + skills/recipe-save-email-to-doc/SKILL.md | 29 + skills/recipe-schedule-interview/SKILL.md | 28 - .../recipe-schedule-recurring-event/SKILL.md | 24 + .../recipe-search-and-export-emails/SKILL.md | 25 + .../recipe-send-personalized-emails/SKILL.md | 24 + skills/recipe-send-team-announcement/SKILL.md | 24 + skills/recipe-share-doc-and-notify/SKILL.md | 25 + skills/recipe-share-document/SKILL.md | 28 - skills/recipe-share-event-materials/SKILL.md | 25 + skills/recipe-share-folder-with-team/SKILL.md | 26 + skills/recipe-share-job-posting/SKILL.md | 25 - skills/recipe-sync-contacts-to-sheet/SKILL.md | 25 + .../recipe-transfer-file-ownership/SKILL.md | 27 + skills/recipe-triage-security-alerts/SKILL.md | 25 + skills/recipe-upload-and-share/SKILL.md | 26 - skills/recipe-watch-drive-changes/SKILL.md | 25 + skills/recipe-weekly-status-report/SKILL.md | 25 - skills/registry/recipes.yaml | 32083 ---------------- src/generate_skills.rs | 236 +- src/helpers/workflows.rs | 60 +- 136 files changed, 2398 insertions(+), 32708 deletions(-) create mode 100644 .changeset/consumer-recipes.md create mode 100644 docs/skills.md rename {skills/registry => registry}/personas.yaml (87%) create mode 100644 registry/recipes.yaml delete mode 100644 skills/recipe-audit-drive-sharing/SKILL.md create mode 100644 skills/recipe-audit-external-sharing/SKILL.md create mode 100644 skills/recipe-backup-sheet-as-csv/SKILL.md create mode 100644 skills/recipe-batch-invite-to-event/SKILL.md create mode 100644 skills/recipe-batch-rename-files/SKILL.md create mode 100644 skills/recipe-batch-reply-to-emails/SKILL.md create mode 100644 skills/recipe-block-focus-time/SKILL.md create mode 100644 skills/recipe-bulk-download-folder/SKILL.md delete mode 100644 skills/recipe-bulk-download/SKILL.md create mode 100644 skills/recipe-cancel-and-notify/SKILL.md delete mode 100644 skills/recipe-cancel-meeting/SKILL.md delete mode 100644 skills/recipe-chat-announcement/SKILL.md create mode 100644 skills/recipe-collect-form-responses/SKILL.md create mode 100644 skills/recipe-compare-sheet-tabs/SKILL.md create mode 100644 skills/recipe-copy-sheet-for-new-month/SKILL.md delete mode 100644 skills/recipe-create-chat-space/SKILL.md create mode 100644 skills/recipe-create-classroom-course/SKILL.md create mode 100644 skills/recipe-create-doc-from-template/SKILL.md create mode 100644 skills/recipe-create-events-from-sheet/SKILL.md create mode 100644 skills/recipe-create-expense-tracker/SKILL.md create mode 100644 skills/recipe-create-feedback-form/SKILL.md create mode 100644 skills/recipe-create-gmail-filter/SKILL.md create mode 100644 skills/recipe-create-meet-space/SKILL.md create mode 100644 skills/recipe-create-presentation/SKILL.md create mode 100644 skills/recipe-create-shared-drive/SKILL.md delete mode 100644 skills/recipe-create-task-from-email/SKILL.md create mode 100644 skills/recipe-create-task-list/SKILL.md create mode 100644 skills/recipe-create-vacation-responder/SKILL.md delete mode 100644 skills/recipe-daily-standup/SKILL.md create mode 100644 skills/recipe-deploy-apps-script/SKILL.md create mode 100644 skills/recipe-draft-email-from-doc/SKILL.md delete mode 100644 skills/recipe-email-announcement/SKILL.md create mode 100644 skills/recipe-email-drive-link/SKILL.md create mode 100644 skills/recipe-find-free-time/SKILL.md create mode 100644 skills/recipe-find-large-files/SKILL.md delete mode 100644 skills/recipe-follow-up-email/SKILL.md create mode 100644 skills/recipe-forward-labeled-emails/SKILL.md create mode 100644 skills/recipe-generate-report-from-sheet/SKILL.md create mode 100644 skills/recipe-label-and-archive-emails/SKILL.md delete mode 100644 skills/recipe-log-data-to-sheet/SKILL.md create mode 100644 skills/recipe-log-deal-update/SKILL.md delete mode 100644 skills/recipe-new-hire-onboarding/SKILL.md delete mode 100644 skills/recipe-onboarding-checklist/SKILL.md create mode 100644 skills/recipe-plan-weekly-schedule/SKILL.md create mode 100644 skills/recipe-post-mortem-setup/SKILL.md delete mode 100644 skills/recipe-recurring-meeting/SKILL.md create mode 100644 skills/recipe-reschedule-meeting/SKILL.md create mode 100644 skills/recipe-review-meet-participants/SKILL.md create mode 100644 skills/recipe-review-overdue-tasks/SKILL.md delete mode 100644 skills/recipe-sanitize-response/SKILL.md create mode 100644 skills/recipe-save-email-attachments/SKILL.md create mode 100644 skills/recipe-save-email-to-doc/SKILL.md delete mode 100644 skills/recipe-schedule-interview/SKILL.md create mode 100644 skills/recipe-schedule-recurring-event/SKILL.md create mode 100644 skills/recipe-search-and-export-emails/SKILL.md create mode 100644 skills/recipe-send-personalized-emails/SKILL.md create mode 100644 skills/recipe-send-team-announcement/SKILL.md create mode 100644 skills/recipe-share-doc-and-notify/SKILL.md delete mode 100644 skills/recipe-share-document/SKILL.md create mode 100644 skills/recipe-share-event-materials/SKILL.md create mode 100644 skills/recipe-share-folder-with-team/SKILL.md delete mode 100644 skills/recipe-share-job-posting/SKILL.md create mode 100644 skills/recipe-sync-contacts-to-sheet/SKILL.md create mode 100644 skills/recipe-transfer-file-ownership/SKILL.md create mode 100644 skills/recipe-triage-security-alerts/SKILL.md delete mode 100644 skills/recipe-upload-and-share/SKILL.md create mode 100644 skills/recipe-watch-drive-changes/SKILL.md delete mode 100644 skills/recipe-weekly-status-report/SKILL.md delete mode 100644 skills/registry/recipes.yaml diff --git a/.changeset/consumer-recipes.md b/.changeset/consumer-recipes.md new file mode 100644 index 00000000..587dbbc0 --- /dev/null +++ b/.changeset/consumer-recipes.md @@ -0,0 +1,11 @@ +--- +"@googleworkspace/cli": minor +--- + +Add workflow helpers, personas, and 50 consumer-focused recipes + +- Add `gws workflow` subcommand with 5 built-in helpers: `+standup-report`, `+meeting-prep`, `+email-to-task`, `+weekly-digest`, `+file-announce` +- Add 10 agent personas (exec-assistant, project-manager, sales-ops, etc.) with curated skill sets +- Add `docs/skills.md` skills index and `registry/recipes.yaml` with 50 multi-step recipes for Gmail, Drive, Docs, Calendar, and Sheets +- Update README with skills index link and accurate skill count +- Fix lefthook pre-commit to run fmt and clippy sequentially diff --git a/Cargo.toml b/Cargo.toml index 60c1f335..f2f34ad3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,9 +29,7 @@ categories = ["command-line-utilities", "web-programming"] name = "gws" path = "src/main.rs" -[[bin]] -name = "seed_recipes" -path = "src/bin/seed_recipes.rs" + [dependencies] aes-gcm = "0.10" diff --git a/README.md b/README.md index 037369f8..47fb8bb8 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ Environment variables can also live in a `.env` file. ## AI Agent Skills -The repo ships 40+ [Agent Skills](https://github.com/vercel-labs/agent-skills) (`SKILL.md` files) — one for every supported API, plus higher-level helpers for common workflows like sending email, triaging a Gmail inbox, or subscribing to calendar events. +The repo ships 100+ Agent Skills (`SKILL.md` files) — one for every supported API, plus higher-level helpers for common workflows and 50 curated recipes for Gmail, Drive, Docs, Calendar, and Sheets. See the full [Skills Index](docs/skills.md) for the complete list. ```bash # Install all skills at once diff --git a/docs/skills.md b/docs/skills.md new file mode 100644 index 00000000..8025e545 --- /dev/null +++ b/docs/skills.md @@ -0,0 +1,139 @@ +# Skills Index + +> Auto-generated by `gws generate-skills`. Do not edit manually. + +## Services + +Core Google Workspace API skills. + +| Skill | Description | +|-------|-------------| +| [gws-shared](../skills/gws-shared/SKILL.md) | gws CLI: Shared patterns for authentication, global flags, and output formatting. | +| [gws-drive](../skills/gws-drive/SKILL.md) | Google Drive: Manage files, folders, and shared drives. | +| [gws-sheets](../skills/gws-sheets/SKILL.md) | Google Sheets: Read and write spreadsheets. | +| [gws-gmail](../skills/gws-gmail/SKILL.md) | Gmail: Send, read, and manage email. | +| [gws-calendar](../skills/gws-calendar/SKILL.md) | Google Calendar: Manage calendars and events. | +| [gws-admin](../skills/gws-admin/SKILL.md) | Google Workspace Admin SDK: Manage users, groups, and devices. | +| [gws-admin-reports](../skills/gws-admin-reports/SKILL.md) | Google Workspace Admin SDK: Audit logs and usage reports. | +| [gws-docs](../skills/gws-docs/SKILL.md) | Read and write Google Docs. | +| [gws-slides](../skills/gws-slides/SKILL.md) | Google Slides: Read and write presentations. | +| [gws-tasks](../skills/gws-tasks/SKILL.md) | Google Tasks: Manage task lists and tasks. | +| [gws-people](../skills/gws-people/SKILL.md) | Google People: Manage contacts and profiles. | +| [gws-chat](../skills/gws-chat/SKILL.md) | Google Chat: Manage Chat spaces and messages. | +| [gws-vault](../skills/gws-vault/SKILL.md) | Google Vault: Manage eDiscovery holds and exports. | +| [gws-groupssettings](../skills/gws-groupssettings/SKILL.md) | Manage Google Groups settings. | +| [gws-reseller](../skills/gws-reseller/SKILL.md) | Google Workspace Reseller: Manage Workspace subscriptions. | +| [gws-licensing](../skills/gws-licensing/SKILL.md) | Google Workspace Enterprise License Manager: Manage product licenses. | +| [gws-apps-script](../skills/gws-apps-script/SKILL.md) | Google Apps Script: Manage and execute Apps Script projects. | +| [gws-classroom](../skills/gws-classroom/SKILL.md) | Google Classroom: Manage classes, rosters, and coursework. | +| [gws-cloudidentity](../skills/gws-cloudidentity/SKILL.md) | Google Cloud Identity: Manage identity groups and memberships. | +| [gws-alertcenter](../skills/gws-alertcenter/SKILL.md) | Google Workspace Alert Center: Manage Workspace security alerts. | +| [gws-forms](../skills/gws-forms/SKILL.md) | Read and write Google Forms. | +| [gws-keep](../skills/gws-keep/SKILL.md) | Manage Google Keep notes. | +| [gws-meet](../skills/gws-meet/SKILL.md) | Manage Google Meet conferences. | +| [gws-events](../skills/gws-events/SKILL.md) | Subscribe to Google Workspace events. | +| [gws-modelarmor](../skills/gws-modelarmor/SKILL.md) | Google Model Armor: Filter user-generated content for safety. | +| [gws-workflow](../skills/gws-workflow/SKILL.md) | Google Workflow: Cross-service productivity workflows. | + +## Helpers + +Shortcut commands for common operations. + +| Skill | Description | +|-------|-------------| +| [gws-drive-upload](../skills/gws-drive-upload/SKILL.md) | Google Drive: Upload a file with automatic metadata. | +| [gws-sheets-append](../skills/gws-sheets-append/SKILL.md) | Google Sheets: Append a row to a spreadsheet. | +| [gws-sheets-read](../skills/gws-sheets-read/SKILL.md) | Google Sheets: Read values from a spreadsheet. | +| [gws-gmail-send](../skills/gws-gmail-send/SKILL.md) | Gmail: Send an email. | +| [gws-gmail-triage](../skills/gws-gmail-triage/SKILL.md) | Gmail: Show unread inbox summary (sender, subject, date). | +| [gws-gmail-watch](../skills/gws-gmail-watch/SKILL.md) | Gmail: Watch for new emails and stream them as NDJSON. | +| [gws-calendar-insert](../skills/gws-calendar-insert/SKILL.md) | Google Calendar: Create a new event. | +| [gws-calendar-agenda](../skills/gws-calendar-agenda/SKILL.md) | Google Calendar: Show upcoming events across all calendars. | +| [gws-docs-write](../skills/gws-docs-write/SKILL.md) | Google Docs: Append text to a document. | +| [gws-chat-send](../skills/gws-chat-send/SKILL.md) | Google Chat: Send a message to a space. | +| [gws-apps-script-push](../skills/gws-apps-script-push/SKILL.md) | Google Apps Script: Upload local files to an Apps Script project. | +| [gws-events-subscribe](../skills/gws-events-subscribe/SKILL.md) | Google Workspace Events: Subscribe to Workspace events and stream them as NDJSON. | +| [gws-events-renew](../skills/gws-events-renew/SKILL.md) | Google Workspace Events: Renew/reactivate Workspace Events subscriptions. | +| [gws-modelarmor-sanitize-prompt](../skills/gws-modelarmor-sanitize-prompt/SKILL.md) | Google Model Armor: Sanitize a user prompt through a Model Armor template. | +| [gws-modelarmor-sanitize-response](../skills/gws-modelarmor-sanitize-response/SKILL.md) | Google Model Armor: Sanitize a model response through a Model Armor template. | +| [gws-modelarmor-create-template](../skills/gws-modelarmor-create-template/SKILL.md) | Google Model Armor: Create a new Model Armor template. | +| [gws-workflow-standup-report](../skills/gws-workflow-standup-report/SKILL.md) | Google Workflow: Today's meetings + open tasks as a standup summary. | +| [gws-workflow-meeting-prep](../skills/gws-workflow-meeting-prep/SKILL.md) | Google Workflow: Prepare for your next meeting: agenda, attendees, and linked docs. | +| [gws-workflow-email-to-task](../skills/gws-workflow-email-to-task/SKILL.md) | Google Workflow: Convert a Gmail message into a Google Tasks entry. | +| [gws-workflow-weekly-digest](../skills/gws-workflow-weekly-digest/SKILL.md) | Google Workflow: Weekly summary: this week's meetings + unread email count. | +| [gws-workflow-file-announce](../skills/gws-workflow-file-announce/SKILL.md) | Google Workflow: Announce a Drive file in a Chat space. | + +## Personas + +Role-based skill bundles. + +| Skill | Description | +|-------|-------------| +| [persona-exec-assistant](../skills/persona-exec-assistant/SKILL.md) | Manage an executive's schedule, inbox, and communications. | +| [persona-project-manager](../skills/persona-project-manager/SKILL.md) | Coordinate projects — track tasks, schedule meetings, and share docs. | +| [persona-hr-coordinator](../skills/persona-hr-coordinator/SKILL.md) | Handle HR workflows — onboarding, announcements, and employee comms. | +| [persona-sales-ops](../skills/persona-sales-ops/SKILL.md) | Manage sales workflows — track deals, schedule calls, client comms. | +| [persona-it-admin](../skills/persona-it-admin/SKILL.md) | Administer IT — manage users, monitor security, configure Workspace. | +| [persona-content-creator](../skills/persona-content-creator/SKILL.md) | Create, organize, and distribute content across Workspace. | +| [persona-customer-support](../skills/persona-customer-support/SKILL.md) | Manage customer support — track tickets, respond, escalate issues. | +| [persona-event-coordinator](../skills/persona-event-coordinator/SKILL.md) | Plan and manage events — scheduling, invitations, and logistics. | +| [persona-team-lead](../skills/persona-team-lead/SKILL.md) | Lead a team — run standups, coordinate tasks, and communicate. | +| [persona-researcher](../skills/persona-researcher/SKILL.md) | Organize research — manage references, notes, and collaboration. | + +## Recipes + +Multi-step task sequences with real commands. + +| Skill | Description | +|-------|-------------| +| [recipe-audit-external-sharing](../skills/recipe-audit-external-sharing/SKILL.md) | Find and review Google Drive files shared outside the organization. | +| [recipe-label-and-archive-emails](../skills/recipe-label-and-archive-emails/SKILL.md) | Apply Gmail labels to matching messages and archive them to keep your inbox clean. | +| [recipe-send-personalized-emails](../skills/recipe-send-personalized-emails/SKILL.md) | Read recipient data from Google Sheets and send personalized Gmail messages to each row. | +| [recipe-draft-email-from-doc](../skills/recipe-draft-email-from-doc/SKILL.md) | Read content from a Google Doc and use it as the body of a Gmail message. | +| [recipe-organize-drive-folder](../skills/recipe-organize-drive-folder/SKILL.md) | Create a Google Drive folder structure and move files into the right locations. | +| [recipe-share-folder-with-team](../skills/recipe-share-folder-with-team/SKILL.md) | Share a Google Drive folder and all its contents with a list of collaborators. | +| [recipe-email-drive-link](../skills/recipe-email-drive-link/SKILL.md) | Share a Google Drive file and email the link with a message to recipients. | +| [recipe-create-doc-from-template](../skills/recipe-create-doc-from-template/SKILL.md) | Copy a Google Docs template, fill in content, and share with collaborators. | +| [recipe-create-expense-tracker](../skills/recipe-create-expense-tracker/SKILL.md) | Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries. | +| [recipe-copy-sheet-for-new-month](../skills/recipe-copy-sheet-for-new-month/SKILL.md) | Duplicate a Google Sheets template tab for a new month of tracking. | +| [recipe-block-focus-time](../skills/recipe-block-focus-time/SKILL.md) | Create recurring focus time blocks on Google Calendar to protect deep work hours. | +| [recipe-reschedule-meeting](../skills/recipe-reschedule-meeting/SKILL.md) | Move a Google Calendar event to a new time and automatically notify all attendees. | +| [recipe-search-and-export-emails](../skills/recipe-search-and-export-emails/SKILL.md) | Find Gmail messages matching a query and export them for review. | +| [recipe-create-gmail-filter](../skills/recipe-create-gmail-filter/SKILL.md) | Create a Gmail filter to automatically label, star, or categorize incoming messages. | +| [recipe-cancel-and-notify](../skills/recipe-cancel-and-notify/SKILL.md) | Delete a Google Calendar event and send a cancellation email via Gmail. | +| [recipe-schedule-recurring-event](../skills/recipe-schedule-recurring-event/SKILL.md) | Create a recurring Google Calendar event with attendees. | +| [recipe-find-free-time](../skills/recipe-find-free-time/SKILL.md) | Query Google Calendar free/busy status for multiple users to find a meeting slot. | +| [recipe-bulk-download-folder](../skills/recipe-bulk-download-folder/SKILL.md) | List and download all files from a Google Drive folder. | +| [recipe-find-large-files](../skills/recipe-find-large-files/SKILL.md) | Identify large Google Drive files consuming storage quota. | +| [recipe-create-shared-drive](../skills/recipe-create-shared-drive/SKILL.md) | Create a Google Shared Drive and add members with appropriate roles. | +| [recipe-transfer-file-ownership](../skills/recipe-transfer-file-ownership/SKILL.md) | Transfer ownership of Google Drive files from one user to another. | +| [recipe-log-deal-update](../skills/recipe-log-deal-update/SKILL.md) | Append a deal status update to a Google Sheets sales tracking spreadsheet. | +| [recipe-collect-form-responses](../skills/recipe-collect-form-responses/SKILL.md) | Retrieve and review responses from a Google Form. | +| [recipe-post-mortem-setup](../skills/recipe-post-mortem-setup/SKILL.md) | Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat. | +| [recipe-create-task-list](../skills/recipe-create-task-list/SKILL.md) | Set up a new Google Tasks list with initial tasks. | +| [recipe-review-overdue-tasks](../skills/recipe-review-overdue-tasks/SKILL.md) | Find Google Tasks that are past due and need attention. | +| [recipe-deploy-apps-script](../skills/recipe-deploy-apps-script/SKILL.md) | Push local files to a Google Apps Script project. | +| [recipe-watch-drive-changes](../skills/recipe-watch-drive-changes/SKILL.md) | Subscribe to change notifications on a Google Drive file or folder. | +| [recipe-create-classroom-course](../skills/recipe-create-classroom-course/SKILL.md) | Create a Google Classroom course and invite students. | +| [recipe-create-meet-space](../skills/recipe-create-meet-space/SKILL.md) | Create a Google Meet meeting space and share the join link. | +| [recipe-review-meet-participants](../skills/recipe-review-meet-participants/SKILL.md) | Review who attended a Google Meet conference and for how long. | +| [recipe-create-presentation](../skills/recipe-create-presentation/SKILL.md) | Create a new Google Slides presentation and add initial slides. | +| [recipe-triage-security-alerts](../skills/recipe-triage-security-alerts/SKILL.md) | List and review Google Workspace security alerts from Alert Center. | +| [recipe-save-email-attachments](../skills/recipe-save-email-attachments/SKILL.md) | Find Gmail messages with attachments and save them to a Google Drive folder. | +| [recipe-send-team-announcement](../skills/recipe-send-team-announcement/SKILL.md) | Send a team announcement via both Gmail and a Google Chat space. | +| [recipe-create-feedback-form](../skills/recipe-create-feedback-form/SKILL.md) | Create a Google Form for feedback and share it via Gmail. | +| [recipe-sync-contacts-to-sheet](../skills/recipe-sync-contacts-to-sheet/SKILL.md) | Export Google Contacts directory to a Google Sheets spreadsheet. | +| [recipe-share-event-materials](../skills/recipe-share-event-materials/SKILL.md) | Share Google Drive files with all attendees of a Google Calendar event. | +| [recipe-create-vacation-responder](../skills/recipe-create-vacation-responder/SKILL.md) | Enable a Gmail out-of-office auto-reply with a custom message and date range. | +| [recipe-create-events-from-sheet](../skills/recipe-create-events-from-sheet/SKILL.md) | Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row. | +| [recipe-plan-weekly-schedule](../skills/recipe-plan-weekly-schedule/SKILL.md) | Review your Google Calendar week, identify gaps, and add events to fill them. | +| [recipe-share-doc-and-notify](../skills/recipe-share-doc-and-notify/SKILL.md) | Share a Google Docs document with edit access and email collaborators the link. | +| [recipe-backup-sheet-as-csv](../skills/recipe-backup-sheet-as-csv/SKILL.md) | Export a Google Sheets spreadsheet as a CSV file for local backup or processing. | +| [recipe-save-email-to-doc](../skills/recipe-save-email-to-doc/SKILL.md) | Save a Gmail message body into a Google Doc for archival or reference. | +| [recipe-batch-reply-to-emails](../skills/recipe-batch-reply-to-emails/SKILL.md) | Find Gmail messages matching a query and send a standard reply to each one. | +| [recipe-batch-rename-files](../skills/recipe-batch-rename-files/SKILL.md) | Rename multiple Google Drive files matching a pattern to follow a consistent naming convention. | +| [recipe-compare-sheet-tabs](../skills/recipe-compare-sheet-tabs/SKILL.md) | Read data from two tabs in a Google Sheet to compare and identify differences. | +| [recipe-batch-invite-to-event](../skills/recipe-batch-invite-to-event/SKILL.md) | Add a list of attendees to an existing Google Calendar event and send notifications. | +| [recipe-forward-labeled-emails](../skills/recipe-forward-labeled-emails/SKILL.md) | Find Gmail messages with a specific label and forward them to another address. | +| [recipe-generate-report-from-sheet](../skills/recipe-generate-report-from-sheet/SKILL.md) | Read data from a Google Sheet and create a formatted Google Docs report. | + diff --git a/lefthook.yml b/lefthook.yml index 4c887be3..621cd4ab 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -1,5 +1,5 @@ pre-commit: - parallel: true + parallel: false commands: fmt: glob: "*.rs" diff --git a/skills/registry/personas.yaml b/registry/personas.yaml similarity index 87% rename from skills/registry/personas.yaml rename to registry/personas.yaml index bb87a7a7..4a5ddc6d 100644 --- a/skills/registry/personas.yaml +++ b/registry/personas.yaml @@ -12,7 +12,7 @@ personas: - name: exec-assistant title: Executive Assistant - description: "USE WHEN the user needs help managing an executive's schedule, inbox, and communications." + description: "Manage an executive's schedule, inbox, and communications." services: [gmail, calendar, drive, chat] workflows: ["+standup-report", "+meeting-prep", "+weekly-digest"] instructions: @@ -28,7 +28,7 @@ personas: - name: project-manager title: Project Manager - description: "USE WHEN the user needs help coordinating projects across Workspace — tracking tasks, scheduling, and sharing documents." + description: "Coordinate projects — track tasks, schedule meetings, and share docs." services: [drive, sheets, calendar, gmail, chat] workflows: ["+standup-report", "+weekly-digest", "+file-announce"] instructions: @@ -44,7 +44,7 @@ personas: - name: hr-coordinator title: HR Coordinator - description: "USE WHEN the user needs help with HR workflows — onboarding, announcements, and employee communications." + description: "Handle HR workflows — onboarding, announcements, and employee comms." services: [gmail, calendar, drive, chat, admin] workflows: ["+email-to-task", "+file-announce"] instructions: @@ -60,7 +60,7 @@ personas: - name: sales-ops title: Sales Operations - description: "USE WHEN the user needs help with sales workflows — tracking deals, scheduling calls, and managing client communications." + description: "Manage sales workflows — track deals, schedule calls, client comms." services: [gmail, calendar, sheets, drive] workflows: ["+meeting-prep", "+email-to-task", "+weekly-digest"] instructions: @@ -76,7 +76,7 @@ personas: - name: it-admin title: IT Administrator - description: "USE WHEN the user needs help with IT administration — managing users, monitoring security, and configuring Workspace." + description: "Administer IT — manage users, monitor security, configure Workspace." services: [admin, gmail, drive, calendar] workflows: ["+standup-report"] instructions: @@ -92,7 +92,7 @@ personas: - name: content-creator title: Content Creator - description: "USE WHEN the user needs help creating, organizing, and distributing content across Workspace." + description: "Create, organize, and distribute content across Workspace." services: [docs, drive, gmail, chat, slides] workflows: ["+file-announce"] instructions: @@ -108,7 +108,7 @@ personas: - name: customer-support title: Customer Support Agent - description: "USE WHEN the user needs help managing customer support workflows — tracking tickets, sending responses, and escalating issues." + description: "Manage customer support — track tickets, respond, escalate issues." services: [gmail, sheets, chat, calendar] workflows: ["+email-to-task", "+standup-report"] instructions: @@ -124,7 +124,7 @@ personas: - name: event-coordinator title: Event Coordinator - description: "USE WHEN the user needs help planning and managing events — scheduling, invitations, and logistics." + description: "Plan and manage events — scheduling, invitations, and logistics." services: [calendar, gmail, drive, chat, sheets] workflows: ["+meeting-prep", "+file-announce", "+weekly-digest"] instructions: @@ -140,7 +140,7 @@ personas: - name: team-lead title: Team Lead - description: "USE WHEN the user needs help managing a team — standups, task coordination, and team communications." + description: "Lead a team — run standups, coordinate tasks, and communicate." services: [calendar, gmail, chat, drive, sheets] workflows: ["+standup-report", "+meeting-prep", "+weekly-digest", "+email-to-task"] instructions: @@ -156,7 +156,7 @@ personas: - name: researcher title: Researcher - description: "USE WHEN the user needs help organizing research — managing references, notes, and collaboration." + description: "Organize research — manage references, notes, and collaboration." services: [drive, docs, sheets, gmail] workflows: ["+file-announce"] instructions: diff --git a/registry/recipes.yaml b/registry/recipes.yaml new file mode 100644 index 00000000..b3ac6e0b --- /dev/null +++ b/registry/recipes.yaml @@ -0,0 +1,646 @@ +# Curated Recipe Registry — Real-world Google Workspace workflows +# +# Each recipe defines a reusable multi-step task with: +# - name: unique id (directory: recipe-{name}) +# - title: human-readable name +# - description: compact intent (under 130 chars) +# - category: domain +# - services: which gws services this recipe uses +# - steps: concrete gws commands +# - caution: optional warning for destructive operations + +recipes: + # ============================================================ + # IT / SECURITY / COMPLIANCE + # ============================================================ + - name: audit-external-sharing + title: Audit External Drive Sharing + description: "Find and review Google Drive files shared outside the organization." + category: security + services: [drive] + steps: + - "List externally shared files: `gws drive files list --params '{\"q\": \"visibility = '\\''anyoneWithLink'\\''\"}'`" + - "Check permissions on a file: `gws drive permissions list --params '{\"fileId\": \"FILE_ID\"}'`" + - "Revoke if needed: `gws drive permissions delete --params '{\"fileId\": \"FILE_ID\", \"permissionId\": \"PERM_ID\"}'`" + caution: "Revoking permissions immediately removes access. Confirm with the file owner first." + + # ============================================================ + # GMAIL WORKFLOWS + # ============================================================ + - name: label-and-archive-emails + title: Label and Archive Gmail Threads + description: "Apply Gmail labels to matching messages and archive them to keep your inbox clean." + category: productivity + services: [gmail] + steps: + - "Search for matching emails: `gws gmail users messages list --params '{\"userId\": \"me\", \"q\": \"from:notifications@service.com\"}' --format table`" + - "Apply a label: `gws gmail users messages modify --params '{\"userId\": \"me\", \"id\": \"MESSAGE_ID\"}' --json '{\"addLabelIds\": [\"LABEL_ID\"]}'`" + - "Archive (remove from inbox): `gws gmail users messages modify --params '{\"userId\": \"me\", \"id\": \"MESSAGE_ID\"}' --json '{\"removeLabelIds\": [\"INBOX\"]}'`" + + - name: send-personalized-emails + title: Send Personalized Emails from a Sheet + description: "Read recipient data from Google Sheets and send personalized Gmail messages to each row." + category: productivity + services: [sheets, gmail] + steps: + - "Read recipient list: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Contacts!A2:C'`" + - "For each row, send a personalized email: `gws gmail +send --to recipient@example.com --subject 'Hello, Name' --body 'Hi Name, your report is ready.'`" + + - name: draft-email-from-doc + title: Draft a Gmail Message from a Google Doc + description: "Read content from a Google Doc and use it as the body of a Gmail message." + category: productivity + services: [docs, gmail] + steps: + - "Get the document content: `gws docs documents get --params '{\"documentId\": \"DOC_ID\"}'`" + - "Copy the text from the body content" + - "Send the email: `gws gmail +send --to recipient@example.com --subject 'Newsletter Update' --body 'CONTENT_FROM_DOC'`" + + # ============================================================ + # GOOGLE DRIVE WORKFLOWS + # ============================================================ + - name: organize-drive-folder + title: Organize Files into Google Drive Folders + description: "Create a Google Drive folder structure and move files into the right locations." + category: productivity + services: [drive] + steps: + - "Create a project folder: `gws drive files create --json '{\"name\": \"Q2 Project\", \"mimeType\": \"application/vnd.google-apps.folder\"}'`" + - "Create sub-folders: `gws drive files create --json '{\"name\": \"Documents\", \"mimeType\": \"application/vnd.google-apps.folder\", \"parents\": [\"PARENT_FOLDER_ID\"]}'`" + - "Move existing files into folder: `gws drive files update --params '{\"fileId\": \"FILE_ID\", \"addParents\": \"FOLDER_ID\", \"removeParents\": \"OLD_PARENT_ID\"}'`" + - "Verify structure: `gws drive files list --params '{\"q\": \"FOLDER_ID in parents\"}' --format table`" + + - name: share-folder-with-team + title: Share a Google Drive Folder with a Team + description: "Share a Google Drive folder and all its contents with a list of collaborators." + category: productivity + services: [drive] + steps: + - "Find the folder: `gws drive files list --params '{\"q\": \"name = '\\''Project X'\\'' and mimeType = '\\''application/vnd.google-apps.folder'\\''\"}'`" + - "Share as editor: `gws drive permissions create --params '{\"fileId\": \"FOLDER_ID\"}' --json '{\"role\": \"writer\", \"type\": \"user\", \"emailAddress\": \"colleague@company.com\"}'`" + - "Share as viewer: `gws drive permissions create --params '{\"fileId\": \"FOLDER_ID\"}' --json '{\"role\": \"reader\", \"type\": \"user\", \"emailAddress\": \"stakeholder@company.com\"}'`" + - "Verify permissions: `gws drive permissions list --params '{\"fileId\": \"FOLDER_ID\"}' --format table`" + + - name: email-drive-link + title: Email a Google Drive File Link + description: "Share a Google Drive file and email the link with a message to recipients." + category: productivity + services: [drive, gmail] + steps: + - "Find the file: `gws drive files list --params '{\"q\": \"name = '\\''Quarterly Report'\\''\"}'`" + - "Share the file: `gws drive permissions create --params '{\"fileId\": \"FILE_ID\"}' --json '{\"role\": \"reader\", \"type\": \"user\", \"emailAddress\": \"client@example.com\"}'`" + - "Email the link: `gws gmail +send --to client@example.com --subject 'Quarterly Report' --body 'Hi, please find the report here: https://docs.google.com/document/d/FILE_ID'`" + + # ============================================================ + # GOOGLE DOCS WORKFLOWS + # ============================================================ + - name: create-doc-from-template + title: Create a Google Doc from a Template + description: "Copy a Google Docs template, fill in content, and share with collaborators." + category: productivity + services: [drive, docs] + steps: + - "Copy the template: `gws drive files copy --params '{\"fileId\": \"TEMPLATE_DOC_ID\"}' --json '{\"name\": \"Project Brief - Q2 Launch\"}'`" + - "Get the new doc ID from the response" + - "Add content: `gws docs +write --document-id NEW_DOC_ID --text '## Project: Q2 Launch\n\n### Objective\nLaunch the new feature by end of Q2.'`" + - "Share with team: `gws drive permissions create --params '{\"fileId\": \"NEW_DOC_ID\"}' --json '{\"role\": \"writer\", \"type\": \"user\", \"emailAddress\": \"team@company.com\"}'`" + + # ============================================================ + # GOOGLE SHEETS WORKFLOWS + # ============================================================ + - name: create-expense-tracker + title: Create a Google Sheets Expense Tracker + description: "Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries." + category: productivity + services: [sheets, drive] + steps: + - "Create spreadsheet: `gws drive files create --json '{\"name\": \"Expense Tracker 2025\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}'`" + - "Add headers: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '[\"Date\", \"Category\", \"Description\", \"Amount\"]'`" + - "Add first entry: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '[\"2025-01-15\", \"Travel\", \"Flight to NYC\", \"450.00\"]'`" + - "Share with manager: `gws drive permissions create --params '{\"fileId\": \"SHEET_ID\"}' --json '{\"role\": \"reader\", \"type\": \"user\", \"emailAddress\": \"manager@company.com\"}'`" + + - name: copy-sheet-for-new-month + title: Copy a Google Sheet for a New Month + description: "Duplicate a Google Sheets template tab for a new month of tracking." + category: productivity + services: [sheets] + steps: + - "Get spreadsheet details: `gws sheets spreadsheets get --params '{\"spreadsheetId\": \"SHEET_ID\"}'`" + - "Copy the template sheet: `gws sheets spreadsheets sheets copyTo --params '{\"spreadsheetId\": \"SHEET_ID\", \"sheetId\": 0}' --json '{\"destinationSpreadsheetId\": \"SHEET_ID\"}'`" + - "Rename the new tab: `gws sheets spreadsheets batchUpdate --params '{\"spreadsheetId\": \"SHEET_ID\"}' --json '{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 123, \"title\": \"February 2025\"}, \"fields\": \"title\"}}]}'`" + + # ============================================================ + # GOOGLE CALENDAR WORKFLOWS + # ============================================================ + - name: block-focus-time + title: Block Focus Time on Google Calendar + description: "Create recurring focus time blocks on Google Calendar to protect deep work hours." + category: scheduling + services: [calendar] + steps: + - "Create recurring focus block: `gws calendar events insert --params '{\"calendarId\": \"primary\"}' --json '{\"summary\": \"Focus Time\", \"description\": \"Protected deep work block\", \"start\": {\"dateTime\": \"2025-01-20T09:00:00\", \"timeZone\": \"America/New_York\"}, \"end\": {\"dateTime\": \"2025-01-20T11:00:00\", \"timeZone\": \"America/New_York\"}, \"recurrence\": [\"RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR\"], \"transparency\": \"opaque\"}'`" + - "Verify it shows as busy: `gws calendar +agenda`" + + - name: reschedule-meeting + title: Reschedule a Google Calendar Meeting + description: "Move a Google Calendar event to a new time and automatically notify all attendees." + category: scheduling + services: [calendar] + steps: + - "Find the event: `gws calendar +agenda`" + - "Get event details: `gws calendar events get --params '{\"calendarId\": \"primary\", \"eventId\": \"EVENT_ID\"}'`" + - "Update the time: `gws calendar events patch --params '{\"calendarId\": \"primary\", \"eventId\": \"EVENT_ID\", \"sendUpdates\": \"all\"}' --json '{\"start\": {\"dateTime\": \"2025-01-22T14:00:00\", \"timeZone\": \"America/New_York\"}, \"end\": {\"dateTime\": \"2025-01-22T15:00:00\", \"timeZone\": \"America/New_York\"}}'`" + + # ============================================================ + # EMAIL / GMAIL + # ============================================================ + - name: search-and-export-emails + title: Search and Export Emails + description: "Find Gmail messages matching a query and export them for review." + category: productivity + services: [gmail] + steps: + - "Search for emails: `gws gmail users messages list --params '{\"userId\": \"me\", \"q\": \"from:client@example.com after:2024/01/01\"}'`" + - "Get full message: `gws gmail users messages get --params '{\"userId\": \"me\", \"id\": \"MSG_ID\"}'`" + - "Export results: `gws gmail users messages list --params '{\"userId\": \"me\", \"q\": \"label:project-x\"}' --format json > project-emails.json`" + + - name: create-gmail-filter + title: Create a Gmail Filter + description: "Create a Gmail filter to automatically label, star, or categorize incoming messages." + category: productivity + services: [gmail] + steps: + - "List existing labels: `gws gmail users labels list --params '{\"userId\": \"me\"}' --format table`" + - "Create a new label: `gws gmail users labels create --params '{\"userId\": \"me\"}' --json '{\"name\": \"Receipts\"}'`" + - "Create a filter: `gws gmail users settings filters create --params '{\"userId\": \"me\"}' --json '{\"criteria\": {\"from\": \"receipts@example.com\"}, \"action\": {\"addLabelIds\": [\"LABEL_ID\"], \"removeLabelIds\": [\"INBOX\"]}}'`" + - "Verify filter: `gws gmail users settings filters list --params '{\"userId\": \"me\"}' --format table`" + + # ============================================================ + # CALENDAR / SCHEDULING + # ============================================================ + - name: cancel-and-notify + title: Cancel Meeting and Notify Attendees + description: "Delete a Google Calendar event and send a cancellation email via Gmail." + category: scheduling + services: [calendar, gmail] + steps: + - "Find the meeting: `gws calendar +agenda --format json` and locate the event ID" + - "Delete the event: `gws calendar events delete --params '{\"calendarId\": \"primary\", \"eventId\": \"EVENT_ID\", \"sendUpdates\": \"all\"}'`" + - "Send follow-up: `gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]' --body 'Apologies, this meeting has been cancelled.'`" + caution: "Deleting with sendUpdates sends cancellation emails to all attendees." + + - name: schedule-recurring-event + title: Schedule a Recurring Meeting + description: "Create a recurring Google Calendar event with attendees." + category: scheduling + services: [calendar] + steps: + - "Create recurring event: `gws calendar events insert --params '{\"calendarId\": \"primary\"}' --json '{\"summary\": \"Weekly Standup\", \"start\": {\"dateTime\": \"2024-03-18T09:00:00\", \"timeZone\": \"America/New_York\"}, \"end\": {\"dateTime\": \"2024-03-18T09:30:00\", \"timeZone\": \"America/New_York\"}, \"recurrence\": [\"RRULE:FREQ=WEEKLY;BYDAY=MO\"], \"attendees\": [{\"email\": \"team@company.com\"}]}'`" + - "Verify it was created: `gws calendar +agenda --days 14 --format table`" + + - name: find-free-time + title: Find Free Time Across Calendars + description: "Query Google Calendar free/busy status for multiple users to find a meeting slot." + category: scheduling + services: [calendar] + steps: + - "Query free/busy: `gws calendar freebusy query --json '{\"timeMin\": \"2024-03-18T08:00:00Z\", \"timeMax\": \"2024-03-18T18:00:00Z\", \"items\": [{\"id\": \"user1@company.com\"}, {\"id\": \"user2@company.com\"}]}'`" + - "Review the output to find overlapping free slots" + - "Create event in the free slot: `gws calendar +insert --summary 'Meeting' --attendees user1@company.com,user2@company.com --start '2024-03-18T14:00:00' --duration 30`" + + # ============================================================ + # DRIVE / FILE MANAGEMENT + # ============================================================ + - name: bulk-download-folder + title: Bulk Download Drive Folder + description: "List and download all files from a Google Drive folder." + category: productivity + services: [drive] + steps: + - "List files in folder: `gws drive files list --params '{\"q\": \"'\\''FOLDER_ID'\\'' in parents\"}' --format json`" + - "Download each file: `gws drive files get --params '{\"fileId\": \"FILE_ID\", \"alt\": \"media\"}' -o filename.ext`" + - "Export Google Docs as PDF: `gws drive files export --params '{\"fileId\": \"FILE_ID\", \"mimeType\": \"application/pdf\"}' -o document.pdf`" + + - name: find-large-files + title: Find Largest Files in Drive + description: "Identify large Google Drive files consuming storage quota." + category: productivity + services: [drive] + steps: + - "List files sorted by size: `gws drive files list --params '{\"orderBy\": \"quotaBytesUsed desc\", \"pageSize\": 20, \"fields\": \"files(id,name,size,mimeType,owners)\"}' --format table`" + - "Review the output and identify files to delete or move" + - "Delete if needed: `gws drive files delete --params '{\"fileId\": \"FILE_ID\"}'`" + caution: "Deleting files is permanent if the trash is emptied. Confirm before deleting." + + - name: create-shared-drive + title: Create and Configure a Shared Drive + description: "Create a Google Shared Drive and add members with appropriate roles." + category: productivity + services: [drive] + steps: + - "Create shared drive: `gws drive drives create --params '{\"requestId\": \"unique-id-123\"}' --json '{\"name\": \"Project X\"}'`" + - "Add a member: `gws drive permissions create --params '{\"fileId\": \"DRIVE_ID\", \"supportsAllDrives\": true}' --json '{\"role\": \"writer\", \"type\": \"user\", \"emailAddress\": \"member@company.com\"}'`" + - "List members: `gws drive permissions list --params '{\"fileId\": \"DRIVE_ID\", \"supportsAllDrives\": true}'`" + + - name: transfer-file-ownership + title: Transfer File Ownership + description: "Transfer ownership of Google Drive files from one user to another." + category: it + services: [drive] + steps: + - "List files owned by the user: `gws drive files list --params '{\"q\": \"'\\''user@company.com'\\'' in owners\"}'`" + - "Transfer ownership: `gws drive permissions create --params '{\"fileId\": \"FILE_ID\", \"transferOwnership\": true}' --json '{\"role\": \"owner\", \"type\": \"user\", \"emailAddress\": \"newowner@company.com\"}'`" + caution: "Transferring ownership is irreversible without the new owner's cooperation." + + # ============================================================ + # SHEETS / DATA + # ============================================================ + - name: log-deal-update + title: Log Deal Update to Sheet + description: "Append a deal status update to a Google Sheets sales tracking spreadsheet." + category: sales + services: [sheets, drive] + steps: + - "Find the tracking sheet: `gws drive files list --params '{\"q\": \"name = '\\''Sales Pipeline'\\'' and mimeType = '\\''application/vnd.google-apps.spreadsheet'\\''\"}'`" + - "Read current data: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Pipeline!A1:F'`" + - "Append new row: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Pipeline' --values '[\"2024-03-15\", \"Acme Corp\", \"Proposal Sent\", \"$50,000\", \"Q2\", \"jdoe\"]'`" + + - name: collect-form-responses + title: Check Form Responses + description: "Retrieve and review responses from a Google Form." + category: productivity + services: [forms] + steps: + - "List forms: `gws forms forms list` (if you don't have the form ID)" + - "Get form details: `gws forms forms get --params '{\"formId\": \"FORM_ID\"}'`" + - "Get responses: `gws forms forms responses list --params '{\"formId\": \"FORM_ID\"}' --format table`" + + # ============================================================ + # CHAT / TEAM COMMUNICATION + # ============================================================ + # ============================================================ + # ENGINEERING + # ============================================================ + - name: post-mortem-setup + title: Set Up Post-Mortem + description: "Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat." + category: engineering + services: [docs, calendar, chat] + steps: + - "Create post-mortem doc: `gws docs +write --title 'Post-Mortem: [Incident]' --body '## Summary\\n\\n## Timeline\\n\\n## Root Cause\\n\\n## Action Items'`" + - "Schedule review meeting: `gws calendar +insert --summary 'Post-Mortem Review: [Incident]' --attendees team@company.com --start 'next monday 14:00' --duration 60`" + - "Notify in Chat: `gws chat +send --space spaces/ENG_SPACE --text '🔍 Post-mortem scheduled for [Incident].'`" + + # ============================================================ + # TASKS + # ============================================================ + - name: create-task-list + title: Create a Task List and Add Tasks + description: "Set up a new Google Tasks list with initial tasks." + category: productivity + services: [tasks] + steps: + - "Create task list: `gws tasks tasklists insert --json '{\"title\": \"Q2 Goals\"}'`" + - "Add a task: `gws tasks tasks insert --params '{\"tasklist\": \"TASKLIST_ID\"}' --json '{\"title\": \"Review Q1 metrics\", \"notes\": \"Pull data from analytics dashboard\", \"due\": \"2024-04-01T00:00:00Z\"}'`" + - "Add another task: `gws tasks tasks insert --params '{\"tasklist\": \"TASKLIST_ID\"}' --json '{\"title\": \"Draft Q2 OKRs\"}'`" + - "List tasks: `gws tasks tasks list --params '{\"tasklist\": \"TASKLIST_ID\"}' --format table`" + + - name: review-overdue-tasks + title: Review Overdue Tasks + description: "Find Google Tasks that are past due and need attention." + category: productivity + services: [tasks] + steps: + - "List task lists: `gws tasks tasklists list --format table`" + - "List tasks with status: `gws tasks tasks list --params '{\"tasklist\": \"TASKLIST_ID\", \"showCompleted\": false}' --format table`" + - "Review due dates and prioritize overdue items" + + # ============================================================ + # CONTACTS / PEOPLE + # ============================================================ + # ============================================================ + # APPS SCRIPT + # ============================================================ + - name: deploy-apps-script + title: Deploy an Apps Script Project + description: "Push local files to a Google Apps Script project." + category: engineering + services: [apps-script] + steps: + - "List existing projects: `gws apps-script projects list --format table`" + - "Get project content: `gws apps-script projects getContent --params '{\"scriptId\": \"SCRIPT_ID\"}'`" + - "Update content: `gws apps-script projects updateContent --params '{\"scriptId\": \"SCRIPT_ID\"}' --json '{\"files\": [{\"name\": \"Code\", \"type\": \"SERVER_JS\", \"source\": \"function main() { ... }\"}]}'`" + - "Create a new version: `gws apps-script projects versions create --params '{\"scriptId\": \"SCRIPT_ID\"}' --json '{\"description\": \"v2 release\"}'`" + + # ============================================================ + # EVENT SUBSCRIPTIONS + # ============================================================ + - name: watch-drive-changes + title: Watch for Drive Changes + description: "Subscribe to change notifications on a Google Drive file or folder." + category: engineering + services: [events] + steps: + - "Create subscription: `gws events subscriptions create --json '{\"targetResource\": \"//drive.googleapis.com/drives/DRIVE_ID\", \"eventTypes\": [\"google.workspace.drive.file.v1.updated\"], \"notificationEndpoint\": {\"pubsubTopic\": \"projects/PROJECT/topics/TOPIC\"}, \"payloadOptions\": {\"includeResource\": true}}'`" + - "List active subscriptions: `gws events subscriptions list`" + - "Renew before expiry: `gws events +renew --subscription SUBSCRIPTION_ID`" + + # ============================================================ + # CLASSROOM + # ============================================================ + - name: create-classroom-course + title: Create a Google Classroom Course + description: "Create a Google Classroom course and invite students." + category: education + services: [classroom] + steps: + - "Create the course: `gws classroom courses create --json '{\"name\": \"Introduction to CS\", \"section\": \"Period 1\", \"room\": \"Room 101\", \"ownerId\": \"me\"}'`" + - "Invite a student: `gws classroom invitations create --json '{\"courseId\": \"COURSE_ID\", \"userId\": \"student@school.edu\", \"role\": \"STUDENT\"}'`" + - "List enrolled students: `gws classroom courses students list --params '{\"courseId\": \"COURSE_ID\"}' --format table`" + + # ============================================================ + # MEET + # ============================================================ + - name: create-meet-space + title: Create a Google Meet Conference + description: "Create a Google Meet meeting space and share the join link." + category: scheduling + services: [meet, gmail] + steps: + - "Create meeting space: `gws meet spaces create --json '{\"config\": {\"accessType\": \"OPEN\"}}'`" + - "Copy the meeting URI from the response" + - "Email the link: `gws gmail +send --to team@company.com --subject 'Join the meeting' --body 'Join here: MEETING_URI'`" + + - name: review-meet-participants + title: Review Google Meet Attendance + description: "Review who attended a Google Meet conference and for how long." + category: productivity + services: [meet] + steps: + - "List recent conferences: `gws meet conferenceRecords list --format table`" + - "List participants: `gws meet conferenceRecords participants list --params '{\"parent\": \"conferenceRecords/CONFERENCE_ID\"}' --format table`" + - "Get session details: `gws meet conferenceRecords participants participantSessions list --params '{\"parent\": \"conferenceRecords/CONFERENCE_ID/participants/PARTICIPANT_ID\"}' --format table`" + + # ============================================================ + # KEEP + # ============================================================ + # ============================================================ + # SLIDES + # ============================================================ + - name: create-presentation + title: Create a Google Slides Presentation + description: "Create a new Google Slides presentation and add initial slides." + category: productivity + services: [slides] + steps: + - "Create presentation: `gws slides presentations create --json '{\"title\": \"Quarterly Review Q2\"}'`" + - "Get the presentation ID from the response" + - "Share with team: `gws drive permissions create --params '{\"fileId\": \"PRESENTATION_ID\"}' --json '{\"role\": \"writer\", \"type\": \"user\", \"emailAddress\": \"team@company.com\"}'`" + + # ============================================================ + # ALERT CENTER + # ============================================================ + - name: triage-security-alerts + title: Triage Google Workspace Security Alerts + description: "List and review Google Workspace security alerts from Alert Center." + category: security + services: [alertcenter] + steps: + - "List active alerts: `gws alertcenter alerts list --format table`" + - "Get alert details: `gws alertcenter alerts get --params '{\"alertId\": \"ALERT_ID\"}'`" + - "Acknowledge an alert: `gws alertcenter alerts undelete --params '{\"alertId\": \"ALERT_ID\"}'`" + + # ============================================================ + # CONSUMER PRODUCTIVITY + # ============================================================ + - name: save-email-attachments + title: Save Gmail Attachments to Google Drive + description: "Find Gmail messages with attachments and save them to a Google Drive folder." + category: productivity + services: [gmail, drive] + steps: + - "Search for emails with attachments: `gws gmail users messages list --params '{\"userId\": \"me\", \"q\": \"has:attachment from:client@example.com\"}' --format table`" + - "Get message details: `gws gmail users messages get --params '{\"userId\": \"me\", \"id\": \"MESSAGE_ID\"}'`" + - "Download attachment: `gws gmail users messages attachments get --params '{\"userId\": \"me\", \"messageId\": \"MESSAGE_ID\", \"id\": \"ATTACHMENT_ID\"}'`" + - "Upload to Drive folder: `gws drive +upload --file ./attachment.pdf --parent FOLDER_ID`" + + # ============================================================ + # CROSS-SERVICE WORKFLOWS + # ============================================================ + - name: send-team-announcement + title: Announce via Gmail and Google Chat + description: "Send a team announcement via both Gmail and a Google Chat space." + category: communication + services: [gmail, chat] + steps: + - "Send email: `gws gmail +send --to team@company.com --subject 'Important Update' --body 'Please review the attached policy changes.'`" + - "Post in Chat: `gws chat +send --space spaces/TEAM_SPACE --text '📢 Important Update: Please check your email for policy changes.'`" + + - name: create-feedback-form + title: Create and Share a Google Form + description: "Create a Google Form for feedback and share it via Gmail." + category: productivity + services: [forms, gmail] + steps: + - "Create form: `gws forms forms create --json '{\"info\": {\"title\": \"Event Feedback\", \"documentTitle\": \"Event Feedback Form\"}}'`" + - "Get the form URL from the response (responderUri field)" + - "Email the form: `gws gmail +send --to attendees@company.com --subject 'Please share your feedback' --body 'Fill out the form: FORM_URL'`" + + - name: sync-contacts-to-sheet + title: Export Google Contacts to Sheets + description: "Export Google Contacts directory to a Google Sheets spreadsheet." + category: productivity + services: [people, sheets] + steps: + - "List contacts: `gws people people listDirectoryPeople --params '{\"readMask\": \"names,emailAddresses,phoneNumbers\", \"sources\": [\"DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE\"], \"pageSize\": 100}' --format json`" + - "Create a sheet: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Contacts' --values '[\"Name\", \"Email\", \"Phone\"]'`" + - "Append each contact row: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Contacts' --values '[\"Jane Doe\", \"jane@company.com\", \"+1-555-0100\"]'`" + + # ============================================================ + # CONSUMER — COLLABORATION + # ============================================================ + - name: share-event-materials + title: Share Files with Meeting Attendees + description: "Share Google Drive files with all attendees of a Google Calendar event." + category: productivity + services: [calendar, drive] + steps: + - "Get event attendees: `gws calendar events get --params '{\"calendarId\": \"primary\", \"eventId\": \"EVENT_ID\"}'`" + - "Share file with each attendee: `gws drive permissions create --params '{\"fileId\": \"FILE_ID\"}' --json '{\"role\": \"reader\", \"type\": \"user\", \"emailAddress\": \"attendee@company.com\"}'`" + - "Verify sharing: `gws drive permissions list --params '{\"fileId\": \"FILE_ID\"}' --format table`" + # ============================================================ + # GMAIL — ORGANIZATION + # ============================================================ + - name: create-vacation-responder + title: Set Up a Gmail Vacation Responder + description: "Enable a Gmail out-of-office auto-reply with a custom message and date range." + category: productivity + services: [gmail] + steps: + - "Enable vacation responder: `gws gmail users settings updateVacation --params '{\"userId\": \"me\"}' --json '{\"enableAutoReply\": true, \"responseSubject\": \"Out of Office\", \"responseBodyPlainText\": \"I am out of the office until Jan 20. For urgent matters, contact backup@company.com.\", \"restrictToContacts\": false, \"restrictToDomain\": false}'`" + - "Verify settings: `gws gmail users settings getVacation --params '{\"userId\": \"me\"}'`" + - "Disable when back: `gws gmail users settings updateVacation --params '{\"userId\": \"me\"}' --json '{\"enableAutoReply\": false}'`" + + # ============================================================ + # DRIVE — FILE OPERATIONS + # ============================================================ + # ============================================================ + # SHEETS — DATA WORKFLOWS + # ============================================================ + - name: create-events-from-sheet + title: Create Google Calendar Events from a Sheet + description: "Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row." + category: productivity + services: [sheets, calendar] + steps: + - "Read event data: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Events!A2:D'`" + - "For each row, create a calendar event: `gws calendar +insert --summary 'Team Standup' --start '2025-01-20T09:00' --duration 30 --attendees alice@company.com,bob@company.com`" + + # ============================================================ + # CALENDAR — PLANNING + # ============================================================ + - name: plan-weekly-schedule + title: Plan Your Weekly Google Calendar Schedule + description: "Review your Google Calendar week, identify gaps, and add events to fill them." + category: scheduling + services: [calendar] + steps: + - "Check this week's agenda: `gws calendar +agenda`" + - "Check free/busy for the week: `gws calendar freebusy query --json '{\"timeMin\": \"2025-01-20T00:00:00Z\", \"timeMax\": \"2025-01-25T00:00:00Z\", \"items\": [{\"id\": \"primary\"}]}'`" + - "Add a new event: `gws calendar +insert --summary 'Deep Work Block' --start '2025-01-21T14:00' --duration 120`" + - "Review updated schedule: `gws calendar +agenda`" + # ============================================================ + # MULTI-SERVICE PROJECT SETUP + # ============================================================ + # ============================================================ + # DOCS — COLLABORATION + # ============================================================ + - name: share-doc-and-notify + title: Share a Google Doc and Notify Collaborators + description: "Share a Google Docs document with edit access and email collaborators the link." + category: productivity + services: [drive, docs, gmail] + steps: + - "Find the doc: `gws drive files list --params '{\"q\": \"name contains '\\''Project Brief'\\'' and mimeType = '\\''application/vnd.google-apps.document'\\''\"}'`" + - "Share with editor access: `gws drive permissions create --params '{\"fileId\": \"DOC_ID\"}' --json '{\"role\": \"writer\", \"type\": \"user\", \"emailAddress\": \"reviewer@company.com\"}'`" + - "Email the link: `gws gmail +send --to reviewer@company.com --subject 'Please review: Project Brief' --body 'I have shared the project brief with you: https://docs.google.com/document/d/DOC_ID'`" + + # ============================================================ + # SHEETS — BACKUP + # ============================================================ + - name: backup-sheet-as-csv + title: Export a Google Sheet as CSV + description: "Export a Google Sheets spreadsheet as a CSV file for local backup or processing." + category: productivity + services: [sheets, drive] + steps: + - "Get spreadsheet details: `gws sheets spreadsheets get --params '{\"spreadsheetId\": \"SHEET_ID\"}'`" + - "Export as CSV: `gws drive files export --params '{\"fileId\": \"SHEET_ID\", \"mimeType\": \"text/csv\"}'`" + - "Or read values directly: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Sheet1' --format csv`" + + # ============================================================ + # CALENDAR — TEAM + # ============================================================ + # ============================================================ + # DRIVE — CLEANUP + # ============================================================ + # ============================================================ + # GMAIL — ARCHIVING + # ============================================================ + - name: save-email-to-doc + title: Save a Gmail Message to Google Docs + description: "Save a Gmail message body into a Google Doc for archival or reference." + category: productivity + services: [gmail, docs] + steps: + - "Find the message: `gws gmail users messages list --params '{\"userId\": \"me\", \"q\": \"subject:important from:boss@company.com\"}' --format table`" + - "Get message content: `gws gmail users messages get --params '{\"userId\": \"me\", \"id\": \"MSG_ID\"}'`" + - "Create a doc with the content: `gws docs documents create --json '{\"title\": \"Saved Email - Important Update\"}'`" + - "Write the email body: `gws docs +write --document-id DOC_ID --text 'From: boss@company.com\nSubject: Important Update\n\n[EMAIL BODY]'`" + + # ============================================================ + # SHEETS — FORMULAS + # ============================================================ + # ============================================================ + # REPETITIVE WORKFLOWS + # ============================================================ + # ============================================================ + # GMAIL — AUTOMATED REPLIES + # ============================================================ + - name: batch-reply-to-emails + title: Batch Reply to Similar Gmail Messages + description: "Find Gmail messages matching a query and send a standard reply to each one." + category: productivity + services: [gmail] + steps: + - "Find messages needing replies: `gws gmail users messages list --params '{\"userId\": \"me\", \"q\": \"is:unread from:customers label:support\"}' --format table`" + - "Read a message: `gws gmail users messages get --params '{\"userId\": \"me\", \"id\": \"MSG_ID\"}'`" + - "Send a reply: `gws gmail +send --to sender@example.com --subject 'Re: Your Request' --body 'Thank you for reaching out. We have received your request and will respond within 24 hours.'`" + - "Mark as read: `gws gmail users messages modify --params '{\"userId\": \"me\", \"id\": \"MSG_ID\"}' --json '{\"removeLabelIds\": [\"UNREAD\"]}'`" + + # ============================================================ + # DRIVE — BATCH OPERATIONS + # ============================================================ + - name: batch-rename-files + title: Batch Rename Google Drive Files + description: "Rename multiple Google Drive files matching a pattern to follow a consistent naming convention." + category: productivity + services: [drive] + steps: + - "Find files to rename: `gws drive files list --params '{\"q\": \"name contains '\\''Report'\\''\"}' --format table`" + - "Rename a file: `gws drive files update --params '{\"fileId\": \"FILE_ID\"}' --json '{\"name\": \"2025-Q1 Report - Final\"}'`" + - "Verify the rename: `gws drive files get --params '{\"fileId\": \"FILE_ID\", \"fields\": \"name\"}'`" + + # ============================================================ + # SHEETS — DATA SYNC + # ============================================================ + - name: compare-sheet-tabs + title: Compare Two Google Sheets Tabs + description: "Read data from two tabs in a Google Sheet to compare and identify differences." + category: productivity + services: [sheets] + steps: + - "Read the first tab: `gws sheets +read --spreadsheet-id SHEET_ID --range 'January!A1:D'`" + - "Read the second tab: `gws sheets +read --spreadsheet-id SHEET_ID --range 'February!A1:D'`" + - "Compare the data and identify changes" + + # ============================================================ + # CALENDAR — COORDINATION + # ============================================================ + - name: batch-invite-to-event + title: Add Multiple Attendees to a Calendar Event + description: "Add a list of attendees to an existing Google Calendar event and send notifications." + category: scheduling + services: [calendar] + steps: + - "Get the event: `gws calendar events get --params '{\"calendarId\": \"primary\", \"eventId\": \"EVENT_ID\"}'`" + - "Add attendees: `gws calendar events patch --params '{\"calendarId\": \"primary\", \"eventId\": \"EVENT_ID\", \"sendUpdates\": \"all\"}' --json '{\"attendees\": [{\"email\": \"alice@company.com\"}, {\"email\": \"bob@company.com\"}, {\"email\": \"carol@company.com\"}]}'`" + - "Verify attendees: `gws calendar events get --params '{\"calendarId\": \"primary\", \"eventId\": \"EVENT_ID\"}'`" + + # ============================================================ + # GMAIL — NOTIFICATION ROUTING + # ============================================================ + - name: forward-labeled-emails + title: Forward Labeled Gmail Messages + description: "Find Gmail messages with a specific label and forward them to another address." + category: productivity + services: [gmail] + steps: + - "Find labeled messages: `gws gmail users messages list --params '{\"userId\": \"me\", \"q\": \"label:needs-review\"}' --format table`" + - "Get message content: `gws gmail users messages get --params '{\"userId\": \"me\", \"id\": \"MSG_ID\"}'`" + - "Forward via new email: `gws gmail +send --to manager@company.com --subject 'FW: [Original Subject]' --body 'Forwarding for your review:\n\n[Original Message Body]'`" + + # ============================================================ + # DOCS + SHEETS — CROSS-SERVICE + # ============================================================ + - name: generate-report-from-sheet + title: Generate a Google Docs Report from Sheet Data + description: "Read data from a Google Sheet and create a formatted Google Docs report." + category: productivity + services: [sheets, docs, drive] + steps: + - "Read the data: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Sales!A1:D'`" + - "Create the report doc: `gws docs documents create --json '{\"title\": \"Sales Report - January 2025\"}'`" + - "Write the report: `gws docs +write --document-id DOC_ID --text '## Sales Report - January 2025\n\n### Summary\nTotal deals: 45\nRevenue: $125,000\n\n### Top Deals\n1. Acme Corp - $25,000\n2. Widget Inc - $18,000'`" + - "Share with stakeholders: `gws drive permissions create --params '{\"fileId\": \"DOC_ID\"}' --json '{\"role\": \"reader\", \"type\": \"user\", \"emailAddress\": \"cfo@company.com\"}'`" + diff --git a/skills/gws-admin-reports/SKILL.md b/skills/gws-admin-reports/SKILL.md index a40c0303..fd623ca1 100644 --- a/skills/gws-admin-reports/SKILL.md +++ b/skills/gws-admin-reports/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-admin-reports version: 1.0.0 -description: "USE WHEN the user wants to audit logs and usage reports via the `gws` CLI." +description: "Google Workspace Admin SDK: Audit logs and usage reports." metadata: openclaw: category: "productivity" diff --git a/skills/gws-admin/SKILL.md b/skills/gws-admin/SKILL.md index 0bbe172c..db7ff818 100644 --- a/skills/gws-admin/SKILL.md +++ b/skills/gws-admin/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-admin version: 1.0.0 -description: "USE WHEN the user wants to manage users, groups, and devices via the `gws` CLI." +description: "Google Workspace Admin SDK: Manage users, groups, and devices." metadata: openclaw: category: "productivity" diff --git a/skills/gws-alertcenter/SKILL.md b/skills/gws-alertcenter/SKILL.md index 02de50ae..a003a0b3 100644 --- a/skills/gws-alertcenter/SKILL.md +++ b/skills/gws-alertcenter/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-alertcenter version: 1.0.0 -description: "USE WHEN the user wants to manage workspace security alerts via the `gws` CLI." +description: "Google Workspace Alert Center: Manage Workspace security alerts." metadata: openclaw: category: "productivity" diff --git a/skills/gws-apps-script-push/SKILL.md b/skills/gws-apps-script-push/SKILL.md index ec5c14fd..1866e0ee 100644 --- a/skills/gws-apps-script-push/SKILL.md +++ b/skills/gws-apps-script-push/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-apps-script-push version: 1.0.0 -description: "Upload local files to an Apps Script project" +description: "Google Apps Script: Upload local files to an Apps Script project." metadata: openclaw: category: "productivity" diff --git a/skills/gws-apps-script/SKILL.md b/skills/gws-apps-script/SKILL.md index 4ebec093..75f47445 100644 --- a/skills/gws-apps-script/SKILL.md +++ b/skills/gws-apps-script/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-apps-script version: 1.0.0 -description: "USE WHEN the user wants to manage and execute apps script projects via the `gws` CLI." +description: "Google Apps Script: Manage and execute Apps Script projects." metadata: openclaw: category: "productivity" diff --git a/skills/gws-calendar-agenda/SKILL.md b/skills/gws-calendar-agenda/SKILL.md index c5527ecf..b040b879 100644 --- a/skills/gws-calendar-agenda/SKILL.md +++ b/skills/gws-calendar-agenda/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-calendar-agenda version: 1.0.0 -description: "Show upcoming events across all calendars" +description: "Google Calendar: Show upcoming events across all calendars." metadata: openclaw: category: "productivity" diff --git a/skills/gws-calendar-insert/SKILL.md b/skills/gws-calendar-insert/SKILL.md index 58c882af..bd0aeb2e 100644 --- a/skills/gws-calendar-insert/SKILL.md +++ b/skills/gws-calendar-insert/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-calendar-insert version: 1.0.0 -description: "create a new event" +description: "Google Calendar: Create a new event." metadata: openclaw: category: "productivity" diff --git a/skills/gws-calendar/SKILL.md b/skills/gws-calendar/SKILL.md index 834c89da..31e9004a 100644 --- a/skills/gws-calendar/SKILL.md +++ b/skills/gws-calendar/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-calendar version: 1.0.0 -description: "USE WHEN the user wants to manage calendars and events via the `gws` CLI." +description: "Google Calendar: Manage calendars and events." metadata: openclaw: category: "productivity" diff --git a/skills/gws-chat-send/SKILL.md b/skills/gws-chat-send/SKILL.md index 6a9517e9..80dd5ee0 100644 --- a/skills/gws-chat-send/SKILL.md +++ b/skills/gws-chat-send/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-chat-send version: 1.0.0 -description: "Send a message to a space" +description: "Google Chat: Send a message to a space." metadata: openclaw: category: "productivity" diff --git a/skills/gws-chat/SKILL.md b/skills/gws-chat/SKILL.md index 3be23749..f9df2cb3 100644 --- a/skills/gws-chat/SKILL.md +++ b/skills/gws-chat/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-chat version: 1.0.0 -description: "USE WHEN the user wants to manage chat spaces and messages via the `gws` CLI." +description: "Google Chat: Manage Chat spaces and messages." metadata: openclaw: category: "productivity" diff --git a/skills/gws-classroom/SKILL.md b/skills/gws-classroom/SKILL.md index d8227de5..b9000840 100644 --- a/skills/gws-classroom/SKILL.md +++ b/skills/gws-classroom/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-classroom version: 1.0.0 -description: "USE WHEN the user wants to manage classes, rosters, and coursework via the `gws` CLI." +description: "Google Classroom: Manage classes, rosters, and coursework." metadata: openclaw: category: "productivity" diff --git a/skills/gws-cloudidentity/SKILL.md b/skills/gws-cloudidentity/SKILL.md index 61f68e1a..af924096 100644 --- a/skills/gws-cloudidentity/SKILL.md +++ b/skills/gws-cloudidentity/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-cloudidentity version: 1.0.0 -description: "USE WHEN the user wants to manage identity groups and memberships via the `gws` CLI." +description: "Google Cloud Identity: Manage identity groups and memberships." metadata: openclaw: category: "productivity" diff --git a/skills/gws-docs-write/SKILL.md b/skills/gws-docs-write/SKILL.md index c9e358d0..15e950b8 100644 --- a/skills/gws-docs-write/SKILL.md +++ b/skills/gws-docs-write/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-docs-write version: 1.0.0 -description: "Append text to a document" +description: "Google Docs: Append text to a document." metadata: openclaw: category: "productivity" diff --git a/skills/gws-docs/SKILL.md b/skills/gws-docs/SKILL.md index 78fa9763..6b870613 100644 --- a/skills/gws-docs/SKILL.md +++ b/skills/gws-docs/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-docs version: 1.0.0 -description: "USE WHEN the user wants to read and write google docs via the `gws` CLI." +description: "Read and write Google Docs." metadata: openclaw: category: "productivity" diff --git a/skills/gws-drive-upload/SKILL.md b/skills/gws-drive-upload/SKILL.md index ab6f1350..68f42c7c 100644 --- a/skills/gws-drive-upload/SKILL.md +++ b/skills/gws-drive-upload/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-drive-upload version: 1.0.0 -description: "Upload a file with automatic metadata" +description: "Google Drive: Upload a file with automatic metadata." metadata: openclaw: category: "productivity" diff --git a/skills/gws-drive/SKILL.md b/skills/gws-drive/SKILL.md index ed875383..41d403ac 100644 --- a/skills/gws-drive/SKILL.md +++ b/skills/gws-drive/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-drive version: 1.0.0 -description: "USE WHEN the user wants to manage files, folders, and shared drives via the `gws` CLI." +description: "Google Drive: Manage files, folders, and shared drives." metadata: openclaw: category: "productivity" diff --git a/skills/gws-events-renew/SKILL.md b/skills/gws-events-renew/SKILL.md index 34f4f319..1e59e183 100644 --- a/skills/gws-events-renew/SKILL.md +++ b/skills/gws-events-renew/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-events-renew version: 1.0.0 -description: "Renew/reactivate Workspace Events subscriptions" +description: "Google Workspace Events: Renew/reactivate Workspace Events subscriptions." metadata: openclaw: category: "productivity" diff --git a/skills/gws-events-subscribe/SKILL.md b/skills/gws-events-subscribe/SKILL.md index 29acd7d9..fe96291c 100644 --- a/skills/gws-events-subscribe/SKILL.md +++ b/skills/gws-events-subscribe/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-events-subscribe version: 1.0.0 -description: "Subscribe to Workspace events and stream them as NDJSON" +description: "Google Workspace Events: Subscribe to Workspace events and stream them as NDJSON." metadata: openclaw: category: "productivity" diff --git a/skills/gws-events/SKILL.md b/skills/gws-events/SKILL.md index e1e07494..9693eef2 100644 --- a/skills/gws-events/SKILL.md +++ b/skills/gws-events/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-events version: 1.0.0 -description: "USE WHEN the user wants to subscribe to google workspace events via the `gws` CLI." +description: "Subscribe to Google Workspace events." metadata: openclaw: category: "productivity" diff --git a/skills/gws-forms/SKILL.md b/skills/gws-forms/SKILL.md index 38a9f65a..330965e7 100644 --- a/skills/gws-forms/SKILL.md +++ b/skills/gws-forms/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-forms version: 1.0.0 -description: "USE WHEN the user wants to read and write google forms via the `gws` CLI." +description: "Read and write Google Forms." metadata: openclaw: category: "productivity" diff --git a/skills/gws-gmail-send/SKILL.md b/skills/gws-gmail-send/SKILL.md index d8ff8fd6..fea6a42b 100644 --- a/skills/gws-gmail-send/SKILL.md +++ b/skills/gws-gmail-send/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-gmail-send version: 1.0.0 -description: "Send an email" +description: "Gmail: Send an email." metadata: openclaw: category: "productivity" diff --git a/skills/gws-gmail-triage/SKILL.md b/skills/gws-gmail-triage/SKILL.md index 2d7f4a70..f78dfb02 100644 --- a/skills/gws-gmail-triage/SKILL.md +++ b/skills/gws-gmail-triage/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-gmail-triage version: 1.0.0 -description: "Show unread inbox summary (sender, subject, date)" +description: "Gmail: Show unread inbox summary (sender, subject, date)." metadata: openclaw: category: "productivity" diff --git a/skills/gws-gmail-watch/SKILL.md b/skills/gws-gmail-watch/SKILL.md index c30039ad..c45cb251 100644 --- a/skills/gws-gmail-watch/SKILL.md +++ b/skills/gws-gmail-watch/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-gmail-watch version: 1.0.0 -description: "Watch for new emails and stream them as NDJSON" +description: "Gmail: Watch for new emails and stream them as NDJSON." metadata: openclaw: category: "productivity" diff --git a/skills/gws-gmail/SKILL.md b/skills/gws-gmail/SKILL.md index f7cb7090..d9eee3ef 100644 --- a/skills/gws-gmail/SKILL.md +++ b/skills/gws-gmail/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-gmail version: 1.0.0 -description: "USE WHEN the user wants to send, read, and manage email via the `gws` CLI." +description: "Gmail: Send, read, and manage email." metadata: openclaw: category: "productivity" diff --git a/skills/gws-groupssettings/SKILL.md b/skills/gws-groupssettings/SKILL.md index 30004353..a265e744 100644 --- a/skills/gws-groupssettings/SKILL.md +++ b/skills/gws-groupssettings/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-groupssettings version: 1.0.0 -description: "USE WHEN the user wants to manage google groups settings via the `gws` CLI." +description: "Manage Google Groups settings." metadata: openclaw: category: "productivity" diff --git a/skills/gws-keep/SKILL.md b/skills/gws-keep/SKILL.md index 8e81b0dc..3a3a083e 100644 --- a/skills/gws-keep/SKILL.md +++ b/skills/gws-keep/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-keep version: 1.0.0 -description: "USE WHEN the user wants to manage google keep notes via the `gws` CLI." +description: "Manage Google Keep notes." metadata: openclaw: category: "productivity" diff --git a/skills/gws-licensing/SKILL.md b/skills/gws-licensing/SKILL.md index 27b9b7f6..1c5ab6be 100644 --- a/skills/gws-licensing/SKILL.md +++ b/skills/gws-licensing/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-licensing version: 1.0.0 -description: "USE WHEN the user wants to manage product licenses via the `gws` CLI." +description: "Google Workspace Enterprise License Manager: Manage product licenses." metadata: openclaw: category: "productivity" diff --git a/skills/gws-meet/SKILL.md b/skills/gws-meet/SKILL.md index e3d090f3..99170d01 100644 --- a/skills/gws-meet/SKILL.md +++ b/skills/gws-meet/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-meet version: 1.0.0 -description: "USE WHEN the user wants to manage google meet conferences via the `gws` CLI." +description: "Manage Google Meet conferences." metadata: openclaw: category: "productivity" diff --git a/skills/gws-modelarmor-create-template/SKILL.md b/skills/gws-modelarmor-create-template/SKILL.md index 83bfb50b..745c639f 100644 --- a/skills/gws-modelarmor-create-template/SKILL.md +++ b/skills/gws-modelarmor-create-template/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-modelarmor-create-template version: 1.0.0 -description: "Create a new Model Armor template" +description: "Google Model Armor: Create a new Model Armor template." metadata: openclaw: category: "security" diff --git a/skills/gws-modelarmor-sanitize-prompt/SKILL.md b/skills/gws-modelarmor-sanitize-prompt/SKILL.md index fece02c0..f6c05fda 100644 --- a/skills/gws-modelarmor-sanitize-prompt/SKILL.md +++ b/skills/gws-modelarmor-sanitize-prompt/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-modelarmor-sanitize-prompt version: 1.0.0 -description: "Sanitize a user prompt through a Model Armor template" +description: "Google Model Armor: Sanitize a user prompt through a Model Armor template." metadata: openclaw: category: "security" diff --git a/skills/gws-modelarmor-sanitize-response/SKILL.md b/skills/gws-modelarmor-sanitize-response/SKILL.md index d4d8a62a..901ed2d0 100644 --- a/skills/gws-modelarmor-sanitize-response/SKILL.md +++ b/skills/gws-modelarmor-sanitize-response/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-modelarmor-sanitize-response version: 1.0.0 -description: "Sanitize a model response through a Model Armor template" +description: "Google Model Armor: Sanitize a model response through a Model Armor template." metadata: openclaw: category: "security" diff --git a/skills/gws-modelarmor/SKILL.md b/skills/gws-modelarmor/SKILL.md index 7514c035..0f97c2d4 100644 --- a/skills/gws-modelarmor/SKILL.md +++ b/skills/gws-modelarmor/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-modelarmor version: 1.0.0 -description: "USE WHEN the user wants to filter user-generated content for safety via the `gws` CLI." +description: "Google Model Armor: Filter user-generated content for safety." metadata: openclaw: category: "productivity" diff --git a/skills/gws-people/SKILL.md b/skills/gws-people/SKILL.md index f50ad00f..fd56b771 100644 --- a/skills/gws-people/SKILL.md +++ b/skills/gws-people/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-people version: 1.0.0 -description: "USE WHEN the user wants to manage contacts and profiles via the `gws` CLI." +description: "Google People: Manage contacts and profiles." metadata: openclaw: category: "productivity" diff --git a/skills/gws-reseller/SKILL.md b/skills/gws-reseller/SKILL.md index c36b73f7..f6239a9f 100644 --- a/skills/gws-reseller/SKILL.md +++ b/skills/gws-reseller/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-reseller version: 1.0.0 -description: "USE WHEN the user wants to manage workspace subscriptions via the `gws` CLI." +description: "Google Workspace Reseller: Manage Workspace subscriptions." metadata: openclaw: category: "productivity" diff --git a/skills/gws-shared/SKILL.md b/skills/gws-shared/SKILL.md index 3b22e6a2..1e4f938a 100644 --- a/skills/gws-shared/SKILL.md +++ b/skills/gws-shared/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-shared version: 1.0.0 -description: "Shared patterns, authentication, and global flags for all gws commands." +description: "gws CLI: Shared patterns for authentication, global flags, and output formatting." metadata: openclaw: category: "productivity" diff --git a/skills/gws-sheets-append/SKILL.md b/skills/gws-sheets-append/SKILL.md index 58daae6d..1d1fbccc 100644 --- a/skills/gws-sheets-append/SKILL.md +++ b/skills/gws-sheets-append/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-sheets-append version: 1.0.0 -description: "Append a row to a spreadsheet" +description: "Google Sheets: Append a row to a spreadsheet." metadata: openclaw: category: "productivity" diff --git a/skills/gws-sheets-read/SKILL.md b/skills/gws-sheets-read/SKILL.md index 5223be7d..4b23bed2 100644 --- a/skills/gws-sheets-read/SKILL.md +++ b/skills/gws-sheets-read/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-sheets-read version: 1.0.0 -description: "Read values from a spreadsheet" +description: "Google Sheets: Read values from a spreadsheet." metadata: openclaw: category: "productivity" diff --git a/skills/gws-sheets/SKILL.md b/skills/gws-sheets/SKILL.md index 6428ece7..83a7cb47 100644 --- a/skills/gws-sheets/SKILL.md +++ b/skills/gws-sheets/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-sheets version: 1.0.0 -description: "USE WHEN the user wants to read and write spreadsheets via the `gws` CLI." +description: "Google Sheets: Read and write spreadsheets." metadata: openclaw: category: "productivity" diff --git a/skills/gws-slides/SKILL.md b/skills/gws-slides/SKILL.md index 63258aba..eba76467 100644 --- a/skills/gws-slides/SKILL.md +++ b/skills/gws-slides/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-slides version: 1.0.0 -description: "USE WHEN the user wants to read and write presentations via the `gws` CLI." +description: "Google Slides: Read and write presentations." metadata: openclaw: category: "productivity" diff --git a/skills/gws-tasks/SKILL.md b/skills/gws-tasks/SKILL.md index 8f1cb6b1..6f3c502a 100644 --- a/skills/gws-tasks/SKILL.md +++ b/skills/gws-tasks/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-tasks version: 1.0.0 -description: "USE WHEN the user wants to manage task lists and tasks via the `gws` CLI." +description: "Google Tasks: Manage task lists and tasks." metadata: openclaw: category: "productivity" diff --git a/skills/gws-vault/SKILL.md b/skills/gws-vault/SKILL.md index 94323184..117fe3d9 100644 --- a/skills/gws-vault/SKILL.md +++ b/skills/gws-vault/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-vault version: 1.0.0 -description: "USE WHEN the user wants to manage ediscovery holds and exports via the `gws` CLI." +description: "Google Vault: Manage eDiscovery holds and exports." metadata: openclaw: category: "productivity" diff --git a/skills/gws-workflow-email-to-task/SKILL.md b/skills/gws-workflow-email-to-task/SKILL.md index 87dbc74b..8fb6ba96 100644 --- a/skills/gws-workflow-email-to-task/SKILL.md +++ b/skills/gws-workflow-email-to-task/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-workflow-email-to-task version: 1.0.0 -description: "Convert a Gmail message into a Google Tasks entry" +description: "Google Workflow: Convert a Gmail message into a Google Tasks entry." metadata: openclaw: category: "productivity" diff --git a/skills/gws-workflow-file-announce/SKILL.md b/skills/gws-workflow-file-announce/SKILL.md index 04829a7d..5653d13f 100644 --- a/skills/gws-workflow-file-announce/SKILL.md +++ b/skills/gws-workflow-file-announce/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-workflow-file-announce version: 1.0.0 -description: "Announce a Drive file in a Chat space" +description: "Google Workflow: Announce a Drive file in a Chat space." metadata: openclaw: category: "productivity" diff --git a/skills/gws-workflow-meeting-prep/SKILL.md b/skills/gws-workflow-meeting-prep/SKILL.md index a95a71e5..4a127c0c 100644 --- a/skills/gws-workflow-meeting-prep/SKILL.md +++ b/skills/gws-workflow-meeting-prep/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-workflow-meeting-prep version: 1.0.0 -description: "Prepare for your next meeting: agenda, attendees, and linked docs" +description: "Google Workflow: Prepare for your next meeting: agenda, attendees, and linked docs." metadata: openclaw: category: "productivity" diff --git a/skills/gws-workflow-standup-report/SKILL.md b/skills/gws-workflow-standup-report/SKILL.md index a5af1c2d..dce76f33 100644 --- a/skills/gws-workflow-standup-report/SKILL.md +++ b/skills/gws-workflow-standup-report/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-workflow-standup-report version: 1.0.0 -description: "Today's meetings + open tasks as a standup summary" +description: "Google Workflow: Today's meetings + open tasks as a standup summary." metadata: openclaw: category: "productivity" diff --git a/skills/gws-workflow-weekly-digest/SKILL.md b/skills/gws-workflow-weekly-digest/SKILL.md index 8d815494..0c076e12 100644 --- a/skills/gws-workflow-weekly-digest/SKILL.md +++ b/skills/gws-workflow-weekly-digest/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-workflow-weekly-digest version: 1.0.0 -description: "Weekly summary: this week's meetings + unread email count" +description: "Google Workflow: Weekly summary: this week's meetings + unread email count." metadata: openclaw: category: "productivity" diff --git a/skills/gws-workflow/SKILL.md b/skills/gws-workflow/SKILL.md index bcc97010..2325894e 100644 --- a/skills/gws-workflow/SKILL.md +++ b/skills/gws-workflow/SKILL.md @@ -1,7 +1,7 @@ --- name: gws-workflow version: 1.0.0 -description: "USE WHEN the user wants to cross-service productivity workflows via the `gws` CLI." +description: "Google Workflow: Cross-service productivity workflows." metadata: openclaw: category: "productivity" diff --git a/skills/persona-content-creator/SKILL.md b/skills/persona-content-creator/SKILL.md index 7202c996..da33a81e 100644 --- a/skills/persona-content-creator/SKILL.md +++ b/skills/persona-content-creator/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-content-creator version: 1.0.0 -description: "USE WHEN the user needs help creating, organizing, and distributing content across Workspace." +description: "Create, organize, and distribute content across Workspace." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-docs`, `gws-drive`, `gws-gmail`, `gws-chat`, `gws-slides` -USE WHEN the user needs help creating, organizing, and distributing content across Workspace. +Create, organize, and distribute content across Workspace. ## Relevant Workflows - `gws workflow +file-announce` diff --git a/skills/persona-customer-support/SKILL.md b/skills/persona-customer-support/SKILL.md index 90e85f9d..c78725cb 100644 --- a/skills/persona-customer-support/SKILL.md +++ b/skills/persona-customer-support/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-customer-support version: 1.0.0 -description: "USE WHEN the user needs help managing customer support workflows — tracking tickets, sending responses, and escalating issues." +description: "Manage customer support — track tickets, respond, escalate issues." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-sheets`, `gws-chat`, `gws-calendar` -USE WHEN the user needs help managing customer support workflows — tracking tickets, sending responses, and escalating issues. +Manage customer support — track tickets, respond, escalate issues. ## Relevant Workflows - `gws workflow +email-to-task` diff --git a/skills/persona-event-coordinator/SKILL.md b/skills/persona-event-coordinator/SKILL.md index 00e82b72..3efb75a2 100644 --- a/skills/persona-event-coordinator/SKILL.md +++ b/skills/persona-event-coordinator/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-event-coordinator version: 1.0.0 -description: "USE WHEN the user needs help planning and managing events — scheduling, invitations, and logistics." +description: "Plan and manage events — scheduling, invitations, and logistics." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-calendar`, `gws-gmail`, `gws-drive`, `gws-chat`, `gws-sheets` -USE WHEN the user needs help planning and managing events — scheduling, invitations, and logistics. +Plan and manage events — scheduling, invitations, and logistics. ## Relevant Workflows - `gws workflow +meeting-prep` diff --git a/skills/persona-exec-assistant/SKILL.md b/skills/persona-exec-assistant/SKILL.md index a9fccf4d..f0aed66e 100644 --- a/skills/persona-exec-assistant/SKILL.md +++ b/skills/persona-exec-assistant/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-exec-assistant version: 1.0.0 -description: "USE WHEN the user needs help managing an executive's schedule, inbox, and communications." +description: "Manage an executive's schedule, inbox, and communications." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-drive`, `gws-chat` -USE WHEN the user needs help managing an executive's schedule, inbox, and communications. +Manage an executive's schedule, inbox, and communications. ## Relevant Workflows - `gws workflow +standup-report` diff --git a/skills/persona-hr-coordinator/SKILL.md b/skills/persona-hr-coordinator/SKILL.md index 76f27e73..92177ff4 100644 --- a/skills/persona-hr-coordinator/SKILL.md +++ b/skills/persona-hr-coordinator/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-hr-coordinator version: 1.0.0 -description: "USE WHEN the user needs help with HR workflows — onboarding, announcements, and employee communications." +description: "Handle HR workflows — onboarding, announcements, and employee comms." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-drive`, `gws-chat`, `gws-admin` -USE WHEN the user needs help with HR workflows — onboarding, announcements, and employee communications. +Handle HR workflows — onboarding, announcements, and employee comms. ## Relevant Workflows - `gws workflow +email-to-task` diff --git a/skills/persona-it-admin/SKILL.md b/skills/persona-it-admin/SKILL.md index bfd2b6ea..1c63616e 100644 --- a/skills/persona-it-admin/SKILL.md +++ b/skills/persona-it-admin/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-it-admin version: 1.0.0 -description: "USE WHEN the user needs help with IT administration — managing users, monitoring security, and configuring Workspace." +description: "Administer IT — manage users, monitor security, configure Workspace." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-admin`, `gws-gmail`, `gws-drive`, `gws-calendar` -USE WHEN the user needs help with IT administration — managing users, monitoring security, and configuring Workspace. +Administer IT — manage users, monitor security, configure Workspace. ## Relevant Workflows - `gws workflow +standup-report` diff --git a/skills/persona-project-manager/SKILL.md b/skills/persona-project-manager/SKILL.md index d72cc0f7..f76e2e3c 100644 --- a/skills/persona-project-manager/SKILL.md +++ b/skills/persona-project-manager/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-project-manager version: 1.0.0 -description: "USE WHEN the user needs help coordinating projects across Workspace — tracking tasks, scheduling, and sharing documents." +description: "Coordinate projects — track tasks, schedule meetings, and share docs." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-drive`, `gws-sheets`, `gws-calendar`, `gws-gmail`, `gws-chat` -USE WHEN the user needs help coordinating projects across Workspace — tracking tasks, scheduling, and sharing documents. +Coordinate projects — track tasks, schedule meetings, and share docs. ## Relevant Workflows - `gws workflow +standup-report` diff --git a/skills/persona-researcher/SKILL.md b/skills/persona-researcher/SKILL.md index 7830c32a..e97bbac2 100644 --- a/skills/persona-researcher/SKILL.md +++ b/skills/persona-researcher/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-researcher version: 1.0.0 -description: "USE WHEN the user needs help organizing research — managing references, notes, and collaboration." +description: "Organize research — manage references, notes, and collaboration." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-drive`, `gws-docs`, `gws-sheets`, `gws-gmail` -USE WHEN the user needs help organizing research — managing references, notes, and collaboration. +Organize research — manage references, notes, and collaboration. ## Relevant Workflows - `gws workflow +file-announce` diff --git a/skills/persona-sales-ops/SKILL.md b/skills/persona-sales-ops/SKILL.md index 7202c36f..d541cefb 100644 --- a/skills/persona-sales-ops/SKILL.md +++ b/skills/persona-sales-ops/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-sales-ops version: 1.0.0 -description: "USE WHEN the user needs help with sales workflows — tracking deals, scheduling calls, and managing client communications." +description: "Manage sales workflows — track deals, schedule calls, client comms." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-sheets`, `gws-drive` -USE WHEN the user needs help with sales workflows — tracking deals, scheduling calls, and managing client communications. +Manage sales workflows — track deals, schedule calls, client comms. ## Relevant Workflows - `gws workflow +meeting-prep` diff --git a/skills/persona-team-lead/SKILL.md b/skills/persona-team-lead/SKILL.md index 959ed361..e4758ff6 100644 --- a/skills/persona-team-lead/SKILL.md +++ b/skills/persona-team-lead/SKILL.md @@ -1,7 +1,7 @@ --- name: persona-team-lead version: 1.0.0 -description: "USE WHEN the user needs help managing a team — standups, task coordination, and team communications." +description: "Lead a team — run standups, coordinate tasks, and communicate." metadata: openclaw: category: "persona" @@ -14,7 +14,7 @@ metadata: > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-calendar`, `gws-gmail`, `gws-chat`, `gws-drive`, `gws-sheets` -USE WHEN the user needs help managing a team — standups, task coordination, and team communications. +Lead a team — run standups, coordinate tasks, and communicate. ## Relevant Workflows - `gws workflow +standup-report` diff --git a/skills/recipe-audit-drive-sharing/SKILL.md b/skills/recipe-audit-drive-sharing/SKILL.md deleted file mode 100644 index 5d2eb8f1..00000000 --- a/skills/recipe-audit-drive-sharing/SKILL.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: recipe-audit-drive-sharing -version: 1.0.0 -description: "USE WHEN the user needs to check which files are shared externally." -metadata: - openclaw: - category: "recipe" - domain: "security" - requires: - bins: ["gws"] - skills: ["gws-drive"] ---- - -# Audit External Sharing on Drive - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` - -USE WHEN the user needs to check which files are shared externally. - -> [!CAUTION] -> Revoking permissions immediately removes access. Confirm with the file owner first. - -## Steps - -1. Search for externally shared files: `gws drive files list --params '{"q": "visibility = '\''anyoneWithLink'\'' or visibility = '\''anyoneCanFind'\''"}'` -2. Check permissions on a specific file: `gws drive permissions list --params '{"fileId": "FILE_ID"}'` -3. Revoke external access if needed: `gws drive permissions delete --params '{"fileId": "FILE_ID", "permissionId": "PERM_ID"}'` - diff --git a/skills/recipe-audit-external-sharing/SKILL.md b/skills/recipe-audit-external-sharing/SKILL.md new file mode 100644 index 00000000..2dcb8d05 --- /dev/null +++ b/skills/recipe-audit-external-sharing/SKILL.md @@ -0,0 +1,28 @@ +--- +name: recipe-audit-external-sharing +version: 1.0.0 +description: "Find and review Google Drive files shared outside the organization." +metadata: + openclaw: + category: "recipe" + domain: "security" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Audit External Drive Sharing + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +Find and review Google Drive files shared outside the organization. + +> [!CAUTION] +> Revoking permissions immediately removes access. Confirm with the file owner first. + +## Steps + +1. List externally shared files: `gws drive files list --params '{"q": "visibility = '\''anyoneWithLink'\''"}'` +2. Check permissions on a file: `gws drive permissions list --params '{"fileId": "FILE_ID"}'` +3. Revoke if needed: `gws drive permissions delete --params '{"fileId": "FILE_ID", "permissionId": "PERM_ID"}'` + diff --git a/skills/recipe-backup-sheet-as-csv/SKILL.md b/skills/recipe-backup-sheet-as-csv/SKILL.md new file mode 100644 index 00000000..c2c38a31 --- /dev/null +++ b/skills/recipe-backup-sheet-as-csv/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-backup-sheet-as-csv +version: 1.0.0 +description: "Export a Google Sheets spreadsheet as a CSV file for local backup or processing." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-sheets", "gws-drive"] +--- + +# Export a Google Sheet as CSV + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-drive` + +Export a Google Sheets spreadsheet as a CSV file for local backup or processing. + +## Steps + +1. Get spreadsheet details: `gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}'` +2. Export as CSV: `gws drive files export --params '{"fileId": "SHEET_ID", "mimeType": "text/csv"}'` +3. Or read values directly: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Sheet1' --format csv` + diff --git a/skills/recipe-batch-invite-to-event/SKILL.md b/skills/recipe-batch-invite-to-event/SKILL.md new file mode 100644 index 00000000..73333f50 --- /dev/null +++ b/skills/recipe-batch-invite-to-event/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-batch-invite-to-event +version: 1.0.0 +description: "Add a list of attendees to an existing Google Calendar event and send notifications." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-calendar"] +--- + +# Add Multiple Attendees to a Calendar Event + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` + +Add a list of attendees to an existing Google Calendar event and send notifications. + +## Steps + +1. Get the event: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` +2. Add attendees: `gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"attendees": [{"email": "alice@company.com"}, {"email": "bob@company.com"}, {"email": "carol@company.com"}]}'` +3. Verify attendees: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` + diff --git a/skills/recipe-batch-rename-files/SKILL.md b/skills/recipe-batch-rename-files/SKILL.md new file mode 100644 index 00000000..f3eb7d10 --- /dev/null +++ b/skills/recipe-batch-rename-files/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-batch-rename-files +version: 1.0.0 +description: "Rename multiple Google Drive files matching a pattern to follow a consistent naming convention." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Batch Rename Google Drive Files + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +Rename multiple Google Drive files matching a pattern to follow a consistent naming convention. + +## Steps + +1. Find files to rename: `gws drive files list --params '{"q": "name contains '\''Report'\''"}' --format table` +2. Rename a file: `gws drive files update --params '{"fileId": "FILE_ID"}' --json '{"name": "2025-Q1 Report - Final"}'` +3. Verify the rename: `gws drive files get --params '{"fileId": "FILE_ID", "fields": "name"}'` + diff --git a/skills/recipe-batch-reply-to-emails/SKILL.md b/skills/recipe-batch-reply-to-emails/SKILL.md new file mode 100644 index 00000000..bb8878f7 --- /dev/null +++ b/skills/recipe-batch-reply-to-emails/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-batch-reply-to-emails +version: 1.0.0 +description: "Find Gmail messages matching a query and send a standard reply to each one." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail"] +--- + +# Batch Reply to Similar Gmail Messages + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` + +Find Gmail messages matching a query and send a standard reply to each one. + +## Steps + +1. Find messages needing replies: `gws gmail users messages list --params '{"userId": "me", "q": "is:unread from:customers label:support"}' --format table` +2. Read a message: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'` +3. Send a reply: `gws gmail +send --to sender@example.com --subject 'Re: Your Request' --body 'Thank you for reaching out. We have received your request and will respond within 24 hours.'` +4. Mark as read: `gws gmail users messages modify --params '{"userId": "me", "id": "MSG_ID"}' --json '{"removeLabelIds": ["UNREAD"]}'` + diff --git a/skills/recipe-block-focus-time/SKILL.md b/skills/recipe-block-focus-time/SKILL.md new file mode 100644 index 00000000..c2798dc1 --- /dev/null +++ b/skills/recipe-block-focus-time/SKILL.md @@ -0,0 +1,24 @@ +--- +name: recipe-block-focus-time +version: 1.0.0 +description: "Create recurring focus time blocks on Google Calendar to protect deep work hours." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-calendar"] +--- + +# Block Focus Time on Google Calendar + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` + +Create recurring focus time blocks on Google Calendar to protect deep work hours. + +## Steps + +1. Create recurring focus block: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Focus Time", "description": "Protected deep work block", "start": {"dateTime": "2025-01-20T09:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2025-01-20T11:00:00", "timeZone": "America/New_York"}, "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"], "transparency": "opaque"}'` +2. Verify it shows as busy: `gws calendar +agenda` + diff --git a/skills/recipe-bulk-download-folder/SKILL.md b/skills/recipe-bulk-download-folder/SKILL.md new file mode 100644 index 00000000..d45d0a0a --- /dev/null +++ b/skills/recipe-bulk-download-folder/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-bulk-download-folder +version: 1.0.0 +description: "List and download all files from a Google Drive folder." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Bulk Download Drive Folder + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +List and download all files from a Google Drive folder. + +## Steps + +1. List files in folder: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json` +2. Download each file: `gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext` +3. Export Google Docs as PDF: `gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf` + diff --git a/skills/recipe-bulk-download/SKILL.md b/skills/recipe-bulk-download/SKILL.md deleted file mode 100644 index d9d6b966..00000000 --- a/skills/recipe-bulk-download/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-bulk-download -version: 1.0.0 -description: "USE WHEN the user needs to download multiple files from a Drive folder." -metadata: - openclaw: - category: "recipe" - domain: "documents" - requires: - bins: ["gws"] - skills: ["gws-drive"] ---- - -# Download Multiple Drive Files - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` - -USE WHEN the user needs to download multiple files from a Drive folder. - -## Steps - -1. List files in the folder: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json` -2. Download each file: `gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext` -3. For Google Docs format, use export: `gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf` - diff --git a/skills/recipe-cancel-and-notify/SKILL.md b/skills/recipe-cancel-and-notify/SKILL.md new file mode 100644 index 00000000..f53cdeb2 --- /dev/null +++ b/skills/recipe-cancel-and-notify/SKILL.md @@ -0,0 +1,28 @@ +--- +name: recipe-cancel-and-notify +version: 1.0.0 +description: "Delete a Google Calendar event and send a cancellation email via Gmail." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-gmail"] +--- + +# Cancel Meeting and Notify Attendees + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail` + +Delete a Google Calendar event and send a cancellation email via Gmail. + +> [!CAUTION] +> Deleting with sendUpdates sends cancellation emails to all attendees. + +## Steps + +1. Find the meeting: `gws calendar +agenda --format json` and locate the event ID +2. Delete the event: `gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}'` +3. Send follow-up: `gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]' --body 'Apologies, this meeting has been cancelled.'` + diff --git a/skills/recipe-cancel-meeting/SKILL.md b/skills/recipe-cancel-meeting/SKILL.md deleted file mode 100644 index d6b2dfc8..00000000 --- a/skills/recipe-cancel-meeting/SKILL.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: recipe-cancel-meeting -version: 1.0.0 -description: "USE WHEN a meeting needs to be cancelled with notifications to all attendees." -metadata: - openclaw: - category: "recipe" - domain: "meetings" - requires: - bins: ["gws"] - skills: ["gws-calendar", "gws-gmail"] ---- - -# Cancel a Meeting and Notify Attendees - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail` - -USE WHEN a meeting needs to be cancelled with notifications to all attendees. - -> [!CAUTION] -> The delete command will immediately cancel the event and notify attendees. - -## Steps - -1. Find the meeting: `gws calendar +agenda --format json` and locate the event ID -2. Delete the event (sends cancellation to attendees): `gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}'` -3. Optionally send a follow-up explanation: `gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]'` - diff --git a/skills/recipe-chat-announcement/SKILL.md b/skills/recipe-chat-announcement/SKILL.md deleted file mode 100644 index e6f54c9e..00000000 --- a/skills/recipe-chat-announcement/SKILL.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: recipe-chat-announcement -version: 1.0.0 -description: "USE WHEN the user needs to post a message in a Google Chat space." -metadata: - openclaw: - category: "recipe" - domain: "communications" - requires: - bins: ["gws"] - skills: ["gws-chat"] ---- - -# Post an Announcement to a Chat Space - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-chat` - -USE WHEN the user needs to post a message in a Google Chat space. - -## Steps - -1. List available spaces: `gws chat spaces list --params '{}'` -2. Send the message: `gws chat spaces messages create --params '{"parent": "spaces/SPACE_ID"}' --json '{"text": "📢 Announcement: ..."}'` - diff --git a/skills/recipe-collect-form-responses/SKILL.md b/skills/recipe-collect-form-responses/SKILL.md new file mode 100644 index 00000000..35aeb6a7 --- /dev/null +++ b/skills/recipe-collect-form-responses/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-collect-form-responses +version: 1.0.0 +description: "Retrieve and review responses from a Google Form." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-forms"] +--- + +# Check Form Responses + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-forms` + +Retrieve and review responses from a Google Form. + +## Steps + +1. List forms: `gws forms forms list` (if you don't have the form ID) +2. Get form details: `gws forms forms get --params '{"formId": "FORM_ID"}'` +3. Get responses: `gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table` + diff --git a/skills/recipe-compare-sheet-tabs/SKILL.md b/skills/recipe-compare-sheet-tabs/SKILL.md new file mode 100644 index 00000000..a16dd75d --- /dev/null +++ b/skills/recipe-compare-sheet-tabs/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-compare-sheet-tabs +version: 1.0.0 +description: "Read data from two tabs in a Google Sheet to compare and identify differences." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-sheets"] +--- + +# Compare Two Google Sheets Tabs + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets` + +Read data from two tabs in a Google Sheet to compare and identify differences. + +## Steps + +1. Read the first tab: `gws sheets +read --spreadsheet-id SHEET_ID --range 'January!A1:D'` +2. Read the second tab: `gws sheets +read --spreadsheet-id SHEET_ID --range 'February!A1:D'` +3. Compare the data and identify changes + diff --git a/skills/recipe-copy-sheet-for-new-month/SKILL.md b/skills/recipe-copy-sheet-for-new-month/SKILL.md new file mode 100644 index 00000000..cb93b68c --- /dev/null +++ b/skills/recipe-copy-sheet-for-new-month/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-copy-sheet-for-new-month +version: 1.0.0 +description: "Duplicate a Google Sheets template tab for a new month of tracking." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-sheets"] +--- + +# Copy a Google Sheet for a New Month + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets` + +Duplicate a Google Sheets template tab for a new month of tracking. + +## Steps + +1. Get spreadsheet details: `gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}'` +2. Copy the template sheet: `gws sheets spreadsheets sheets copyTo --params '{"spreadsheetId": "SHEET_ID", "sheetId": 0}' --json '{"destinationSpreadsheetId": "SHEET_ID"}'` +3. Rename the new tab: `gws sheets spreadsheets batchUpdate --params '{"spreadsheetId": "SHEET_ID"}' --json '{"requests": [{"updateSheetProperties": {"properties": {"sheetId": 123, "title": "February 2025"}, "fields": "title"}}]}'` + diff --git a/skills/recipe-create-chat-space/SKILL.md b/skills/recipe-create-chat-space/SKILL.md deleted file mode 100644 index 0eb8daf1..00000000 --- a/skills/recipe-create-chat-space/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-create-chat-space -version: 1.0.0 -description: "USE WHEN the user needs to create a dedicated Chat space for a team or project." -metadata: - openclaw: - category: "recipe" - domain: "communications" - requires: - bins: ["gws"] - skills: ["gws-chat"] ---- - -# Create a New Chat Space for a Project - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-chat` - -USE WHEN the user needs to create a dedicated Chat space for a team or project. - -## Steps - -1. Create the space: `gws chat spaces create --json '{"displayName": "Project Alpha", "spaceType": "SPACE"}'` -2. Add members: Invite team members to join the space -3. Post welcome message: `gws chat spaces messages create --params '{"parent": "spaces/SPACE_ID"}' --json '{"text": "Welcome to Project Alpha! 👋"}'` - diff --git a/skills/recipe-create-classroom-course/SKILL.md b/skills/recipe-create-classroom-course/SKILL.md new file mode 100644 index 00000000..05b7e7c6 --- /dev/null +++ b/skills/recipe-create-classroom-course/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-create-classroom-course +version: 1.0.0 +description: "Create a Google Classroom course and invite students." +metadata: + openclaw: + category: "recipe" + domain: "education" + requires: + bins: ["gws"] + skills: ["gws-classroom"] +--- + +# Create a Google Classroom Course + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-classroom` + +Create a Google Classroom course and invite students. + +## Steps + +1. Create the course: `gws classroom courses create --json '{"name": "Introduction to CS", "section": "Period 1", "room": "Room 101", "ownerId": "me"}'` +2. Invite a student: `gws classroom invitations create --json '{"courseId": "COURSE_ID", "userId": "student@school.edu", "role": "STUDENT"}'` +3. List enrolled students: `gws classroom courses students list --params '{"courseId": "COURSE_ID"}' --format table` + diff --git a/skills/recipe-create-doc-from-template/SKILL.md b/skills/recipe-create-doc-from-template/SKILL.md new file mode 100644 index 00000000..dd92337f --- /dev/null +++ b/skills/recipe-create-doc-from-template/SKILL.md @@ -0,0 +1,29 @@ +--- +name: recipe-create-doc-from-template +version: 1.0.0 +description: "Copy a Google Docs template, fill in content, and share with collaborators." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive", "gws-docs"] +--- + +# Create a Google Doc from a Template + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-docs` + +Copy a Google Docs template, fill in content, and share with collaborators. + +## Steps + +1. Copy the template: `gws drive files copy --params '{"fileId": "TEMPLATE_DOC_ID"}' --json '{"name": "Project Brief - Q2 Launch"}'` +2. Get the new doc ID from the response +3. Add content: `gws docs +write --document-id NEW_DOC_ID --text '## Project: Q2 Launch + +### Objective +Launch the new feature by end of Q2.'` +4. Share with team: `gws drive permissions create --params '{"fileId": "NEW_DOC_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "team@company.com"}'` + diff --git a/skills/recipe-create-events-from-sheet/SKILL.md b/skills/recipe-create-events-from-sheet/SKILL.md new file mode 100644 index 00000000..589ec8a3 --- /dev/null +++ b/skills/recipe-create-events-from-sheet/SKILL.md @@ -0,0 +1,24 @@ +--- +name: recipe-create-events-from-sheet +version: 1.0.0 +description: "Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-sheets", "gws-calendar"] +--- + +# Create Google Calendar Events from a Sheet + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-calendar` + +Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row. + +## Steps + +1. Read event data: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Events!A2:D'` +2. For each row, create a calendar event: `gws calendar +insert --summary 'Team Standup' --start '2025-01-20T09:00' --duration 30 --attendees alice@company.com,bob@company.com` + diff --git a/skills/recipe-create-expense-tracker/SKILL.md b/skills/recipe-create-expense-tracker/SKILL.md new file mode 100644 index 00000000..c0b7ff85 --- /dev/null +++ b/skills/recipe-create-expense-tracker/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-create-expense-tracker +version: 1.0.0 +description: "Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-sheets", "gws-drive"] +--- + +# Create a Google Sheets Expense Tracker + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-drive` + +Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries. + +## Steps + +1. Create spreadsheet: `gws drive files create --json '{"name": "Expense Tracker 2025", "mimeType": "application/vnd.google-apps.spreadsheet"}'` +2. Add headers: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '["Date", "Category", "Description", "Amount"]'` +3. Add first entry: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '["2025-01-15", "Travel", "Flight to NYC", "450.00"]'` +4. Share with manager: `gws drive permissions create --params '{"fileId": "SHEET_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "manager@company.com"}'` + diff --git a/skills/recipe-create-feedback-form/SKILL.md b/skills/recipe-create-feedback-form/SKILL.md new file mode 100644 index 00000000..27b04d4b --- /dev/null +++ b/skills/recipe-create-feedback-form/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-create-feedback-form +version: 1.0.0 +description: "Create a Google Form for feedback and share it via Gmail." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-forms", "gws-gmail"] +--- + +# Create and Share a Google Form + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-forms`, `gws-gmail` + +Create a Google Form for feedback and share it via Gmail. + +## Steps + +1. Create form: `gws forms forms create --json '{"info": {"title": "Event Feedback", "documentTitle": "Event Feedback Form"}}'` +2. Get the form URL from the response (responderUri field) +3. Email the form: `gws gmail +send --to attendees@company.com --subject 'Please share your feedback' --body 'Fill out the form: FORM_URL'` + diff --git a/skills/recipe-create-gmail-filter/SKILL.md b/skills/recipe-create-gmail-filter/SKILL.md new file mode 100644 index 00000000..cadbe00a --- /dev/null +++ b/skills/recipe-create-gmail-filter/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-create-gmail-filter +version: 1.0.0 +description: "Create a Gmail filter to automatically label, star, or categorize incoming messages." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail"] +--- + +# Create a Gmail Filter + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` + +Create a Gmail filter to automatically label, star, or categorize incoming messages. + +## Steps + +1. List existing labels: `gws gmail users labels list --params '{"userId": "me"}' --format table` +2. Create a new label: `gws gmail users labels create --params '{"userId": "me"}' --json '{"name": "Receipts"}'` +3. Create a filter: `gws gmail users settings filters create --params '{"userId": "me"}' --json '{"criteria": {"from": "receipts@example.com"}, "action": {"addLabelIds": ["LABEL_ID"], "removeLabelIds": ["INBOX"]}}'` +4. Verify filter: `gws gmail users settings filters list --params '{"userId": "me"}' --format table` + diff --git a/skills/recipe-create-meet-space/SKILL.md b/skills/recipe-create-meet-space/SKILL.md new file mode 100644 index 00000000..beb2a909 --- /dev/null +++ b/skills/recipe-create-meet-space/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-create-meet-space +version: 1.0.0 +description: "Create a Google Meet meeting space and share the join link." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-meet", "gws-gmail"] +--- + +# Create a Google Meet Conference + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-meet`, `gws-gmail` + +Create a Google Meet meeting space and share the join link. + +## Steps + +1. Create meeting space: `gws meet spaces create --json '{"config": {"accessType": "OPEN"}}'` +2. Copy the meeting URI from the response +3. Email the link: `gws gmail +send --to team@company.com --subject 'Join the meeting' --body 'Join here: MEETING_URI'` + diff --git a/skills/recipe-create-presentation/SKILL.md b/skills/recipe-create-presentation/SKILL.md new file mode 100644 index 00000000..e0ed1368 --- /dev/null +++ b/skills/recipe-create-presentation/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-create-presentation +version: 1.0.0 +description: "Create a new Google Slides presentation and add initial slides." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-slides"] +--- + +# Create a Google Slides Presentation + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-slides` + +Create a new Google Slides presentation and add initial slides. + +## Steps + +1. Create presentation: `gws slides presentations create --json '{"title": "Quarterly Review Q2"}'` +2. Get the presentation ID from the response +3. Share with team: `gws drive permissions create --params '{"fileId": "PRESENTATION_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "team@company.com"}'` + diff --git a/skills/recipe-create-shared-drive/SKILL.md b/skills/recipe-create-shared-drive/SKILL.md new file mode 100644 index 00000000..1e89c4cc --- /dev/null +++ b/skills/recipe-create-shared-drive/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-create-shared-drive +version: 1.0.0 +description: "Create a Google Shared Drive and add members with appropriate roles." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Create and Configure a Shared Drive + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +Create a Google Shared Drive and add members with appropriate roles. + +## Steps + +1. Create shared drive: `gws drive drives create --params '{"requestId": "unique-id-123"}' --json '{"name": "Project X"}'` +2. Add a member: `gws drive permissions create --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}' --json '{"role": "writer", "type": "user", "emailAddress": "member@company.com"}'` +3. List members: `gws drive permissions list --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}'` + diff --git a/skills/recipe-create-task-from-email/SKILL.md b/skills/recipe-create-task-from-email/SKILL.md deleted file mode 100644 index 41ad5ea3..00000000 --- a/skills/recipe-create-task-from-email/SKILL.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: recipe-create-task-from-email -version: 1.0.0 -description: "USE WHEN the user wants to turn an email into an actionable task." -metadata: - openclaw: - category: "recipe" - domain: "productivity" - requires: - bins: ["gws"] - skills: ["gws-gmail", "gws-workflow"] ---- - -# Convert an Email to a Task - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`, `gws-workflow` - -USE WHEN the user wants to turn an email into an actionable task. - -## Steps - -1. Find the email: `gws gmail +triage --max 5` to see recent messages -2. Get the message ID from the triage output -3. Convert to task: `gws workflow +email-to-task --message-id MSG_ID` -4. Verify the task was created: Check the output for the task ID and title - diff --git a/skills/recipe-create-task-list/SKILL.md b/skills/recipe-create-task-list/SKILL.md new file mode 100644 index 00000000..0bdb560a --- /dev/null +++ b/skills/recipe-create-task-list/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-create-task-list +version: 1.0.0 +description: "Set up a new Google Tasks list with initial tasks." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-tasks"] +--- + +# Create a Task List and Add Tasks + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-tasks` + +Set up a new Google Tasks list with initial tasks. + +## Steps + +1. Create task list: `gws tasks tasklists insert --json '{"title": "Q2 Goals"}'` +2. Add a task: `gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{"title": "Review Q1 metrics", "notes": "Pull data from analytics dashboard", "due": "2024-04-01T00:00:00Z"}'` +3. Add another task: `gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{"title": "Draft Q2 OKRs"}'` +4. List tasks: `gws tasks tasks list --params '{"tasklist": "TASKLIST_ID"}' --format table` + diff --git a/skills/recipe-create-vacation-responder/SKILL.md b/skills/recipe-create-vacation-responder/SKILL.md new file mode 100644 index 00000000..9f279b4a --- /dev/null +++ b/skills/recipe-create-vacation-responder/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-create-vacation-responder +version: 1.0.0 +description: "Enable a Gmail out-of-office auto-reply with a custom message and date range." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail"] +--- + +# Set Up a Gmail Vacation Responder + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` + +Enable a Gmail out-of-office auto-reply with a custom message and date range. + +## Steps + +1. Enable vacation responder: `gws gmail users settings updateVacation --params '{"userId": "me"}' --json '{"enableAutoReply": true, "responseSubject": "Out of Office", "responseBodyPlainText": "I am out of the office until Jan 20. For urgent matters, contact backup@company.com.", "restrictToContacts": false, "restrictToDomain": false}'` +2. Verify settings: `gws gmail users settings getVacation --params '{"userId": "me"}'` +3. Disable when back: `gws gmail users settings updateVacation --params '{"userId": "me"}' --json '{"enableAutoReply": false}'` + diff --git a/skills/recipe-daily-standup/SKILL.md b/skills/recipe-daily-standup/SKILL.md deleted file mode 100644 index 47ba621d..00000000 --- a/skills/recipe-daily-standup/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-daily-standup -version: 1.0.0 -description: "USE WHEN the user wants a quick morning briefing of today's schedule and tasks." -metadata: - openclaw: - category: "recipe" - domain: "productivity" - requires: - bins: ["gws"] - skills: ["gws-workflow"] ---- - -# Run a Daily Standup Report - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-workflow` - -USE WHEN the user wants a quick morning briefing of today's schedule and tasks. - -## Steps - -1. Generate standup report: `gws workflow +standup-report` -2. For table format: `gws workflow +standup-report --format table` -3. Share in team Chat if needed: Copy output and send via `gws chat spaces messages create` - diff --git a/skills/recipe-deploy-apps-script/SKILL.md b/skills/recipe-deploy-apps-script/SKILL.md new file mode 100644 index 00000000..9406e545 --- /dev/null +++ b/skills/recipe-deploy-apps-script/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-deploy-apps-script +version: 1.0.0 +description: "Push local files to a Google Apps Script project." +metadata: + openclaw: + category: "recipe" + domain: "engineering" + requires: + bins: ["gws"] + skills: ["gws-apps-script"] +--- + +# Deploy an Apps Script Project + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-apps-script` + +Push local files to a Google Apps Script project. + +## Steps + +1. List existing projects: `gws apps-script projects list --format table` +2. Get project content: `gws apps-script projects getContent --params '{"scriptId": "SCRIPT_ID"}'` +3. Update content: `gws apps-script projects updateContent --params '{"scriptId": "SCRIPT_ID"}' --json '{"files": [{"name": "Code", "type": "SERVER_JS", "source": "function main() { ... }"}]}'` +4. Create a new version: `gws apps-script projects versions create --params '{"scriptId": "SCRIPT_ID"}' --json '{"description": "v2 release"}'` + diff --git a/skills/recipe-draft-email-from-doc/SKILL.md b/skills/recipe-draft-email-from-doc/SKILL.md new file mode 100644 index 00000000..7b5cad54 --- /dev/null +++ b/skills/recipe-draft-email-from-doc/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-draft-email-from-doc +version: 1.0.0 +description: "Read content from a Google Doc and use it as the body of a Gmail message." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-docs", "gws-gmail"] +--- + +# Draft a Gmail Message from a Google Doc + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-docs`, `gws-gmail` + +Read content from a Google Doc and use it as the body of a Gmail message. + +## Steps + +1. Get the document content: `gws docs documents get --params '{"documentId": "DOC_ID"}'` +2. Copy the text from the body content +3. Send the email: `gws gmail +send --to recipient@example.com --subject 'Newsletter Update' --body 'CONTENT_FROM_DOC'` + diff --git a/skills/recipe-email-announcement/SKILL.md b/skills/recipe-email-announcement/SKILL.md deleted file mode 100644 index 0cbeb7f9..00000000 --- a/skills/recipe-email-announcement/SKILL.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: recipe-email-announcement -version: 1.0.0 -description: "USE WHEN the user needs to send an announcement email to a distribution list." -metadata: - openclaw: - category: "recipe" - domain: "communications" - requires: - bins: ["gws"] - skills: ["gws-gmail"] ---- - -# Send a Company-Wide Announcement - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` - -USE WHEN the user needs to send an announcement email to a distribution list. - -> [!CAUTION] -> Company-wide emails reach everyone. Double-check recipients and content before sending. - -## Steps - -1. Draft the announcement: `gws gmail +send --to all-company@company.com --subject 'Important Update: [Topic]' --body '...'` - diff --git a/skills/recipe-email-drive-link/SKILL.md b/skills/recipe-email-drive-link/SKILL.md new file mode 100644 index 00000000..d672a440 --- /dev/null +++ b/skills/recipe-email-drive-link/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-email-drive-link +version: 1.0.0 +description: "Share a Google Drive file and email the link with a message to recipients." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive", "gws-gmail"] +--- + +# Email a Google Drive File Link + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-gmail` + +Share a Google Drive file and email the link with a message to recipients. + +## Steps + +1. Find the file: `gws drive files list --params '{"q": "name = '\''Quarterly Report'\''"}'` +2. Share the file: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "client@example.com"}'` +3. Email the link: `gws gmail +send --to client@example.com --subject 'Quarterly Report' --body 'Hi, please find the report here: https://docs.google.com/document/d/FILE_ID'` + diff --git a/skills/recipe-find-free-time/SKILL.md b/skills/recipe-find-free-time/SKILL.md new file mode 100644 index 00000000..d1231b8b --- /dev/null +++ b/skills/recipe-find-free-time/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-find-free-time +version: 1.0.0 +description: "Query Google Calendar free/busy status for multiple users to find a meeting slot." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-calendar"] +--- + +# Find Free Time Across Calendars + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` + +Query Google Calendar free/busy status for multiple users to find a meeting slot. + +## Steps + +1. Query free/busy: `gws calendar freebusy query --json '{"timeMin": "2024-03-18T08:00:00Z", "timeMax": "2024-03-18T18:00:00Z", "items": [{"id": "user1@company.com"}, {"id": "user2@company.com"}]}'` +2. Review the output to find overlapping free slots +3. Create event in the free slot: `gws calendar +insert --summary 'Meeting' --attendees user1@company.com,user2@company.com --start '2024-03-18T14:00:00' --duration 30` + diff --git a/skills/recipe-find-large-files/SKILL.md b/skills/recipe-find-large-files/SKILL.md new file mode 100644 index 00000000..a4cee757 --- /dev/null +++ b/skills/recipe-find-large-files/SKILL.md @@ -0,0 +1,28 @@ +--- +name: recipe-find-large-files +version: 1.0.0 +description: "Identify large Google Drive files consuming storage quota." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Find Largest Files in Drive + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +Identify large Google Drive files consuming storage quota. + +> [!CAUTION] +> Deleting files is permanent if the trash is emptied. Confirm before deleting. + +## Steps + +1. List files sorted by size: `gws drive files list --params '{"orderBy": "quotaBytesUsed desc", "pageSize": 20, "fields": "files(id,name,size,mimeType,owners)"}' --format table` +2. Review the output and identify files to delete or move +3. Delete if needed: `gws drive files delete --params '{"fileId": "FILE_ID"}'` + diff --git a/skills/recipe-follow-up-email/SKILL.md b/skills/recipe-follow-up-email/SKILL.md deleted file mode 100644 index 418bd04a..00000000 --- a/skills/recipe-follow-up-email/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-follow-up-email -version: 1.0.0 -description: "USE WHEN the user needs to send follow-up notes and action items after a meeting." -metadata: - openclaw: - category: "recipe" - domain: "communications" - requires: - bins: ["gws"] - skills: ["gws-gmail", "gws-calendar"] ---- - -# Send Follow-Up Emails After a Meeting - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`, `gws-calendar` - -USE WHEN the user needs to send follow-up notes and action items after a meeting. - -## Steps - -1. Get meeting details: `gws workflow +meeting-prep` or `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` -2. Send follow-up to attendees: `gws gmail +send --to attendees@company.com --subject 'Follow-up: [Meeting Title]' --body 'Action items: ...'` -3. Create tasks from action items: `gws workflow +email-to-task --message-id MSG_ID` - diff --git a/skills/recipe-forward-labeled-emails/SKILL.md b/skills/recipe-forward-labeled-emails/SKILL.md new file mode 100644 index 00000000..5f0cb984 --- /dev/null +++ b/skills/recipe-forward-labeled-emails/SKILL.md @@ -0,0 +1,27 @@ +--- +name: recipe-forward-labeled-emails +version: 1.0.0 +description: "Find Gmail messages with a specific label and forward them to another address." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail"] +--- + +# Forward Labeled Gmail Messages + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` + +Find Gmail messages with a specific label and forward them to another address. + +## Steps + +1. Find labeled messages: `gws gmail users messages list --params '{"userId": "me", "q": "label:needs-review"}' --format table` +2. Get message content: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'` +3. Forward via new email: `gws gmail +send --to manager@company.com --subject 'FW: [Original Subject]' --body 'Forwarding for your review: + +[Original Message Body]'` + diff --git a/skills/recipe-generate-report-from-sheet/SKILL.md b/skills/recipe-generate-report-from-sheet/SKILL.md new file mode 100644 index 00000000..7da37ea9 --- /dev/null +++ b/skills/recipe-generate-report-from-sheet/SKILL.md @@ -0,0 +1,34 @@ +--- +name: recipe-generate-report-from-sheet +version: 1.0.0 +description: "Read data from a Google Sheet and create a formatted Google Docs report." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-sheets", "gws-docs", "gws-drive"] +--- + +# Generate a Google Docs Report from Sheet Data + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-docs`, `gws-drive` + +Read data from a Google Sheet and create a formatted Google Docs report. + +## Steps + +1. Read the data: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Sales!A1:D'` +2. Create the report doc: `gws docs documents create --json '{"title": "Sales Report - January 2025"}'` +3. Write the report: `gws docs +write --document-id DOC_ID --text '## Sales Report - January 2025 + +### Summary +Total deals: 45 +Revenue: $125,000 + +### Top Deals +1. Acme Corp - $25,000 +2. Widget Inc - $18,000'` +4. Share with stakeholders: `gws drive permissions create --params '{"fileId": "DOC_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "cfo@company.com"}'` + diff --git a/skills/recipe-label-and-archive-emails/SKILL.md b/skills/recipe-label-and-archive-emails/SKILL.md new file mode 100644 index 00000000..e2071ac5 --- /dev/null +++ b/skills/recipe-label-and-archive-emails/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-label-and-archive-emails +version: 1.0.0 +description: "Apply Gmail labels to matching messages and archive them to keep your inbox clean." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail"] +--- + +# Label and Archive Gmail Threads + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` + +Apply Gmail labels to matching messages and archive them to keep your inbox clean. + +## Steps + +1. Search for matching emails: `gws gmail users messages list --params '{"userId": "me", "q": "from:notifications@service.com"}' --format table` +2. Apply a label: `gws gmail users messages modify --params '{"userId": "me", "id": "MESSAGE_ID"}' --json '{"addLabelIds": ["LABEL_ID"]}'` +3. Archive (remove from inbox): `gws gmail users messages modify --params '{"userId": "me", "id": "MESSAGE_ID"}' --json '{"removeLabelIds": ["INBOX"]}'` + diff --git a/skills/recipe-log-data-to-sheet/SKILL.md b/skills/recipe-log-data-to-sheet/SKILL.md deleted file mode 100644 index 94cf506f..00000000 --- a/skills/recipe-log-data-to-sheet/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-log-data-to-sheet -version: 1.0.0 -description: "USE WHEN the user needs to append structured data to a spreadsheet." -metadata: - openclaw: - category: "recipe" - domain: "reporting" - requires: - bins: ["gws"] - skills: ["gws-sheets"] ---- - -# Log Data to a Google Sheet - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets` - -USE WHEN the user needs to append structured data to a spreadsheet. - -## Steps - -1. Find the spreadsheet: `gws drive files list --params '{"q": "name = '\''My Tracker'\'' and mimeType = '\''application/vnd.google-apps.spreadsheet'\''"}'` -2. Read existing data: `gws sheets values get --params '{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}'` -3. Append new rows: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '["timestamp", "value1", "value2"]'` - diff --git a/skills/recipe-log-deal-update/SKILL.md b/skills/recipe-log-deal-update/SKILL.md new file mode 100644 index 00000000..24ca63d5 --- /dev/null +++ b/skills/recipe-log-deal-update/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-log-deal-update +version: 1.0.0 +description: "Append a deal status update to a Google Sheets sales tracking spreadsheet." +metadata: + openclaw: + category: "recipe" + domain: "sales" + requires: + bins: ["gws"] + skills: ["gws-sheets", "gws-drive"] +--- + +# Log Deal Update to Sheet + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-drive` + +Append a deal status update to a Google Sheets sales tracking spreadsheet. + +## Steps + +1. Find the tracking sheet: `gws drive files list --params '{"q": "name = '\''Sales Pipeline'\'' and mimeType = '\''application/vnd.google-apps.spreadsheet'\''"}'` +2. Read current data: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Pipeline!A1:F'` +3. Append new row: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Pipeline' --values '["2024-03-15", "Acme Corp", "Proposal Sent", "$50,000", "Q2", "jdoe"]'` + diff --git a/skills/recipe-new-hire-onboarding/SKILL.md b/skills/recipe-new-hire-onboarding/SKILL.md deleted file mode 100644 index e2747d8b..00000000 --- a/skills/recipe-new-hire-onboarding/SKILL.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: recipe-new-hire-onboarding -version: 1.0.0 -description: "USE WHEN a new employee is joining and needs onboarding materials and calendar events." -metadata: - openclaw: - category: "recipe" - domain: "onboarding" - requires: - bins: ["gws"] - skills: ["gws-calendar", "gws-drive", "gws-gmail", "gws-admin"] ---- - -# Set Up New Hire Onboarding - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-drive`, `gws-gmail`, `gws-admin` - -USE WHEN a new employee is joining and needs onboarding materials and calendar events. - -> [!CAUTION] -> Verify the new hire's email address before creating the account. - -## Steps - -1. Create the user account: `gws admin users insert --json '{"primaryEmail": "newhire@company.com", "name": {"givenName": "First", "familyName": "Last"}, "password": "..."}' --params '{}'` -2. Schedule orientation sessions: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Orientation: [New Hire]", ...}'` -3. Share onboarding docs folder: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "newhire@company.com"}'` -4. Send welcome email: `gws gmail +send --to newhire@company.com --subject 'Welcome aboard!'` - diff --git a/skills/recipe-onboarding-checklist/SKILL.md b/skills/recipe-onboarding-checklist/SKILL.md deleted file mode 100644 index 3fba3245..00000000 --- a/skills/recipe-onboarding-checklist/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-onboarding-checklist -version: 1.0.0 -description: "USE WHEN you need to track onboarding task completion in a spreadsheet." -metadata: - openclaw: - category: "recipe" - domain: "onboarding" - requires: - bins: ["gws"] - skills: ["gws-sheets"] ---- - -# Track Onboarding Progress - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets` - -USE WHEN you need to track onboarding task completion in a spreadsheet. - -## Steps - -1. Find the onboarding tracker: `gws drive files list --params '{"q": "name contains '\''Onboarding Tracker'\''"}'` -2. Append a new row for the hire: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Sheet1' --values '["New Hire Name", "Start Date", "Pending", "Pending", "Pending"]'` -3. Check current status: `gws sheets values get --params '{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}'` - diff --git a/skills/recipe-organize-drive-folder/SKILL.md b/skills/recipe-organize-drive-folder/SKILL.md index d79748ce..33195f60 100644 --- a/skills/recipe-organize-drive-folder/SKILL.md +++ b/skills/recipe-organize-drive-folder/SKILL.md @@ -1,26 +1,26 @@ --- name: recipe-organize-drive-folder version: 1.0.0 -description: "USE WHEN the user needs to create a folder structure in Drive." +description: "Create a Google Drive folder structure and move files into the right locations." metadata: openclaw: category: "recipe" - domain: "documents" + domain: "productivity" requires: bins: ["gws"] skills: ["gws-drive"] --- -# Create and Organize a Drive Folder +# Organize Files into Google Drive Folders > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` -USE WHEN the user needs to create a folder structure in Drive. +Create a Google Drive folder structure and move files into the right locations. ## Steps -1. Create the parent folder: `gws drive files create --json '{"name": "Project Folder", "mimeType": "application/vnd.google-apps.folder"}'` -2. Create a subfolder: `gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'` -3. Upload files to the folder: `gws drive +upload myfile.pdf --parent FOLDER_ID` -4. List contents: `gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}'` +1. Create a project folder: `gws drive files create --json '{"name": "Q2 Project", "mimeType": "application/vnd.google-apps.folder"}'` +2. Create sub-folders: `gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'` +3. Move existing files into folder: `gws drive files update --params '{"fileId": "FILE_ID", "addParents": "FOLDER_ID", "removeParents": "OLD_PARENT_ID"}'` +4. Verify structure: `gws drive files list --params '{"q": "FOLDER_ID in parents"}' --format table` diff --git a/skills/recipe-plan-weekly-schedule/SKILL.md b/skills/recipe-plan-weekly-schedule/SKILL.md new file mode 100644 index 00000000..e9ba3160 --- /dev/null +++ b/skills/recipe-plan-weekly-schedule/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-plan-weekly-schedule +version: 1.0.0 +description: "Review your Google Calendar week, identify gaps, and add events to fill them." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-calendar"] +--- + +# Plan Your Weekly Google Calendar Schedule + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` + +Review your Google Calendar week, identify gaps, and add events to fill them. + +## Steps + +1. Check this week's agenda: `gws calendar +agenda` +2. Check free/busy for the week: `gws calendar freebusy query --json '{"timeMin": "2025-01-20T00:00:00Z", "timeMax": "2025-01-25T00:00:00Z", "items": [{"id": "primary"}]}'` +3. Add a new event: `gws calendar +insert --summary 'Deep Work Block' --start '2025-01-21T14:00' --duration 120` +4. Review updated schedule: `gws calendar +agenda` + diff --git a/skills/recipe-post-mortem-setup/SKILL.md b/skills/recipe-post-mortem-setup/SKILL.md new file mode 100644 index 00000000..56c934a2 --- /dev/null +++ b/skills/recipe-post-mortem-setup/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-post-mortem-setup +version: 1.0.0 +description: "Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat." +metadata: + openclaw: + category: "recipe" + domain: "engineering" + requires: + bins: ["gws"] + skills: ["gws-docs", "gws-calendar", "gws-chat"] +--- + +# Set Up Post-Mortem + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-docs`, `gws-calendar`, `gws-chat` + +Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat. + +## Steps + +1. Create post-mortem doc: `gws docs +write --title 'Post-Mortem: [Incident]' --body '## Summary\n\n## Timeline\n\n## Root Cause\n\n## Action Items'` +2. Schedule review meeting: `gws calendar +insert --summary 'Post-Mortem Review: [Incident]' --attendees team@company.com --start 'next monday 14:00' --duration 60` +3. Notify in Chat: `gws chat +send --space spaces/ENG_SPACE --text '🔍 Post-mortem scheduled for [Incident].'` + diff --git a/skills/recipe-recurring-meeting/SKILL.md b/skills/recipe-recurring-meeting/SKILL.md deleted file mode 100644 index b5146099..00000000 --- a/skills/recipe-recurring-meeting/SKILL.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: recipe-recurring-meeting -version: 1.0.0 -description: "USE WHEN the user needs to set up a recurring meeting (standup, weekly sync, etc.)." -metadata: - openclaw: - category: "recipe" - domain: "meetings" - requires: - bins: ["gws"] - skills: ["gws-calendar"] ---- - -# Create a Recurring Team Meeting - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` - -USE WHEN the user needs to set up a recurring meeting (standup, weekly sync, etc.). - -> [!CAUTION] -> Confirm time zone and recurrence rule with the team before creating. - -## Steps - -1. Check existing schedule: `gws calendar +agenda --week --format table` -2. Create recurring event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Team Standup", "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"], "start": {"dateTime": "...", "timeZone": "..."}, "end": {"dateTime": "...", "timeZone": "..."}}'` - diff --git a/skills/recipe-reschedule-meeting/SKILL.md b/skills/recipe-reschedule-meeting/SKILL.md new file mode 100644 index 00000000..2b6f7751 --- /dev/null +++ b/skills/recipe-reschedule-meeting/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-reschedule-meeting +version: 1.0.0 +description: "Move a Google Calendar event to a new time and automatically notify all attendees." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-calendar"] +--- + +# Reschedule a Google Calendar Meeting + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` + +Move a Google Calendar event to a new time and automatically notify all attendees. + +## Steps + +1. Find the event: `gws calendar +agenda` +2. Get event details: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` +3. Update the time: `gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"start": {"dateTime": "2025-01-22T14:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2025-01-22T15:00:00", "timeZone": "America/New_York"}}'` + diff --git a/skills/recipe-review-meet-participants/SKILL.md b/skills/recipe-review-meet-participants/SKILL.md new file mode 100644 index 00000000..3d84ce3e --- /dev/null +++ b/skills/recipe-review-meet-participants/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-review-meet-participants +version: 1.0.0 +description: "Review who attended a Google Meet conference and for how long." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-meet"] +--- + +# Review Google Meet Attendance + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-meet` + +Review who attended a Google Meet conference and for how long. + +## Steps + +1. List recent conferences: `gws meet conferenceRecords list --format table` +2. List participants: `gws meet conferenceRecords participants list --params '{"parent": "conferenceRecords/CONFERENCE_ID"}' --format table` +3. Get session details: `gws meet conferenceRecords participants participantSessions list --params '{"parent": "conferenceRecords/CONFERENCE_ID/participants/PARTICIPANT_ID"}' --format table` + diff --git a/skills/recipe-review-overdue-tasks/SKILL.md b/skills/recipe-review-overdue-tasks/SKILL.md new file mode 100644 index 00000000..e337e73a --- /dev/null +++ b/skills/recipe-review-overdue-tasks/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-review-overdue-tasks +version: 1.0.0 +description: "Find Google Tasks that are past due and need attention." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-tasks"] +--- + +# Review Overdue Tasks + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-tasks` + +Find Google Tasks that are past due and need attention. + +## Steps + +1. List task lists: `gws tasks tasklists list --format table` +2. List tasks with status: `gws tasks tasks list --params '{"tasklist": "TASKLIST_ID", "showCompleted": false}' --format table` +3. Review due dates and prioritize overdue items + diff --git a/skills/recipe-sanitize-response/SKILL.md b/skills/recipe-sanitize-response/SKILL.md deleted file mode 100644 index 2c4b671a..00000000 --- a/skills/recipe-sanitize-response/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-sanitize-response -version: 1.0.0 -description: "USE WHEN the user needs to sanitize content for PII or safety before processing." -metadata: - openclaw: - category: "recipe" - domain: "security" - requires: - bins: ["gws"] - skills: ["gws-modelarmor", "gws-gmail", "gws-drive"] ---- - -# Screen API Responses Through Model Armor - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-modelarmor`, `gws-gmail`, `gws-drive` - -USE WHEN the user needs to sanitize content for PII or safety before processing. - -## Steps - -1. Create a sanitize template: See `gws modelarmor +create-template --help` -2. Use the template on API calls: Add `--sanitize TEMPLATE_NAME` to any gws command -3. Example: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}' --sanitize my-template` - diff --git a/skills/recipe-save-email-attachments/SKILL.md b/skills/recipe-save-email-attachments/SKILL.md new file mode 100644 index 00000000..5bd56f25 --- /dev/null +++ b/skills/recipe-save-email-attachments/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-save-email-attachments +version: 1.0.0 +description: "Find Gmail messages with attachments and save them to a Google Drive folder." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-drive"] +--- + +# Save Gmail Attachments to Google Drive + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`, `gws-drive` + +Find Gmail messages with attachments and save them to a Google Drive folder. + +## Steps + +1. Search for emails with attachments: `gws gmail users messages list --params '{"userId": "me", "q": "has:attachment from:client@example.com"}' --format table` +2. Get message details: `gws gmail users messages get --params '{"userId": "me", "id": "MESSAGE_ID"}'` +3. Download attachment: `gws gmail users messages attachments get --params '{"userId": "me", "messageId": "MESSAGE_ID", "id": "ATTACHMENT_ID"}'` +4. Upload to Drive folder: `gws drive +upload --file ./attachment.pdf --parent FOLDER_ID` + diff --git a/skills/recipe-save-email-to-doc/SKILL.md b/skills/recipe-save-email-to-doc/SKILL.md new file mode 100644 index 00000000..2ffa866f --- /dev/null +++ b/skills/recipe-save-email-to-doc/SKILL.md @@ -0,0 +1,29 @@ +--- +name: recipe-save-email-to-doc +version: 1.0.0 +description: "Save a Gmail message body into a Google Doc for archival or reference." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-docs"] +--- + +# Save a Gmail Message to Google Docs + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`, `gws-docs` + +Save a Gmail message body into a Google Doc for archival or reference. + +## Steps + +1. Find the message: `gws gmail users messages list --params '{"userId": "me", "q": "subject:important from:boss@company.com"}' --format table` +2. Get message content: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'` +3. Create a doc with the content: `gws docs documents create --json '{"title": "Saved Email - Important Update"}'` +4. Write the email body: `gws docs +write --document-id DOC_ID --text 'From: boss@company.com +Subject: Important Update + +[EMAIL BODY]'` + diff --git a/skills/recipe-schedule-interview/SKILL.md b/skills/recipe-schedule-interview/SKILL.md deleted file mode 100644 index 4bfe9c1f..00000000 --- a/skills/recipe-schedule-interview/SKILL.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: recipe-schedule-interview -version: 1.0.0 -description: "USE WHEN the user needs to schedule an interview with a candidate." -metadata: - openclaw: - category: "recipe" - domain: "hiring" - requires: - bins: ["gws"] - skills: ["gws-calendar", "gws-gmail"] ---- - -# Schedule a Job Interview - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail` - -USE WHEN the user needs to schedule an interview with a candidate. - -> [!CAUTION] -> Confirm the interview time with the interviewer before sending the invitation. - -## Steps - -1. Check interviewer availability: `gws calendar +agenda --days 5 --format table` -2. Create the interview event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Interview: [Candidate]", "start": {"dateTime": "..."}, "end": {"dateTime": "..."}, "attendees": [{"email": "interviewer@company.com"}, {"email": "candidate@email.com"}]}'` -3. Send confirmation email: `gws gmail +send --to candidate@email.com --subject 'Interview Confirmation' --body 'Your interview has been scheduled...'` - diff --git a/skills/recipe-schedule-recurring-event/SKILL.md b/skills/recipe-schedule-recurring-event/SKILL.md new file mode 100644 index 00000000..3a9d02bb --- /dev/null +++ b/skills/recipe-schedule-recurring-event/SKILL.md @@ -0,0 +1,24 @@ +--- +name: recipe-schedule-recurring-event +version: 1.0.0 +description: "Create a recurring Google Calendar event with attendees." +metadata: + openclaw: + category: "recipe" + domain: "scheduling" + requires: + bins: ["gws"] + skills: ["gws-calendar"] +--- + +# Schedule a Recurring Meeting + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` + +Create a recurring Google Calendar event with attendees. + +## Steps + +1. Create recurring event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Weekly Standup", "start": {"dateTime": "2024-03-18T09:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2024-03-18T09:30:00", "timeZone": "America/New_York"}, "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO"], "attendees": [{"email": "team@company.com"}]}'` +2. Verify it was created: `gws calendar +agenda --days 14 --format table` + diff --git a/skills/recipe-search-and-export-emails/SKILL.md b/skills/recipe-search-and-export-emails/SKILL.md new file mode 100644 index 00000000..236b3f42 --- /dev/null +++ b/skills/recipe-search-and-export-emails/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-search-and-export-emails +version: 1.0.0 +description: "Find Gmail messages matching a query and export them for review." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-gmail"] +--- + +# Search and Export Emails + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` + +Find Gmail messages matching a query and export them for review. + +## Steps + +1. Search for emails: `gws gmail users messages list --params '{"userId": "me", "q": "from:client@example.com after:2024/01/01"}'` +2. Get full message: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'` +3. Export results: `gws gmail users messages list --params '{"userId": "me", "q": "label:project-x"}' --format json > project-emails.json` + diff --git a/skills/recipe-send-personalized-emails/SKILL.md b/skills/recipe-send-personalized-emails/SKILL.md new file mode 100644 index 00000000..a4b398c9 --- /dev/null +++ b/skills/recipe-send-personalized-emails/SKILL.md @@ -0,0 +1,24 @@ +--- +name: recipe-send-personalized-emails +version: 1.0.0 +description: "Read recipient data from Google Sheets and send personalized Gmail messages to each row." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-sheets", "gws-gmail"] +--- + +# Send Personalized Emails from a Sheet + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-gmail` + +Read recipient data from Google Sheets and send personalized Gmail messages to each row. + +## Steps + +1. Read recipient list: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Contacts!A2:C'` +2. For each row, send a personalized email: `gws gmail +send --to recipient@example.com --subject 'Hello, Name' --body 'Hi Name, your report is ready.'` + diff --git a/skills/recipe-send-team-announcement/SKILL.md b/skills/recipe-send-team-announcement/SKILL.md new file mode 100644 index 00000000..d93b8421 --- /dev/null +++ b/skills/recipe-send-team-announcement/SKILL.md @@ -0,0 +1,24 @@ +--- +name: recipe-send-team-announcement +version: 1.0.0 +description: "Send a team announcement via both Gmail and a Google Chat space." +metadata: + openclaw: + category: "recipe" + domain: "communication" + requires: + bins: ["gws"] + skills: ["gws-gmail", "gws-chat"] +--- + +# Announce via Gmail and Google Chat + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`, `gws-chat` + +Send a team announcement via both Gmail and a Google Chat space. + +## Steps + +1. Send email: `gws gmail +send --to team@company.com --subject 'Important Update' --body 'Please review the attached policy changes.'` +2. Post in Chat: `gws chat +send --space spaces/TEAM_SPACE --text '📢 Important Update: Please check your email for policy changes.'` + diff --git a/skills/recipe-share-doc-and-notify/SKILL.md b/skills/recipe-share-doc-and-notify/SKILL.md new file mode 100644 index 00000000..cfe9c946 --- /dev/null +++ b/skills/recipe-share-doc-and-notify/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-share-doc-and-notify +version: 1.0.0 +description: "Share a Google Docs document with edit access and email collaborators the link." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive", "gws-docs", "gws-gmail"] +--- + +# Share a Google Doc and Notify Collaborators + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-docs`, `gws-gmail` + +Share a Google Docs document with edit access and email collaborators the link. + +## Steps + +1. Find the doc: `gws drive files list --params '{"q": "name contains '\''Project Brief'\'' and mimeType = '\''application/vnd.google-apps.document'\''"}'` +2. Share with editor access: `gws drive permissions create --params '{"fileId": "DOC_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "reviewer@company.com"}'` +3. Email the link: `gws gmail +send --to reviewer@company.com --subject 'Please review: Project Brief' --body 'I have shared the project brief with you: https://docs.google.com/document/d/DOC_ID'` + diff --git a/skills/recipe-share-document/SKILL.md b/skills/recipe-share-document/SKILL.md deleted file mode 100644 index ec17aced..00000000 --- a/skills/recipe-share-document/SKILL.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: recipe-share-document -version: 1.0.0 -description: "USE WHEN the user needs to share a Drive document with one or more people." -metadata: - openclaw: - category: "recipe" - domain: "documents" - requires: - bins: ["gws"] - skills: ["gws-drive"] ---- - -# Share a Document with Specific People - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` - -USE WHEN the user needs to share a Drive document with one or more people. - -> [!CAUTION] -> Choose the correct role (reader, writer, commenter) for the intended access level. - -## Steps - -1. Find the document: `gws drive files list --params '{"q": "name = '\''Document Name'\''"}'` -2. Share with a user: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "user@company.com"}'` -3. Verify permissions: `gws drive permissions list --params '{"fileId": "FILE_ID"}'` - diff --git a/skills/recipe-share-event-materials/SKILL.md b/skills/recipe-share-event-materials/SKILL.md new file mode 100644 index 00000000..88aec827 --- /dev/null +++ b/skills/recipe-share-event-materials/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-share-event-materials +version: 1.0.0 +description: "Share Google Drive files with all attendees of a Google Calendar event." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-calendar", "gws-drive"] +--- + +# Share Files with Meeting Attendees + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-drive` + +Share Google Drive files with all attendees of a Google Calendar event. + +## Steps + +1. Get event attendees: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` +2. Share file with each attendee: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "attendee@company.com"}'` +3. Verify sharing: `gws drive permissions list --params '{"fileId": "FILE_ID"}' --format table` + diff --git a/skills/recipe-share-folder-with-team/SKILL.md b/skills/recipe-share-folder-with-team/SKILL.md new file mode 100644 index 00000000..da979a27 --- /dev/null +++ b/skills/recipe-share-folder-with-team/SKILL.md @@ -0,0 +1,26 @@ +--- +name: recipe-share-folder-with-team +version: 1.0.0 +description: "Share a Google Drive folder and all its contents with a list of collaborators." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Share a Google Drive Folder with a Team + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +Share a Google Drive folder and all its contents with a list of collaborators. + +## Steps + +1. Find the folder: `gws drive files list --params '{"q": "name = '\''Project X'\'' and mimeType = '\''application/vnd.google-apps.folder'\''"}'` +2. Share as editor: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "colleague@company.com"}'` +3. Share as viewer: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "stakeholder@company.com"}'` +4. Verify permissions: `gws drive permissions list --params '{"fileId": "FOLDER_ID"}' --format table` + diff --git a/skills/recipe-share-job-posting/SKILL.md b/skills/recipe-share-job-posting/SKILL.md deleted file mode 100644 index cca5e71c..00000000 --- a/skills/recipe-share-job-posting/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-share-job-posting -version: 1.0.0 -description: "USE WHEN the user needs to distribute a job posting internally." -metadata: - openclaw: - category: "recipe" - domain: "hiring" - requires: - bins: ["gws"] - skills: ["gws-drive", "gws-chat", "gws-gmail"] ---- - -# Share a Job Posting with Team - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-chat`, `gws-gmail` - -USE WHEN the user needs to distribute a job posting internally. - -## Steps - -1. Upload the job description to Drive: `gws drive +upload job-description.pdf` -2. Announce in the team Chat space: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID --message 'New opening: [Position]'` -3. Email to hiring managers: `gws gmail +send --to hiring-team@company.com --subject 'New Job Posting: [Position]'` - diff --git a/skills/recipe-sync-contacts-to-sheet/SKILL.md b/skills/recipe-sync-contacts-to-sheet/SKILL.md new file mode 100644 index 00000000..794a4f05 --- /dev/null +++ b/skills/recipe-sync-contacts-to-sheet/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-sync-contacts-to-sheet +version: 1.0.0 +description: "Export Google Contacts directory to a Google Sheets spreadsheet." +metadata: + openclaw: + category: "recipe" + domain: "productivity" + requires: + bins: ["gws"] + skills: ["gws-people", "gws-sheets"] +--- + +# Export Google Contacts to Sheets + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-people`, `gws-sheets` + +Export Google Contacts directory to a Google Sheets spreadsheet. + +## Steps + +1. List contacts: `gws people people listDirectoryPeople --params '{"readMask": "names,emailAddresses,phoneNumbers", "sources": ["DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE"], "pageSize": 100}' --format json` +2. Create a sheet: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Contacts' --values '["Name", "Email", "Phone"]'` +3. Append each contact row: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Contacts' --values '["Jane Doe", "jane@company.com", "+1-555-0100"]'` + diff --git a/skills/recipe-transfer-file-ownership/SKILL.md b/skills/recipe-transfer-file-ownership/SKILL.md new file mode 100644 index 00000000..03d34dca --- /dev/null +++ b/skills/recipe-transfer-file-ownership/SKILL.md @@ -0,0 +1,27 @@ +--- +name: recipe-transfer-file-ownership +version: 1.0.0 +description: "Transfer ownership of Google Drive files from one user to another." +metadata: + openclaw: + category: "recipe" + domain: "it" + requires: + bins: ["gws"] + skills: ["gws-drive"] +--- + +# Transfer File Ownership + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` + +Transfer ownership of Google Drive files from one user to another. + +> [!CAUTION] +> Transferring ownership is irreversible without the new owner's cooperation. + +## Steps + +1. List files owned by the user: `gws drive files list --params '{"q": "'\''user@company.com'\'' in owners"}'` +2. Transfer ownership: `gws drive permissions create --params '{"fileId": "FILE_ID", "transferOwnership": true}' --json '{"role": "owner", "type": "user", "emailAddress": "newowner@company.com"}'` + diff --git a/skills/recipe-triage-security-alerts/SKILL.md b/skills/recipe-triage-security-alerts/SKILL.md new file mode 100644 index 00000000..f5d9a2bf --- /dev/null +++ b/skills/recipe-triage-security-alerts/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-triage-security-alerts +version: 1.0.0 +description: "List and review Google Workspace security alerts from Alert Center." +metadata: + openclaw: + category: "recipe" + domain: "security" + requires: + bins: ["gws"] + skills: ["gws-alertcenter"] +--- + +# Triage Google Workspace Security Alerts + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-alertcenter` + +List and review Google Workspace security alerts from Alert Center. + +## Steps + +1. List active alerts: `gws alertcenter alerts list --format table` +2. Get alert details: `gws alertcenter alerts get --params '{"alertId": "ALERT_ID"}'` +3. Acknowledge an alert: `gws alertcenter alerts undelete --params '{"alertId": "ALERT_ID"}'` + diff --git a/skills/recipe-upload-and-share/SKILL.md b/skills/recipe-upload-and-share/SKILL.md deleted file mode 100644 index 14d17483..00000000 --- a/skills/recipe-upload-and-share/SKILL.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: recipe-upload-and-share -version: 1.0.0 -description: "USE WHEN the user needs to upload a file to Drive and share it with someone." -metadata: - openclaw: - category: "recipe" - domain: "documents" - requires: - bins: ["gws"] - skills: ["gws-drive"] ---- - -# Upload a File and Share It - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` - -USE WHEN the user needs to upload a file to Drive and share it with someone. - -## Steps - -1. Upload the file: `gws drive +upload report.pdf` -2. Note the file ID from the upload output -3. Share with a user: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "user@company.com"}'` -4. Optionally announce in Chat: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID` - diff --git a/skills/recipe-watch-drive-changes/SKILL.md b/skills/recipe-watch-drive-changes/SKILL.md new file mode 100644 index 00000000..dd77c457 --- /dev/null +++ b/skills/recipe-watch-drive-changes/SKILL.md @@ -0,0 +1,25 @@ +--- +name: recipe-watch-drive-changes +version: 1.0.0 +description: "Subscribe to change notifications on a Google Drive file or folder." +metadata: + openclaw: + category: "recipe" + domain: "engineering" + requires: + bins: ["gws"] + skills: ["gws-events"] +--- + +# Watch for Drive Changes + +> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-events` + +Subscribe to change notifications on a Google Drive file or folder. + +## Steps + +1. Create subscription: `gws events subscriptions create --json '{"targetResource": "//drive.googleapis.com/drives/DRIVE_ID", "eventTypes": ["google.workspace.drive.file.v1.updated"], "notificationEndpoint": {"pubsubTopic": "projects/PROJECT/topics/TOPIC"}, "payloadOptions": {"includeResource": true}}'` +2. List active subscriptions: `gws events subscriptions list` +3. Renew before expiry: `gws events +renew --subscription SUBSCRIPTION_ID` + diff --git a/skills/recipe-weekly-status-report/SKILL.md b/skills/recipe-weekly-status-report/SKILL.md deleted file mode 100644 index 45829c07..00000000 --- a/skills/recipe-weekly-status-report/SKILL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: recipe-weekly-status-report -version: 1.0.0 -description: "USE WHEN the user needs a summary of the week's activity." -metadata: - openclaw: - category: "recipe" - domain: "reporting" - requires: - bins: ["gws"] - skills: ["gws-calendar", "gws-gmail", "gws-sheets"] ---- - -# Generate a Weekly Status Report - -> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail`, `gws-sheets` - -USE WHEN the user needs a summary of the week's activity. - -## Steps - -1. Get the weekly digest: `gws workflow +weekly-digest --format json` -2. Get today's standup: `gws workflow +standup-report --format json` -3. Optionally log to a Sheet: `gws sheets +append --spreadsheet-id SHEET_ID --range 'Reports' --values '["Week of ...", meetings_count, unread_count]'` - diff --git a/skills/registry/recipes.yaml b/skills/registry/recipes.yaml deleted file mode 100644 index fe0d341a..00000000 --- a/skills/registry/recipes.yaml +++ /dev/null @@ -1,32083 +0,0 @@ -# Domain Recipes - -recipes: -- name: schedule-interview - title: Schedule a Job Interview - description: USE WHEN the user needs to schedule an interview with a candidate. - category: hiring - services: - - calendar - - gmail - steps: - - 'Check interviewer availability: `gws calendar +agenda --days 5 --format table`' - - 'Create the interview event: `gws calendar events insert --params ''{"calendarId": "primary"}'' --json ''{"summary": "Interview: [Candidate]", "start": {"dateTime": "..."}, "end": {"dateTime": "..."}, "attendees": [{"email": "interviewer@company.com"}, {"email": "candidate@email.com"}]}''`' - - 'Send confirmation email: `gws gmail +send --to candidate@email.com --subject ''Interview Confirmation'' --body ''Your interview has been scheduled...''`' - caution: Confirm the interview time with the interviewer before sending the invitation. -- name: share-job-posting - title: Share a Job Posting with Team - description: USE WHEN the user needs to distribute a job posting internally. - category: hiring - services: - - drive - - chat - - gmail - steps: - - 'Upload the job description to Drive: `gws drive +upload job-description.pdf`' - - 'Announce in the team Chat space: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID --message ''New opening: [Position]''`' - - 'Email to hiring managers: `gws gmail +send --to hiring-team@company.com --subject ''New Job Posting: [Position]''`' -- name: new-hire-onboarding - title: Set Up New Hire Onboarding - description: USE WHEN a new employee is joining and needs onboarding materials and calendar events. - category: onboarding - services: - - calendar - - drive - - gmail - - admin - steps: - - 'Create the user account: `gws admin users insert --json ''{"primaryEmail": "newhire@company.com", "name": {"givenName": "First", "familyName": "Last"}, "password": "..."}'' --params ''{}''`' - - 'Schedule orientation sessions: `gws calendar events insert --params ''{"calendarId": "primary"}'' --json ''{"summary": "Orientation: [New Hire]", ...}''`' - - 'Share onboarding docs folder: `gws drive permissions create --params ''{"fileId": "FOLDER_ID"}'' --json ''{"role": "reader", "type": "user", "emailAddress": "newhire@company.com"}''`' - - 'Send welcome email: `gws gmail +send --to newhire@company.com --subject ''Welcome aboard!''`' - caution: Verify the new hire's email address before creating the account. -- name: onboarding-checklist - title: Track Onboarding Progress - description: USE WHEN you need to track onboarding task completion in a spreadsheet. - category: onboarding - services: - - sheets - steps: - - 'Find the onboarding tracker: `gws drive files list --params ''{"q": "name contains ''\''''Onboarding Tracker''\''''"}''`' - - 'Append a new row for the hire: `gws sheets +append --spreadsheet-id SHEET_ID --range ''Sheet1'' --values ''["New Hire Name", "Start Date", "Pending", "Pending", "Pending"]''`' - - 'Check current status: `gws sheets values get --params ''{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}''`' -- name: recurring-meeting - title: Create a Recurring Team Meeting - description: USE WHEN the user needs to set up a recurring meeting (standup, weekly sync, etc.). - category: meetings - services: - - calendar - steps: - - 'Check existing schedule: `gws calendar +agenda --week --format table`' - - 'Create recurring event: `gws calendar events insert --params ''{"calendarId": "primary"}'' --json ''{"summary": "Team Standup", "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"], "start": {"dateTime": "...", "timeZone": "..."}, "end": {"dateTime": "...", "timeZone": "..."}}''`' - caution: Confirm time zone and recurrence rule with the team before creating. -- name: cancel-meeting - title: Cancel a Meeting and Notify Attendees - description: USE WHEN a meeting needs to be cancelled with notifications to all attendees. - category: meetings - services: - - calendar - - gmail - steps: - - 'Find the meeting: `gws calendar +agenda --format json` and locate the event ID' - - 'Delete the event (sends cancellation to attendees): `gws calendar events delete --params ''{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}''`' - - 'Optionally send a follow-up explanation: `gws gmail +send --to attendees --subject ''Meeting Cancelled: [Title]''`' - caution: The delete command will immediately cancel the event and notify attendees. -- name: share-document - title: Share a Document with Specific People - description: USE WHEN the user needs to share a Drive document with one or more people. - category: documents - services: - - drive - steps: - - 'Find the document: `gws drive files list --params ''{"q": "name = ''\''''Document Name''\''''"}''`' - - 'Share with a user: `gws drive permissions create --params ''{"fileId": "FILE_ID"}'' --json ''{"role": "writer", "type": "user", "emailAddress": "user@company.com"}''`' - - 'Verify permissions: `gws drive permissions list --params ''{"fileId": "FILE_ID"}''`' - caution: Choose the correct role (reader, writer, commenter) for the intended access level. -- name: organize-drive-folder - title: Create and Organize a Drive Folder - description: USE WHEN the user needs to create a folder structure in Drive. - category: documents - services: - - drive - steps: - - 'Create the parent folder: `gws drive files create --json ''{"name": "Project Folder", "mimeType": "application/vnd.google-apps.folder"}''`' - - 'Create a subfolder: `gws drive files create --json ''{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}''`' - - 'Upload files to the folder: `gws drive +upload myfile.pdf --parent FOLDER_ID`' - - 'List contents: `gws drive files list --params ''{"q": "''\''''FOLDER_ID''\'''' in parents"}''`' -- name: email-announcement - title: Send a Company-Wide Announcement - description: USE WHEN the user needs to send an announcement email to a distribution list. - category: communications - services: - - gmail - steps: - - 'Draft the announcement: `gws gmail +send --to all-company@company.com --subject ''Important Update: [Topic]'' --body ''...''`' - caution: Company-wide emails reach everyone. Double-check recipients and content before sending. -- name: follow-up-email - title: Send Follow-Up Emails After a Meeting - description: USE WHEN the user needs to send follow-up notes and action items after a meeting. - category: communications - services: - - gmail - - calendar - steps: - - 'Get meeting details: `gws workflow +meeting-prep` or `gws calendar events get --params ''{"calendarId": "primary", "eventId": "EVENT_ID"}''`' - - 'Send follow-up to attendees: `gws gmail +send --to attendees@company.com --subject ''Follow-up: [Meeting Title]'' --body ''Action items: ...''`' - - 'Create tasks from action items: `gws workflow +email-to-task --message-id MSG_ID`' -- name: chat-announcement - title: Post an Announcement to a Chat Space - description: USE WHEN the user needs to post a message in a Google Chat space. - category: communications - services: - - chat - steps: - - 'List available spaces: `gws chat spaces list --params ''{}''`' - - 'Send the message: `gws chat spaces messages create --params ''{"parent": "spaces/SPACE_ID"}'' --json ''{"text": "📢 Announcement: ..."}''`' -- name: create-chat-space - title: Create a New Chat Space for a Project - description: USE WHEN the user needs to create a dedicated Chat space for a team or project. - category: communications - services: - - chat - steps: - - 'Create the space: `gws chat spaces create --json ''{"displayName": "Project Alpha", "spaceType": "SPACE"}''`' - - 'Add members: Invite team members to join the space' - - 'Post welcome message: `gws chat spaces messages create --params ''{"parent": "spaces/SPACE_ID"}'' --json ''{"text": "Welcome to Project Alpha! 👋"}''`' -- name: weekly-status-report - title: Generate a Weekly Status Report - description: USE WHEN the user needs a summary of the week's activity. - category: reporting - services: - - calendar - - gmail - - sheets - steps: - - 'Get the weekly digest: `gws workflow +weekly-digest --format json`' - - 'Get today''s standup: `gws workflow +standup-report --format json`' - - 'Optionally log to a Sheet: `gws sheets +append --spreadsheet-id SHEET_ID --range ''Reports'' --values ''["Week of ...", meetings_count, unread_count]''`' -- name: log-data-to-sheet - title: Log Data to a Google Sheet - description: USE WHEN the user needs to append structured data to a spreadsheet. - category: reporting - services: - - sheets - steps: - - 'Find the spreadsheet: `gws drive files list --params ''{"q": "name = ''\''''My Tracker''\'''' and mimeType = ''\''''application/vnd.google-apps.spreadsheet''\''''"}''`' - - 'Read existing data: `gws sheets values get --params ''{"spreadsheetId": "SHEET_ID", "range": "Sheet1"}''`' - - 'Append new rows: `gws sheets +append --spreadsheet-id SHEET_ID --range ''Sheet1'' --values ''["timestamp", "value1", "value2"]''`' -- name: audit-drive-sharing - title: Audit External Sharing on Drive - description: USE WHEN the user needs to check which files are shared externally. - category: security - services: - - drive - steps: - - 'Search for externally shared files: `gws drive files list --params ''{"q": "visibility = ''\''''anyoneWithLink''\'''' or visibility = ''\''''anyoneCanFind''\''''"}''`' - - 'Check permissions on a specific file: `gws drive permissions list --params ''{"fileId": "FILE_ID"}''`' - - 'Revoke external access if needed: `gws drive permissions delete --params ''{"fileId": "FILE_ID", "permissionId": "PERM_ID"}''`' - caution: Revoking permissions immediately removes access. Confirm with the file owner first. -- name: sanitize-response - title: Screen API Responses Through Model Armor - description: USE WHEN the user needs to sanitize content for PII or safety before processing. - category: security - services: - - modelarmor - - gmail - - drive - steps: - - 'Create a sanitize template: See `gws modelarmor +create-template --help`' - - 'Use the template on API calls: Add `--sanitize TEMPLATE_NAME` to any gws command' - - 'Example: `gws gmail users messages get --params ''{"userId": "me", "id": "MSG_ID"}'' --sanitize my-template`' -- name: upload-and-share - title: Upload a File and Share It - description: USE WHEN the user needs to upload a file to Drive and share it with someone. - category: documents - services: - - drive - steps: - - 'Upload the file: `gws drive +upload report.pdf`' - - Note the file ID from the upload output - - 'Share with a user: `gws drive permissions create --params ''{"fileId": "FILE_ID"}'' --json ''{"role": "reader", "type": "user", "emailAddress": "user@company.com"}''`' - - 'Optionally announce in Chat: `gws workflow +file-announce --file-id FILE_ID --space spaces/SPACE_ID`' -- name: bulk-download - title: Download Multiple Drive Files - description: USE WHEN the user needs to download multiple files from a Drive folder. - category: documents - services: - - drive - steps: - - 'List files in the folder: `gws drive files list --params ''{"q": "''\''''FOLDER_ID''\'''' in parents"}'' --format json`' - - 'Download each file: `gws drive files get --params ''{"fileId": "FILE_ID", "alt": "media"}'' -o filename.ext`' - - 'For Google Docs format, use export: `gws drive files export --params ''{"fileId": "FILE_ID", "mimeType": "application/pdf"}'' -o document.pdf`' -- name: create-task-from-email - title: Convert an Email to a Task - description: USE WHEN the user wants to turn an email into an actionable task. - category: productivity - services: - - gmail - - workflow - steps: - - 'Find the email: `gws gmail +triage --max 5` to see recent messages' - - Get the message ID from the triage output - - 'Convert to task: `gws workflow +email-to-task --message-id MSG_ID`' - - 'Verify the task was created: Check the output for the task ID and title' -- name: daily-standup - title: Run a Daily Standup Report - description: USE WHEN the user wants a quick morning briefing of today's schedule and tasks. - category: productivity - services: - - workflow - steps: - - 'Generate standup report: `gws workflow +standup-report`' - - 'For table format: `gws workflow +standup-report --format table`' - - 'Share in team Chat if needed: Copy output and send via `gws chat spaces messages create`' -- name: sales-audit-weekly-lead-2 - title: Audit Weekly Lead (sales) - description: Standard workflow to audit weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly lead requests. - - Execute audit procedure on the designated lead. - - Notify stakeholders via email. -- name: sales-audit-monthly-lead-3 - title: Audit Monthly Lead (sales) - description: Standard workflow to audit monthly lead within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly lead records. - - Review and audit the monthly lead. - - Send a status update to the sales team chat space. -- name: sales-audit-urgent-lead-4 - title: Audit Urgent Lead (sales) - description: Standard workflow to audit urgent lead within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent lead data. - - Apply sales policies to audit the lead. - - Log completion in the master tracking spreadsheet. -- name: sales-audit-secure-lead-5 - title: Audit Secure Lead (sales) - description: Standard workflow to audit secure lead within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure lead requests. - - Execute audit procedure on the designated lead. - - Archive results in a secure Drive folder. -- name: sales-audit-weekly-opportunity-6 - title: Audit Weekly Opportunity (sales) - description: Standard workflow to audit weekly opportunity within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly opportunity records. - - Review and audit the weekly opportunity. - - Notify stakeholders via email. -- name: sales-audit-monthly-opportunity-7 - title: Audit Monthly Opportunity (sales) - description: Standard workflow to audit monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly opportunity data. - - Apply sales policies to audit the opportunity. - - Send a status update to the sales team chat space. -- name: sales-audit-urgent-opportunity-8 - title: Audit Urgent Opportunity (sales) - description: Standard workflow to audit urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent opportunity requests. - - Execute audit procedure on the designated opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-audit-secure-opportunity-9 - title: Audit Secure Opportunity (sales) - description: Standard workflow to audit secure opportunity within the sales department. - category: sales - services: - - drive - steps: - - Search for secure opportunity records. - - Review and audit the secure opportunity. - - Archive results in a secure Drive folder. -- name: sales-audit-weekly-account-10 - title: Audit Weekly Account (sales) - description: Standard workflow to audit weekly account within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly account data. - - Apply sales policies to audit the account. - - Notify stakeholders via email. -- name: sales-audit-monthly-account-11 - title: Audit Monthly Account (sales) - description: Standard workflow to audit monthly account within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly account requests. - - Execute audit procedure on the designated account. - - Send a status update to the sales team chat space. -- name: sales-audit-urgent-account-12 - title: Audit Urgent Account (sales) - description: Standard workflow to audit urgent account within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent account records. - - Review and audit the urgent account. - - Log completion in the master tracking spreadsheet. -- name: sales-audit-secure-account-13 - title: Audit Secure Account (sales) - description: Standard workflow to audit secure account within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure account data. - - Apply sales policies to audit the account. - - Archive results in a secure Drive folder. -- name: sales-audit-weekly-contract-14 - title: Audit Weekly Contract (sales) - description: Standard workflow to audit weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly contract requests. - - Execute audit procedure on the designated contract. - - Notify stakeholders via email. -- name: sales-audit-monthly-contract-15 - title: Audit Monthly Contract (sales) - description: Standard workflow to audit monthly contract within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly contract records. - - Review and audit the monthly contract. - - Send a status update to the sales team chat space. -- name: sales-audit-urgent-contract-16 - title: Audit Urgent Contract (sales) - description: Standard workflow to audit urgent contract within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent contract data. - - Apply sales policies to audit the contract. - - Log completion in the master tracking spreadsheet. -- name: sales-audit-secure-contract-17 - title: Audit Secure Contract (sales) - description: Standard workflow to audit secure contract within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure contract requests. - - Execute audit procedure on the designated contract. - - Archive results in a secure Drive folder. -- name: sales-audit-weekly-quote-18 - title: Audit Weekly Quote (sales) - description: Standard workflow to audit weekly quote within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly quote records. - - Review and audit the weekly quote. - - Notify stakeholders via email. -- name: sales-audit-monthly-quote-19 - title: Audit Monthly Quote (sales) - description: Standard workflow to audit monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly quote data. - - Apply sales policies to audit the quote. - - Send a status update to the sales team chat space. -- name: sales-audit-urgent-quote-20 - title: Audit Urgent Quote (sales) - description: Standard workflow to audit urgent quote within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent quote requests. - - Execute audit procedure on the designated quote. - - Log completion in the master tracking spreadsheet. -- name: sales-audit-secure-quote-21 - title: Audit Secure Quote (sales) - description: Standard workflow to audit secure quote within the sales department. - category: sales - services: - - drive - steps: - - Search for secure quote records. - - Review and audit the secure quote. - - Archive results in a secure Drive folder. -- name: sales-onboard-weekly-lead-22 - title: Onboard Weekly Lead (sales) - description: Standard workflow to onboard weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly lead data. - - Apply sales policies to onboard the lead. - - Notify stakeholders via email. -- name: sales-onboard-monthly-lead-23 - title: Onboard Monthly Lead (sales) - description: Standard workflow to onboard monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly lead requests. - - Execute onboard procedure on the designated lead. - - Send a status update to the sales team chat space. -- name: sales-onboard-urgent-lead-24 - title: Onboard Urgent Lead (sales) - description: Standard workflow to onboard urgent lead within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent lead records. - - Review and onboard the urgent lead. - - Log completion in the master tracking spreadsheet. -- name: sales-onboard-secure-lead-25 - title: Onboard Secure Lead (sales) - description: Standard workflow to onboard secure lead within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure lead data. - - Apply sales policies to onboard the lead. - - Archive results in a secure Drive folder. -- name: sales-onboard-weekly-opportunity-26 - title: Onboard Weekly Opportunity (sales) - description: Standard workflow to onboard weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly opportunity requests. - - Execute onboard procedure on the designated opportunity. - - Notify stakeholders via email. -- name: sales-onboard-monthly-opportunity-27 - title: Onboard Monthly Opportunity (sales) - description: Standard workflow to onboard monthly opportunity within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly opportunity records. - - Review and onboard the monthly opportunity. - - Send a status update to the sales team chat space. -- name: sales-onboard-urgent-opportunity-28 - title: Onboard Urgent Opportunity (sales) - description: Standard workflow to onboard urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent opportunity data. - - Apply sales policies to onboard the opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-onboard-secure-opportunity-29 - title: Onboard Secure Opportunity (sales) - description: Standard workflow to onboard secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure opportunity requests. - - Execute onboard procedure on the designated opportunity. - - Archive results in a secure Drive folder. -- name: sales-onboard-weekly-account-30 - title: Onboard Weekly Account (sales) - description: Standard workflow to onboard weekly account within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly account records. - - Review and onboard the weekly account. - - Notify stakeholders via email. -- name: sales-onboard-monthly-account-31 - title: Onboard Monthly Account (sales) - description: Standard workflow to onboard monthly account within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly account data. - - Apply sales policies to onboard the account. - - Send a status update to the sales team chat space. -- name: sales-onboard-urgent-account-32 - title: Onboard Urgent Account (sales) - description: Standard workflow to onboard urgent account within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent account requests. - - Execute onboard procedure on the designated account. - - Log completion in the master tracking spreadsheet. -- name: sales-onboard-secure-account-33 - title: Onboard Secure Account (sales) - description: Standard workflow to onboard secure account within the sales department. - category: sales - services: - - drive - steps: - - Search for secure account records. - - Review and onboard the secure account. - - Archive results in a secure Drive folder. -- name: sales-onboard-weekly-contract-34 - title: Onboard Weekly Contract (sales) - description: Standard workflow to onboard weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly contract data. - - Apply sales policies to onboard the contract. - - Notify stakeholders via email. -- name: sales-onboard-monthly-contract-35 - title: Onboard Monthly Contract (sales) - description: Standard workflow to onboard monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly contract requests. - - Execute onboard procedure on the designated contract. - - Send a status update to the sales team chat space. -- name: sales-onboard-urgent-contract-36 - title: Onboard Urgent Contract (sales) - description: Standard workflow to onboard urgent contract within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent contract records. - - Review and onboard the urgent contract. - - Log completion in the master tracking spreadsheet. -- name: sales-onboard-secure-contract-37 - title: Onboard Secure Contract (sales) - description: Standard workflow to onboard secure contract within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure contract data. - - Apply sales policies to onboard the contract. - - Archive results in a secure Drive folder. -- name: sales-onboard-weekly-quote-38 - title: Onboard Weekly Quote (sales) - description: Standard workflow to onboard weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly quote requests. - - Execute onboard procedure on the designated quote. - - Notify stakeholders via email. -- name: sales-onboard-monthly-quote-39 - title: Onboard Monthly Quote (sales) - description: Standard workflow to onboard monthly quote within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly quote records. - - Review and onboard the monthly quote. - - Send a status update to the sales team chat space. -- name: sales-onboard-urgent-quote-40 - title: Onboard Urgent Quote (sales) - description: Standard workflow to onboard urgent quote within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent quote data. - - Apply sales policies to onboard the quote. - - Log completion in the master tracking spreadsheet. -- name: sales-onboard-secure-quote-41 - title: Onboard Secure Quote (sales) - description: Standard workflow to onboard secure quote within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure quote requests. - - Execute onboard procedure on the designated quote. - - Archive results in a secure Drive folder. -- name: sales-review-weekly-lead-42 - title: Review Weekly Lead (sales) - description: Standard workflow to review weekly lead within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly lead records. - - Review and review the weekly lead. - - Notify stakeholders via email. -- name: sales-review-monthly-lead-43 - title: Review Monthly Lead (sales) - description: Standard workflow to review monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly lead data. - - Apply sales policies to review the lead. - - Send a status update to the sales team chat space. -- name: sales-review-urgent-lead-44 - title: Review Urgent Lead (sales) - description: Standard workflow to review urgent lead within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent lead requests. - - Execute review procedure on the designated lead. - - Log completion in the master tracking spreadsheet. -- name: sales-review-secure-lead-45 - title: Review Secure Lead (sales) - description: Standard workflow to review secure lead within the sales department. - category: sales - services: - - drive - steps: - - Search for secure lead records. - - Review and review the secure lead. - - Archive results in a secure Drive folder. -- name: sales-review-weekly-opportunity-46 - title: Review Weekly Opportunity (sales) - description: Standard workflow to review weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly opportunity data. - - Apply sales policies to review the opportunity. - - Notify stakeholders via email. -- name: sales-review-monthly-opportunity-47 - title: Review Monthly Opportunity (sales) - description: Standard workflow to review monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly opportunity requests. - - Execute review procedure on the designated opportunity. - - Send a status update to the sales team chat space. -- name: sales-review-urgent-opportunity-48 - title: Review Urgent Opportunity (sales) - description: Standard workflow to review urgent opportunity within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent opportunity records. - - Review and review the urgent opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-review-secure-opportunity-49 - title: Review Secure Opportunity (sales) - description: Standard workflow to review secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure opportunity data. - - Apply sales policies to review the opportunity. - - Archive results in a secure Drive folder. -- name: sales-review-weekly-account-50 - title: Review Weekly Account (sales) - description: Standard workflow to review weekly account within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly account requests. - - Execute review procedure on the designated account. - - Notify stakeholders via email. -- name: sales-review-monthly-account-51 - title: Review Monthly Account (sales) - description: Standard workflow to review monthly account within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly account records. - - Review and review the monthly account. - - Send a status update to the sales team chat space. -- name: sales-review-urgent-account-52 - title: Review Urgent Account (sales) - description: Standard workflow to review urgent account within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent account data. - - Apply sales policies to review the account. - - Log completion in the master tracking spreadsheet. -- name: sales-review-secure-account-53 - title: Review Secure Account (sales) - description: Standard workflow to review secure account within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure account requests. - - Execute review procedure on the designated account. - - Archive results in a secure Drive folder. -- name: sales-review-weekly-contract-54 - title: Review Weekly Contract (sales) - description: Standard workflow to review weekly contract within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly contract records. - - Review and review the weekly contract. - - Notify stakeholders via email. -- name: sales-review-monthly-contract-55 - title: Review Monthly Contract (sales) - description: Standard workflow to review monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly contract data. - - Apply sales policies to review the contract. - - Send a status update to the sales team chat space. -- name: sales-review-urgent-contract-56 - title: Review Urgent Contract (sales) - description: Standard workflow to review urgent contract within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute review procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: sales-review-secure-contract-57 - title: Review Secure Contract (sales) - description: Standard workflow to review secure contract within the sales department. - category: sales - services: - - drive - steps: - - Search for secure contract records. - - Review and review the secure contract. - - Archive results in a secure Drive folder. -- name: sales-review-weekly-quote-58 - title: Review Weekly Quote (sales) - description: Standard workflow to review weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly quote data. - - Apply sales policies to review the quote. - - Notify stakeholders via email. -- name: sales-review-monthly-quote-59 - title: Review Monthly Quote (sales) - description: Standard workflow to review monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly quote requests. - - Execute review procedure on the designated quote. - - Send a status update to the sales team chat space. -- name: sales-review-urgent-quote-60 - title: Review Urgent Quote (sales) - description: Standard workflow to review urgent quote within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent quote records. - - Review and review the urgent quote. - - Log completion in the master tracking spreadsheet. -- name: sales-review-secure-quote-61 - title: Review Secure Quote (sales) - description: Standard workflow to review secure quote within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure quote data. - - Apply sales policies to review the quote. - - Archive results in a secure Drive folder. -- name: sales-approve-weekly-lead-62 - title: Approve Weekly Lead (sales) - description: Standard workflow to approve weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly lead requests. - - Execute approve procedure on the designated lead. - - Notify stakeholders via email. -- name: sales-approve-monthly-lead-63 - title: Approve Monthly Lead (sales) - description: Standard workflow to approve monthly lead within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly lead records. - - Review and approve the monthly lead. - - Send a status update to the sales team chat space. -- name: sales-approve-urgent-lead-64 - title: Approve Urgent Lead (sales) - description: Standard workflow to approve urgent lead within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent lead data. - - Apply sales policies to approve the lead. - - Log completion in the master tracking spreadsheet. -- name: sales-approve-secure-lead-65 - title: Approve Secure Lead (sales) - description: Standard workflow to approve secure lead within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure lead requests. - - Execute approve procedure on the designated lead. - - Archive results in a secure Drive folder. -- name: sales-approve-weekly-opportunity-66 - title: Approve Weekly Opportunity (sales) - description: Standard workflow to approve weekly opportunity within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly opportunity records. - - Review and approve the weekly opportunity. - - Notify stakeholders via email. -- name: sales-approve-monthly-opportunity-67 - title: Approve Monthly Opportunity (sales) - description: Standard workflow to approve monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly opportunity data. - - Apply sales policies to approve the opportunity. - - Send a status update to the sales team chat space. -- name: sales-approve-urgent-opportunity-68 - title: Approve Urgent Opportunity (sales) - description: Standard workflow to approve urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent opportunity requests. - - Execute approve procedure on the designated opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-approve-secure-opportunity-69 - title: Approve Secure Opportunity (sales) - description: Standard workflow to approve secure opportunity within the sales department. - category: sales - services: - - drive - steps: - - Search for secure opportunity records. - - Review and approve the secure opportunity. - - Archive results in a secure Drive folder. -- name: sales-approve-weekly-account-70 - title: Approve Weekly Account (sales) - description: Standard workflow to approve weekly account within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly account data. - - Apply sales policies to approve the account. - - Notify stakeholders via email. -- name: sales-approve-monthly-account-71 - title: Approve Monthly Account (sales) - description: Standard workflow to approve monthly account within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly account requests. - - Execute approve procedure on the designated account. - - Send a status update to the sales team chat space. -- name: sales-approve-urgent-account-72 - title: Approve Urgent Account (sales) - description: Standard workflow to approve urgent account within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent account records. - - Review and approve the urgent account. - - Log completion in the master tracking spreadsheet. -- name: sales-approve-secure-account-73 - title: Approve Secure Account (sales) - description: Standard workflow to approve secure account within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure account data. - - Apply sales policies to approve the account. - - Archive results in a secure Drive folder. -- name: sales-approve-weekly-contract-74 - title: Approve Weekly Contract (sales) - description: Standard workflow to approve weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly contract requests. - - Execute approve procedure on the designated contract. - - Notify stakeholders via email. -- name: sales-approve-monthly-contract-75 - title: Approve Monthly Contract (sales) - description: Standard workflow to approve monthly contract within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly contract records. - - Review and approve the monthly contract. - - Send a status update to the sales team chat space. -- name: sales-approve-urgent-contract-76 - title: Approve Urgent Contract (sales) - description: Standard workflow to approve urgent contract within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent contract data. - - Apply sales policies to approve the contract. - - Log completion in the master tracking spreadsheet. -- name: sales-approve-secure-contract-77 - title: Approve Secure Contract (sales) - description: Standard workflow to approve secure contract within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure contract requests. - - Execute approve procedure on the designated contract. - - Archive results in a secure Drive folder. -- name: sales-approve-weekly-quote-78 - title: Approve Weekly Quote (sales) - description: Standard workflow to approve weekly quote within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly quote records. - - Review and approve the weekly quote. - - Notify stakeholders via email. -- name: sales-approve-monthly-quote-79 - title: Approve Monthly Quote (sales) - description: Standard workflow to approve monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly quote data. - - Apply sales policies to approve the quote. - - Send a status update to the sales team chat space. -- name: sales-approve-urgent-quote-80 - title: Approve Urgent Quote (sales) - description: Standard workflow to approve urgent quote within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent quote requests. - - Execute approve procedure on the designated quote. - - Log completion in the master tracking spreadsheet. -- name: sales-approve-secure-quote-81 - title: Approve Secure Quote (sales) - description: Standard workflow to approve secure quote within the sales department. - category: sales - services: - - drive - steps: - - Search for secure quote records. - - Review and approve the secure quote. - - Archive results in a secure Drive folder. -- name: sales-share-weekly-lead-82 - title: Share Weekly Lead (sales) - description: Standard workflow to share weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly lead data. - - Apply sales policies to share the lead. - - Notify stakeholders via email. -- name: sales-share-monthly-lead-83 - title: Share Monthly Lead (sales) - description: Standard workflow to share monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly lead requests. - - Execute share procedure on the designated lead. - - Send a status update to the sales team chat space. -- name: sales-share-urgent-lead-84 - title: Share Urgent Lead (sales) - description: Standard workflow to share urgent lead within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent lead records. - - Review and share the urgent lead. - - Log completion in the master tracking spreadsheet. -- name: sales-share-secure-lead-85 - title: Share Secure Lead (sales) - description: Standard workflow to share secure lead within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure lead data. - - Apply sales policies to share the lead. - - Archive results in a secure Drive folder. -- name: sales-share-weekly-opportunity-86 - title: Share Weekly Opportunity (sales) - description: Standard workflow to share weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly opportunity requests. - - Execute share procedure on the designated opportunity. - - Notify stakeholders via email. -- name: sales-share-monthly-opportunity-87 - title: Share Monthly Opportunity (sales) - description: Standard workflow to share monthly opportunity within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly opportunity records. - - Review and share the monthly opportunity. - - Send a status update to the sales team chat space. -- name: sales-share-urgent-opportunity-88 - title: Share Urgent Opportunity (sales) - description: Standard workflow to share urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent opportunity data. - - Apply sales policies to share the opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-share-secure-opportunity-89 - title: Share Secure Opportunity (sales) - description: Standard workflow to share secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure opportunity requests. - - Execute share procedure on the designated opportunity. - - Archive results in a secure Drive folder. -- name: sales-share-weekly-account-90 - title: Share Weekly Account (sales) - description: Standard workflow to share weekly account within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly account records. - - Review and share the weekly account. - - Notify stakeholders via email. -- name: sales-share-monthly-account-91 - title: Share Monthly Account (sales) - description: Standard workflow to share monthly account within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly account data. - - Apply sales policies to share the account. - - Send a status update to the sales team chat space. -- name: sales-share-urgent-account-92 - title: Share Urgent Account (sales) - description: Standard workflow to share urgent account within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent account requests. - - Execute share procedure on the designated account. - - Log completion in the master tracking spreadsheet. -- name: sales-share-secure-account-93 - title: Share Secure Account (sales) - description: Standard workflow to share secure account within the sales department. - category: sales - services: - - drive - steps: - - Search for secure account records. - - Review and share the secure account. - - Archive results in a secure Drive folder. -- name: sales-share-weekly-contract-94 - title: Share Weekly Contract (sales) - description: Standard workflow to share weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly contract data. - - Apply sales policies to share the contract. - - Notify stakeholders via email. -- name: sales-share-monthly-contract-95 - title: Share Monthly Contract (sales) - description: Standard workflow to share monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly contract requests. - - Execute share procedure on the designated contract. - - Send a status update to the sales team chat space. -- name: sales-share-urgent-contract-96 - title: Share Urgent Contract (sales) - description: Standard workflow to share urgent contract within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent contract records. - - Review and share the urgent contract. - - Log completion in the master tracking spreadsheet. -- name: sales-share-secure-contract-97 - title: Share Secure Contract (sales) - description: Standard workflow to share secure contract within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure contract data. - - Apply sales policies to share the contract. - - Archive results in a secure Drive folder. -- name: sales-share-weekly-quote-98 - title: Share Weekly Quote (sales) - description: Standard workflow to share weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly quote requests. - - Execute share procedure on the designated quote. - - Notify stakeholders via email. -- name: sales-share-monthly-quote-99 - title: Share Monthly Quote (sales) - description: Standard workflow to share monthly quote within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly quote records. - - Review and share the monthly quote. - - Send a status update to the sales team chat space. -- name: sales-share-urgent-quote-100 - title: Share Urgent Quote (sales) - description: Standard workflow to share urgent quote within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent quote data. - - Apply sales policies to share the quote. - - Log completion in the master tracking spreadsheet. -- name: sales-share-secure-quote-101 - title: Share Secure Quote (sales) - description: Standard workflow to share secure quote within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure quote requests. - - Execute share procedure on the designated quote. - - Archive results in a secure Drive folder. -- name: sales-publish-weekly-lead-102 - title: Publish Weekly Lead (sales) - description: Standard workflow to publish weekly lead within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly lead records. - - Review and publish the weekly lead. - - Notify stakeholders via email. -- name: sales-publish-monthly-lead-103 - title: Publish Monthly Lead (sales) - description: Standard workflow to publish monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly lead data. - - Apply sales policies to publish the lead. - - Send a status update to the sales team chat space. -- name: sales-publish-urgent-lead-104 - title: Publish Urgent Lead (sales) - description: Standard workflow to publish urgent lead within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent lead requests. - - Execute publish procedure on the designated lead. - - Log completion in the master tracking spreadsheet. -- name: sales-publish-secure-lead-105 - title: Publish Secure Lead (sales) - description: Standard workflow to publish secure lead within the sales department. - category: sales - services: - - drive - steps: - - Search for secure lead records. - - Review and publish the secure lead. - - Archive results in a secure Drive folder. -- name: sales-publish-weekly-opportunity-106 - title: Publish Weekly Opportunity (sales) - description: Standard workflow to publish weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly opportunity data. - - Apply sales policies to publish the opportunity. - - Notify stakeholders via email. -- name: sales-publish-monthly-opportunity-107 - title: Publish Monthly Opportunity (sales) - description: Standard workflow to publish monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly opportunity requests. - - Execute publish procedure on the designated opportunity. - - Send a status update to the sales team chat space. -- name: sales-publish-urgent-opportunity-108 - title: Publish Urgent Opportunity (sales) - description: Standard workflow to publish urgent opportunity within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent opportunity records. - - Review and publish the urgent opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-publish-secure-opportunity-109 - title: Publish Secure Opportunity (sales) - description: Standard workflow to publish secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure opportunity data. - - Apply sales policies to publish the opportunity. - - Archive results in a secure Drive folder. -- name: sales-publish-weekly-account-110 - title: Publish Weekly Account (sales) - description: Standard workflow to publish weekly account within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly account requests. - - Execute publish procedure on the designated account. - - Notify stakeholders via email. -- name: sales-publish-monthly-account-111 - title: Publish Monthly Account (sales) - description: Standard workflow to publish monthly account within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly account records. - - Review and publish the monthly account. - - Send a status update to the sales team chat space. -- name: sales-publish-urgent-account-112 - title: Publish Urgent Account (sales) - description: Standard workflow to publish urgent account within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent account data. - - Apply sales policies to publish the account. - - Log completion in the master tracking spreadsheet. -- name: sales-publish-secure-account-113 - title: Publish Secure Account (sales) - description: Standard workflow to publish secure account within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure account requests. - - Execute publish procedure on the designated account. - - Archive results in a secure Drive folder. -- name: sales-publish-weekly-contract-114 - title: Publish Weekly Contract (sales) - description: Standard workflow to publish weekly contract within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly contract records. - - Review and publish the weekly contract. - - Notify stakeholders via email. -- name: sales-publish-monthly-contract-115 - title: Publish Monthly Contract (sales) - description: Standard workflow to publish monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly contract data. - - Apply sales policies to publish the contract. - - Send a status update to the sales team chat space. -- name: sales-publish-urgent-contract-116 - title: Publish Urgent Contract (sales) - description: Standard workflow to publish urgent contract within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute publish procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: sales-publish-secure-contract-117 - title: Publish Secure Contract (sales) - description: Standard workflow to publish secure contract within the sales department. - category: sales - services: - - drive - steps: - - Search for secure contract records. - - Review and publish the secure contract. - - Archive results in a secure Drive folder. -- name: sales-publish-weekly-quote-118 - title: Publish Weekly Quote (sales) - description: Standard workflow to publish weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly quote data. - - Apply sales policies to publish the quote. - - Notify stakeholders via email. -- name: sales-publish-monthly-quote-119 - title: Publish Monthly Quote (sales) - description: Standard workflow to publish monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly quote requests. - - Execute publish procedure on the designated quote. - - Send a status update to the sales team chat space. -- name: sales-publish-urgent-quote-120 - title: Publish Urgent Quote (sales) - description: Standard workflow to publish urgent quote within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent quote records. - - Review and publish the urgent quote. - - Log completion in the master tracking spreadsheet. -- name: sales-publish-secure-quote-121 - title: Publish Secure Quote (sales) - description: Standard workflow to publish secure quote within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure quote data. - - Apply sales policies to publish the quote. - - Archive results in a secure Drive folder. -- name: sales-archive-weekly-lead-122 - title: Archive Weekly Lead (sales) - description: Standard workflow to archive weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly lead requests. - - Execute archive procedure on the designated lead. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly lead targets before running. -- name: sales-archive-monthly-lead-123 - title: Archive Monthly Lead (sales) - description: Standard workflow to archive monthly lead within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly lead records. - - Review and archive the monthly lead. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly lead targets before running. -- name: sales-archive-urgent-lead-124 - title: Archive Urgent Lead (sales) - description: Standard workflow to archive urgent lead within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent lead data. - - Apply sales policies to archive the lead. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent lead targets before running. -- name: sales-archive-secure-lead-125 - title: Archive Secure Lead (sales) - description: Standard workflow to archive secure lead within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure lead requests. - - Execute archive procedure on the designated lead. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure lead targets before running. -- name: sales-archive-weekly-opportunity-126 - title: Archive Weekly Opportunity (sales) - description: Standard workflow to archive weekly opportunity within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly opportunity records. - - Review and archive the weekly opportunity. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly opportunity targets before running. -- name: sales-archive-monthly-opportunity-127 - title: Archive Monthly Opportunity (sales) - description: Standard workflow to archive monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly opportunity data. - - Apply sales policies to archive the opportunity. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly opportunity targets before running. -- name: sales-archive-urgent-opportunity-128 - title: Archive Urgent Opportunity (sales) - description: Standard workflow to archive urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent opportunity requests. - - Execute archive procedure on the designated opportunity. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent opportunity targets before running. -- name: sales-archive-secure-opportunity-129 - title: Archive Secure Opportunity (sales) - description: Standard workflow to archive secure opportunity within the sales department. - category: sales - services: - - drive - steps: - - Search for secure opportunity records. - - Review and archive the secure opportunity. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure opportunity targets before running. -- name: sales-archive-weekly-account-130 - title: Archive Weekly Account (sales) - description: Standard workflow to archive weekly account within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly account data. - - Apply sales policies to archive the account. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly account targets before running. -- name: sales-archive-monthly-account-131 - title: Archive Monthly Account (sales) - description: Standard workflow to archive monthly account within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly account requests. - - Execute archive procedure on the designated account. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly account targets before running. -- name: sales-archive-urgent-account-132 - title: Archive Urgent Account (sales) - description: Standard workflow to archive urgent account within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent account records. - - Review and archive the urgent account. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent account targets before running. -- name: sales-archive-secure-account-133 - title: Archive Secure Account (sales) - description: Standard workflow to archive secure account within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure account data. - - Apply sales policies to archive the account. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure account targets before running. -- name: sales-archive-weekly-contract-134 - title: Archive Weekly Contract (sales) - description: Standard workflow to archive weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly contract requests. - - Execute archive procedure on the designated contract. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. -- name: sales-archive-monthly-contract-135 - title: Archive Monthly Contract (sales) - description: Standard workflow to archive monthly contract within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly contract records. - - Review and archive the monthly contract. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. -- name: sales-archive-urgent-contract-136 - title: Archive Urgent Contract (sales) - description: Standard workflow to archive urgent contract within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent contract data. - - Apply sales policies to archive the contract. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. -- name: sales-archive-secure-contract-137 - title: Archive Secure Contract (sales) - description: Standard workflow to archive secure contract within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure contract requests. - - Execute archive procedure on the designated contract. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure contract targets before running. -- name: sales-archive-weekly-quote-138 - title: Archive Weekly Quote (sales) - description: Standard workflow to archive weekly quote within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly quote records. - - Review and archive the weekly quote. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly quote targets before running. -- name: sales-archive-monthly-quote-139 - title: Archive Monthly Quote (sales) - description: Standard workflow to archive monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly quote data. - - Apply sales policies to archive the quote. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly quote targets before running. -- name: sales-archive-urgent-quote-140 - title: Archive Urgent Quote (sales) - description: Standard workflow to archive urgent quote within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent quote requests. - - Execute archive procedure on the designated quote. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent quote targets before running. -- name: sales-archive-secure-quote-141 - title: Archive Secure Quote (sales) - description: Standard workflow to archive secure quote within the sales department. - category: sales - services: - - drive - steps: - - Search for secure quote records. - - Review and archive the secure quote. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure quote targets before running. -- name: sales-export-weekly-lead-142 - title: Export Weekly Lead (sales) - description: Standard workflow to export weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly lead data. - - Apply sales policies to export the lead. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly lead targets before running. -- name: sales-export-monthly-lead-143 - title: Export Monthly Lead (sales) - description: Standard workflow to export monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly lead requests. - - Execute export procedure on the designated lead. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly lead targets before running. -- name: sales-export-urgent-lead-144 - title: Export Urgent Lead (sales) - description: Standard workflow to export urgent lead within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent lead records. - - Review and export the urgent lead. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent lead targets before running. -- name: sales-export-secure-lead-145 - title: Export Secure Lead (sales) - description: Standard workflow to export secure lead within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure lead data. - - Apply sales policies to export the lead. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure lead targets before running. -- name: sales-export-weekly-opportunity-146 - title: Export Weekly Opportunity (sales) - description: Standard workflow to export weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly opportunity requests. - - Execute export procedure on the designated opportunity. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly opportunity targets before running. -- name: sales-export-monthly-opportunity-147 - title: Export Monthly Opportunity (sales) - description: Standard workflow to export monthly opportunity within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly opportunity records. - - Review and export the monthly opportunity. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly opportunity targets before running. -- name: sales-export-urgent-opportunity-148 - title: Export Urgent Opportunity (sales) - description: Standard workflow to export urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent opportunity data. - - Apply sales policies to export the opportunity. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent opportunity targets before running. -- name: sales-export-secure-opportunity-149 - title: Export Secure Opportunity (sales) - description: Standard workflow to export secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure opportunity requests. - - Execute export procedure on the designated opportunity. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure opportunity targets before running. -- name: sales-export-weekly-account-150 - title: Export Weekly Account (sales) - description: Standard workflow to export weekly account within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly account records. - - Review and export the weekly account. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly account targets before running. -- name: sales-export-monthly-account-151 - title: Export Monthly Account (sales) - description: Standard workflow to export monthly account within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly account data. - - Apply sales policies to export the account. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly account targets before running. -- name: sales-export-urgent-account-152 - title: Export Urgent Account (sales) - description: Standard workflow to export urgent account within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent account requests. - - Execute export procedure on the designated account. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent account targets before running. -- name: sales-export-secure-account-153 - title: Export Secure Account (sales) - description: Standard workflow to export secure account within the sales department. - category: sales - services: - - drive - steps: - - Search for secure account records. - - Review and export the secure account. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure account targets before running. -- name: sales-export-weekly-contract-154 - title: Export Weekly Contract (sales) - description: Standard workflow to export weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly contract data. - - Apply sales policies to export the contract. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. -- name: sales-export-monthly-contract-155 - title: Export Monthly Contract (sales) - description: Standard workflow to export monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly contract requests. - - Execute export procedure on the designated contract. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. -- name: sales-export-urgent-contract-156 - title: Export Urgent Contract (sales) - description: Standard workflow to export urgent contract within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent contract records. - - Review and export the urgent contract. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. -- name: sales-export-secure-contract-157 - title: Export Secure Contract (sales) - description: Standard workflow to export secure contract within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure contract data. - - Apply sales policies to export the contract. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure contract targets before running. -- name: sales-export-weekly-quote-158 - title: Export Weekly Quote (sales) - description: Standard workflow to export weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly quote requests. - - Execute export procedure on the designated quote. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly quote targets before running. -- name: sales-export-monthly-quote-159 - title: Export Monthly Quote (sales) - description: Standard workflow to export monthly quote within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly quote records. - - Review and export the monthly quote. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly quote targets before running. -- name: sales-export-urgent-quote-160 - title: Export Urgent Quote (sales) - description: Standard workflow to export urgent quote within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent quote data. - - Apply sales policies to export the quote. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent quote targets before running. -- name: sales-export-secure-quote-161 - title: Export Secure Quote (sales) - description: Standard workflow to export secure quote within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure quote requests. - - Execute export procedure on the designated quote. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure quote targets before running. -- name: sales-import-weekly-lead-162 - title: Import Weekly Lead (sales) - description: Standard workflow to import weekly lead within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly lead records. - - Review and import the weekly lead. - - Notify stakeholders via email. -- name: sales-import-monthly-lead-163 - title: Import Monthly Lead (sales) - description: Standard workflow to import monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly lead data. - - Apply sales policies to import the lead. - - Send a status update to the sales team chat space. -- name: sales-import-urgent-lead-164 - title: Import Urgent Lead (sales) - description: Standard workflow to import urgent lead within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent lead requests. - - Execute import procedure on the designated lead. - - Log completion in the master tracking spreadsheet. -- name: sales-import-secure-lead-165 - title: Import Secure Lead (sales) - description: Standard workflow to import secure lead within the sales department. - category: sales - services: - - drive - steps: - - Search for secure lead records. - - Review and import the secure lead. - - Archive results in a secure Drive folder. -- name: sales-import-weekly-opportunity-166 - title: Import Weekly Opportunity (sales) - description: Standard workflow to import weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly opportunity data. - - Apply sales policies to import the opportunity. - - Notify stakeholders via email. -- name: sales-import-monthly-opportunity-167 - title: Import Monthly Opportunity (sales) - description: Standard workflow to import monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly opportunity requests. - - Execute import procedure on the designated opportunity. - - Send a status update to the sales team chat space. -- name: sales-import-urgent-opportunity-168 - title: Import Urgent Opportunity (sales) - description: Standard workflow to import urgent opportunity within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent opportunity records. - - Review and import the urgent opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-import-secure-opportunity-169 - title: Import Secure Opportunity (sales) - description: Standard workflow to import secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure opportunity data. - - Apply sales policies to import the opportunity. - - Archive results in a secure Drive folder. -- name: sales-import-weekly-account-170 - title: Import Weekly Account (sales) - description: Standard workflow to import weekly account within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly account requests. - - Execute import procedure on the designated account. - - Notify stakeholders via email. -- name: sales-import-monthly-account-171 - title: Import Monthly Account (sales) - description: Standard workflow to import monthly account within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly account records. - - Review and import the monthly account. - - Send a status update to the sales team chat space. -- name: sales-import-urgent-account-172 - title: Import Urgent Account (sales) - description: Standard workflow to import urgent account within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent account data. - - Apply sales policies to import the account. - - Log completion in the master tracking spreadsheet. -- name: sales-import-secure-account-173 - title: Import Secure Account (sales) - description: Standard workflow to import secure account within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure account requests. - - Execute import procedure on the designated account. - - Archive results in a secure Drive folder. -- name: sales-import-weekly-contract-174 - title: Import Weekly Contract (sales) - description: Standard workflow to import weekly contract within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly contract records. - - Review and import the weekly contract. - - Notify stakeholders via email. -- name: sales-import-monthly-contract-175 - title: Import Monthly Contract (sales) - description: Standard workflow to import monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly contract data. - - Apply sales policies to import the contract. - - Send a status update to the sales team chat space. -- name: sales-import-urgent-contract-176 - title: Import Urgent Contract (sales) - description: Standard workflow to import urgent contract within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute import procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: sales-import-secure-contract-177 - title: Import Secure Contract (sales) - description: Standard workflow to import secure contract within the sales department. - category: sales - services: - - drive - steps: - - Search for secure contract records. - - Review and import the secure contract. - - Archive results in a secure Drive folder. -- name: sales-import-weekly-quote-178 - title: Import Weekly Quote (sales) - description: Standard workflow to import weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly quote data. - - Apply sales policies to import the quote. - - Notify stakeholders via email. -- name: sales-import-monthly-quote-179 - title: Import Monthly Quote (sales) - description: Standard workflow to import monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly quote requests. - - Execute import procedure on the designated quote. - - Send a status update to the sales team chat space. -- name: sales-import-urgent-quote-180 - title: Import Urgent Quote (sales) - description: Standard workflow to import urgent quote within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent quote records. - - Review and import the urgent quote. - - Log completion in the master tracking spreadsheet. -- name: sales-import-secure-quote-181 - title: Import Secure Quote (sales) - description: Standard workflow to import secure quote within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure quote data. - - Apply sales policies to import the quote. - - Archive results in a secure Drive folder. -- name: sales-sync-weekly-lead-182 - title: Sync Weekly Lead (sales) - description: Standard workflow to sync weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly lead requests. - - Execute sync procedure on the designated lead. - - Notify stakeholders via email. -- name: sales-sync-monthly-lead-183 - title: Sync Monthly Lead (sales) - description: Standard workflow to sync monthly lead within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly lead records. - - Review and sync the monthly lead. - - Send a status update to the sales team chat space. -- name: sales-sync-urgent-lead-184 - title: Sync Urgent Lead (sales) - description: Standard workflow to sync urgent lead within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent lead data. - - Apply sales policies to sync the lead. - - Log completion in the master tracking spreadsheet. -- name: sales-sync-secure-lead-185 - title: Sync Secure Lead (sales) - description: Standard workflow to sync secure lead within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure lead requests. - - Execute sync procedure on the designated lead. - - Archive results in a secure Drive folder. -- name: sales-sync-weekly-opportunity-186 - title: Sync Weekly Opportunity (sales) - description: Standard workflow to sync weekly opportunity within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly opportunity records. - - Review and sync the weekly opportunity. - - Notify stakeholders via email. -- name: sales-sync-monthly-opportunity-187 - title: Sync Monthly Opportunity (sales) - description: Standard workflow to sync monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly opportunity data. - - Apply sales policies to sync the opportunity. - - Send a status update to the sales team chat space. -- name: sales-sync-urgent-opportunity-188 - title: Sync Urgent Opportunity (sales) - description: Standard workflow to sync urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent opportunity requests. - - Execute sync procedure on the designated opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-sync-secure-opportunity-189 - title: Sync Secure Opportunity (sales) - description: Standard workflow to sync secure opportunity within the sales department. - category: sales - services: - - drive - steps: - - Search for secure opportunity records. - - Review and sync the secure opportunity. - - Archive results in a secure Drive folder. -- name: sales-sync-weekly-account-190 - title: Sync Weekly Account (sales) - description: Standard workflow to sync weekly account within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly account data. - - Apply sales policies to sync the account. - - Notify stakeholders via email. -- name: sales-sync-monthly-account-191 - title: Sync Monthly Account (sales) - description: Standard workflow to sync monthly account within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly account requests. - - Execute sync procedure on the designated account. - - Send a status update to the sales team chat space. -- name: sales-sync-urgent-account-192 - title: Sync Urgent Account (sales) - description: Standard workflow to sync urgent account within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent account records. - - Review and sync the urgent account. - - Log completion in the master tracking spreadsheet. -- name: sales-sync-secure-account-193 - title: Sync Secure Account (sales) - description: Standard workflow to sync secure account within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure account data. - - Apply sales policies to sync the account. - - Archive results in a secure Drive folder. -- name: sales-sync-weekly-contract-194 - title: Sync Weekly Contract (sales) - description: Standard workflow to sync weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly contract requests. - - Execute sync procedure on the designated contract. - - Notify stakeholders via email. -- name: sales-sync-monthly-contract-195 - title: Sync Monthly Contract (sales) - description: Standard workflow to sync monthly contract within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly contract records. - - Review and sync the monthly contract. - - Send a status update to the sales team chat space. -- name: sales-sync-urgent-contract-196 - title: Sync Urgent Contract (sales) - description: Standard workflow to sync urgent contract within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent contract data. - - Apply sales policies to sync the contract. - - Log completion in the master tracking spreadsheet. -- name: sales-sync-secure-contract-197 - title: Sync Secure Contract (sales) - description: Standard workflow to sync secure contract within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure contract requests. - - Execute sync procedure on the designated contract. - - Archive results in a secure Drive folder. -- name: sales-sync-weekly-quote-198 - title: Sync Weekly Quote (sales) - description: Standard workflow to sync weekly quote within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly quote records. - - Review and sync the weekly quote. - - Notify stakeholders via email. -- name: sales-sync-monthly-quote-199 - title: Sync Monthly Quote (sales) - description: Standard workflow to sync monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly quote data. - - Apply sales policies to sync the quote. - - Send a status update to the sales team chat space. -- name: sales-sync-urgent-quote-200 - title: Sync Urgent Quote (sales) - description: Standard workflow to sync urgent quote within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent quote requests. - - Execute sync procedure on the designated quote. - - Log completion in the master tracking spreadsheet. -- name: sales-sync-secure-quote-201 - title: Sync Secure Quote (sales) - description: Standard workflow to sync secure quote within the sales department. - category: sales - services: - - drive - steps: - - Search for secure quote records. - - Review and sync the secure quote. - - Archive results in a secure Drive folder. -- name: sales-migrate-weekly-lead-202 - title: Migrate Weekly Lead (sales) - description: Standard workflow to migrate weekly lead within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly lead data. - - Apply sales policies to migrate the lead. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly lead targets before running. -- name: sales-migrate-monthly-lead-203 - title: Migrate Monthly Lead (sales) - description: Standard workflow to migrate monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly lead requests. - - Execute migrate procedure on the designated lead. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly lead targets before running. -- name: sales-migrate-urgent-lead-204 - title: Migrate Urgent Lead (sales) - description: Standard workflow to migrate urgent lead within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent lead records. - - Review and migrate the urgent lead. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent lead targets before running. -- name: sales-migrate-secure-lead-205 - title: Migrate Secure Lead (sales) - description: Standard workflow to migrate secure lead within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure lead data. - - Apply sales policies to migrate the lead. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure lead targets before running. -- name: sales-migrate-weekly-opportunity-206 - title: Migrate Weekly Opportunity (sales) - description: Standard workflow to migrate weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly opportunity requests. - - Execute migrate procedure on the designated opportunity. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly opportunity targets before running. -- name: sales-migrate-monthly-opportunity-207 - title: Migrate Monthly Opportunity (sales) - description: Standard workflow to migrate monthly opportunity within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly opportunity records. - - Review and migrate the monthly opportunity. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly opportunity targets before running. -- name: sales-migrate-urgent-opportunity-208 - title: Migrate Urgent Opportunity (sales) - description: Standard workflow to migrate urgent opportunity within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent opportunity data. - - Apply sales policies to migrate the opportunity. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent opportunity targets before running. -- name: sales-migrate-secure-opportunity-209 - title: Migrate Secure Opportunity (sales) - description: Standard workflow to migrate secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure opportunity requests. - - Execute migrate procedure on the designated opportunity. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure opportunity targets before running. -- name: sales-migrate-weekly-account-210 - title: Migrate Weekly Account (sales) - description: Standard workflow to migrate weekly account within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly account records. - - Review and migrate the weekly account. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly account targets before running. -- name: sales-migrate-monthly-account-211 - title: Migrate Monthly Account (sales) - description: Standard workflow to migrate monthly account within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly account data. - - Apply sales policies to migrate the account. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly account targets before running. -- name: sales-migrate-urgent-account-212 - title: Migrate Urgent Account (sales) - description: Standard workflow to migrate urgent account within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent account requests. - - Execute migrate procedure on the designated account. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent account targets before running. -- name: sales-migrate-secure-account-213 - title: Migrate Secure Account (sales) - description: Standard workflow to migrate secure account within the sales department. - category: sales - services: - - drive - steps: - - Search for secure account records. - - Review and migrate the secure account. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure account targets before running. -- name: sales-migrate-weekly-contract-214 - title: Migrate Weekly Contract (sales) - description: Standard workflow to migrate weekly contract within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly contract data. - - Apply sales policies to migrate the contract. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. -- name: sales-migrate-monthly-contract-215 - title: Migrate Monthly Contract (sales) - description: Standard workflow to migrate monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly contract requests. - - Execute migrate procedure on the designated contract. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. -- name: sales-migrate-urgent-contract-216 - title: Migrate Urgent Contract (sales) - description: Standard workflow to migrate urgent contract within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent contract records. - - Review and migrate the urgent contract. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. -- name: sales-migrate-secure-contract-217 - title: Migrate Secure Contract (sales) - description: Standard workflow to migrate secure contract within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure contract data. - - Apply sales policies to migrate the contract. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure contract targets before running. -- name: sales-migrate-weekly-quote-218 - title: Migrate Weekly Quote (sales) - description: Standard workflow to migrate weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly quote requests. - - Execute migrate procedure on the designated quote. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly quote targets before running. -- name: sales-migrate-monthly-quote-219 - title: Migrate Monthly Quote (sales) - description: Standard workflow to migrate monthly quote within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly quote records. - - Review and migrate the monthly quote. - - Send a status update to the sales team chat space. - caution: Action involves bulk data manipulation. Confirm monthly quote targets before running. -- name: sales-migrate-urgent-quote-220 - title: Migrate Urgent Quote (sales) - description: Standard workflow to migrate urgent quote within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent quote data. - - Apply sales policies to migrate the quote. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent quote targets before running. -- name: sales-migrate-secure-quote-221 - title: Migrate Secure Quote (sales) - description: Standard workflow to migrate secure quote within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure quote requests. - - Execute migrate procedure on the designated quote. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure quote targets before running. -- name: sales-backup-weekly-lead-222 - title: Backup Weekly Lead (sales) - description: Standard workflow to backup weekly lead within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly lead records. - - Review and backup the weekly lead. - - Notify stakeholders via email. -- name: sales-backup-monthly-lead-223 - title: Backup Monthly Lead (sales) - description: Standard workflow to backup monthly lead within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly lead data. - - Apply sales policies to backup the lead. - - Send a status update to the sales team chat space. -- name: sales-backup-urgent-lead-224 - title: Backup Urgent Lead (sales) - description: Standard workflow to backup urgent lead within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent lead requests. - - Execute backup procedure on the designated lead. - - Log completion in the master tracking spreadsheet. -- name: sales-backup-secure-lead-225 - title: Backup Secure Lead (sales) - description: Standard workflow to backup secure lead within the sales department. - category: sales - services: - - drive - steps: - - Search for secure lead records. - - Review and backup the secure lead. - - Archive results in a secure Drive folder. -- name: sales-backup-weekly-opportunity-226 - title: Backup Weekly Opportunity (sales) - description: Standard workflow to backup weekly opportunity within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly opportunity data. - - Apply sales policies to backup the opportunity. - - Notify stakeholders via email. -- name: sales-backup-monthly-opportunity-227 - title: Backup Monthly Opportunity (sales) - description: Standard workflow to backup monthly opportunity within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly opportunity requests. - - Execute backup procedure on the designated opportunity. - - Send a status update to the sales team chat space. -- name: sales-backup-urgent-opportunity-228 - title: Backup Urgent Opportunity (sales) - description: Standard workflow to backup urgent opportunity within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent opportunity records. - - Review and backup the urgent opportunity. - - Log completion in the master tracking spreadsheet. -- name: sales-backup-secure-opportunity-229 - title: Backup Secure Opportunity (sales) - description: Standard workflow to backup secure opportunity within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure opportunity data. - - Apply sales policies to backup the opportunity. - - Archive results in a secure Drive folder. -- name: sales-backup-weekly-account-230 - title: Backup Weekly Account (sales) - description: Standard workflow to backup weekly account within the sales department. - category: sales - services: - - gmail - - sheets - - calendar - steps: - - Check system for pending weekly account requests. - - Execute backup procedure on the designated account. - - Notify stakeholders via email. -- name: sales-backup-monthly-account-231 - title: Backup Monthly Account (sales) - description: Standard workflow to backup monthly account within the sales department. - category: sales - services: - - sheets - steps: - - Search for monthly account records. - - Review and backup the monthly account. - - Send a status update to the sales team chat space. -- name: sales-backup-urgent-account-232 - title: Backup Urgent Account (sales) - description: Standard workflow to backup urgent account within the sales department. - category: sales - services: - - calendar - - drive - steps: - - Fetch latest urgent account data. - - Apply sales policies to backup the account. - - Log completion in the master tracking spreadsheet. -- name: sales-backup-secure-account-233 - title: Backup Secure Account (sales) - description: Standard workflow to backup secure account within the sales department. - category: sales - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure account requests. - - Execute backup procedure on the designated account. - - Archive results in a secure Drive folder. -- name: sales-backup-weekly-contract-234 - title: Backup Weekly Contract (sales) - description: Standard workflow to backup weekly contract within the sales department. - category: sales - services: - - gmail - steps: - - Search for weekly contract records. - - Review and backup the weekly contract. - - Notify stakeholders via email. -- name: sales-backup-monthly-contract-235 - title: Backup Monthly Contract (sales) - description: Standard workflow to backup monthly contract within the sales department. - category: sales - services: - - sheets - - calendar - steps: - - Fetch latest monthly contract data. - - Apply sales policies to backup the contract. - - Send a status update to the sales team chat space. -- name: sales-backup-urgent-contract-236 - title: Backup Urgent Contract (sales) - description: Standard workflow to backup urgent contract within the sales department. - category: sales - services: - - calendar - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute backup procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: sales-backup-secure-contract-237 - title: Backup Secure Contract (sales) - description: Standard workflow to backup secure contract within the sales department. - category: sales - services: - - drive - steps: - - Search for secure contract records. - - Review and backup the secure contract. - - Archive results in a secure Drive folder. -- name: sales-backup-weekly-quote-238 - title: Backup Weekly Quote (sales) - description: Standard workflow to backup weekly quote within the sales department. - category: sales - services: - - gmail - - sheets - steps: - - Fetch latest weekly quote data. - - Apply sales policies to backup the quote. - - Notify stakeholders via email. -- name: sales-backup-monthly-quote-239 - title: Backup Monthly Quote (sales) - description: Standard workflow to backup monthly quote within the sales department. - category: sales - services: - - sheets - - calendar - - drive - steps: - - Check system for pending monthly quote requests. - - Execute backup procedure on the designated quote. - - Send a status update to the sales team chat space. -- name: sales-backup-urgent-quote-240 - title: Backup Urgent Quote (sales) - description: Standard workflow to backup urgent quote within the sales department. - category: sales - services: - - calendar - steps: - - Search for urgent quote records. - - Review and backup the urgent quote. - - Log completion in the master tracking spreadsheet. -- name: sales-backup-secure-quote-241 - title: Backup Secure Quote (sales) - description: Standard workflow to backup secure quote within the sales department. - category: sales - services: - - drive - - gmail - steps: - - Fetch latest secure quote data. - - Apply sales policies to backup the quote. - - Archive results in a secure Drive folder. -- name: hr-audit-weekly-employee-242 - title: Audit Weekly Employee (hr) - description: Standard workflow to audit weekly employee within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending weekly employee requests. - - Execute audit procedure on the designated employee. - - Notify stakeholders via email. -- name: hr-audit-monthly-employee-243 - title: Audit Monthly Employee (hr) - description: Standard workflow to audit monthly employee within the hr department. - category: hr - services: - - drive - steps: - - Search for monthly employee records. - - Review and audit the monthly employee. - - Send a status update to the hr team chat space. -- name: hr-audit-urgent-employee-244 - title: Audit Urgent Employee (hr) - description: Standard workflow to audit urgent employee within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest urgent employee data. - - Apply hr policies to audit the employee. - - Log completion in the master tracking spreadsheet. -- name: hr-audit-secure-employee-245 - title: Audit Secure Employee (hr) - description: Standard workflow to audit secure employee within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending secure employee requests. - - Execute audit procedure on the designated employee. - - Archive results in a secure Drive folder. -- name: hr-audit-weekly-candidate-246 - title: Audit Weekly Candidate (hr) - description: Standard workflow to audit weekly candidate within the hr department. - category: hr - services: - - calendar - steps: - - Search for weekly candidate records. - - Review and audit the weekly candidate. - - Notify stakeholders via email. -- name: hr-audit-monthly-candidate-247 - title: Audit Monthly Candidate (hr) - description: Standard workflow to audit monthly candidate within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest monthly candidate data. - - Apply hr policies to audit the candidate. - - Send a status update to the hr team chat space. -- name: hr-audit-urgent-candidate-248 - title: Audit Urgent Candidate (hr) - description: Standard workflow to audit urgent candidate within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending urgent candidate requests. - - Execute audit procedure on the designated candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-audit-secure-candidate-249 - title: Audit Secure Candidate (hr) - description: Standard workflow to audit secure candidate within the hr department. - category: hr - services: - - gmail - steps: - - Search for secure candidate records. - - Review and audit the secure candidate. - - Archive results in a secure Drive folder. -- name: hr-audit-weekly-offer-250 - title: Audit Weekly Offer (hr) - description: Standard workflow to audit weekly offer within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest weekly offer data. - - Apply hr policies to audit the offer. - - Notify stakeholders via email. -- name: hr-audit-monthly-offer-251 - title: Audit Monthly Offer (hr) - description: Standard workflow to audit monthly offer within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending monthly offer requests. - - Execute audit procedure on the designated offer. - - Send a status update to the hr team chat space. -- name: hr-audit-urgent-offer-252 - title: Audit Urgent Offer (hr) - description: Standard workflow to audit urgent offer within the hr department. - category: hr - services: - - chat - steps: - - Search for urgent offer records. - - Review and audit the urgent offer. - - Log completion in the master tracking spreadsheet. -- name: hr-audit-secure-offer-253 - title: Audit Secure Offer (hr) - description: Standard workflow to audit secure offer within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest secure offer data. - - Apply hr policies to audit the offer. - - Archive results in a secure Drive folder. -- name: hr-audit-weekly-benefits-254 - title: Audit Weekly Benefits (hr) - description: Standard workflow to audit weekly benefits within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending weekly benefits requests. - - Execute audit procedure on the designated benefits. - - Notify stakeholders via email. -- name: hr-audit-monthly-benefits-255 - title: Audit Monthly Benefits (hr) - description: Standard workflow to audit monthly benefits within the hr department. - category: hr - services: - - admin - steps: - - Search for monthly benefits records. - - Review and audit the monthly benefits. - - Send a status update to the hr team chat space. -- name: hr-audit-urgent-benefits-256 - title: Audit Urgent Benefits (hr) - description: Standard workflow to audit urgent benefits within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest urgent benefits data. - - Apply hr policies to audit the benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-audit-secure-benefits-257 - title: Audit Secure Benefits (hr) - description: Standard workflow to audit secure benefits within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending secure benefits requests. - - Execute audit procedure on the designated benefits. - - Archive results in a secure Drive folder. -- name: hr-audit-weekly-payroll-258 - title: Audit Weekly Payroll (hr) - description: Standard workflow to audit weekly payroll within the hr department. - category: hr - services: - - drive - steps: - - Search for weekly payroll records. - - Review and audit the weekly payroll. - - Notify stakeholders via email. -- name: hr-audit-monthly-payroll-259 - title: Audit Monthly Payroll (hr) - description: Standard workflow to audit monthly payroll within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest monthly payroll data. - - Apply hr policies to audit the payroll. - - Send a status update to the hr team chat space. -- name: hr-audit-urgent-payroll-260 - title: Audit Urgent Payroll (hr) - description: Standard workflow to audit urgent payroll within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending urgent payroll requests. - - Execute audit procedure on the designated payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-audit-secure-payroll-261 - title: Audit Secure Payroll (hr) - description: Standard workflow to audit secure payroll within the hr department. - category: hr - services: - - calendar - steps: - - Search for secure payroll records. - - Review and audit the secure payroll. - - Archive results in a secure Drive folder. -- name: hr-audit-weekly-performance-review-262 - title: Audit Weekly Performance Review (hr) - description: Standard workflow to audit weekly performance review within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest weekly performance review data. - - Apply hr policies to audit the performance review. - - Notify stakeholders via email. -- name: hr-audit-monthly-performance-review-263 - title: Audit Monthly Performance Review (hr) - description: Standard workflow to audit monthly performance review within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending monthly performance review requests. - - Execute audit procedure on the designated performance review. - - Send a status update to the hr team chat space. -- name: hr-audit-urgent-performance-review-264 - title: Audit Urgent Performance Review (hr) - description: Standard workflow to audit urgent performance review within the hr department. - category: hr - services: - - gmail - steps: - - Search for urgent performance review records. - - Review and audit the urgent performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-audit-secure-performance-review-265 - title: Audit Secure Performance Review (hr) - description: Standard workflow to audit secure performance review within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest secure performance review data. - - Apply hr policies to audit the performance review. - - Archive results in a secure Drive folder. -- name: hr-audit-weekly-onboarding-checklist-266 - title: Audit Weekly Onboarding Checklist (hr) - description: Standard workflow to audit weekly onboarding checklist within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending weekly onboarding checklist requests. - - Execute audit procedure on the designated onboarding checklist. - - Notify stakeholders via email. -- name: hr-audit-monthly-onboarding-checklist-267 - title: Audit Monthly Onboarding Checklist (hr) - description: Standard workflow to audit monthly onboarding checklist within the hr department. - category: hr - services: - - chat - steps: - - Search for monthly onboarding checklist records. - - Review and audit the monthly onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-audit-urgent-onboarding-checklist-268 - title: Audit Urgent Onboarding Checklist (hr) - description: Standard workflow to audit urgent onboarding checklist within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest urgent onboarding checklist data. - - Apply hr policies to audit the onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-audit-secure-onboarding-checklist-269 - title: Audit Secure Onboarding Checklist (hr) - description: Standard workflow to audit secure onboarding checklist within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending secure onboarding checklist requests. - - Execute audit procedure on the designated onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-onboard-weekly-employee-270 - title: Onboard Weekly Employee (hr) - description: Standard workflow to onboard weekly employee within the hr department. - category: hr - services: - - admin - steps: - - Search for weekly employee records. - - Review and onboard the weekly employee. - - Notify stakeholders via email. -- name: hr-onboard-monthly-employee-271 - title: Onboard Monthly Employee (hr) - description: Standard workflow to onboard monthly employee within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest monthly employee data. - - Apply hr policies to onboard the employee. - - Send a status update to the hr team chat space. -- name: hr-onboard-urgent-employee-272 - title: Onboard Urgent Employee (hr) - description: Standard workflow to onboard urgent employee within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending urgent employee requests. - - Execute onboard procedure on the designated employee. - - Log completion in the master tracking spreadsheet. -- name: hr-onboard-secure-employee-273 - title: Onboard Secure Employee (hr) - description: Standard workflow to onboard secure employee within the hr department. - category: hr - services: - - drive - steps: - - Search for secure employee records. - - Review and onboard the secure employee. - - Archive results in a secure Drive folder. -- name: hr-onboard-weekly-candidate-274 - title: Onboard Weekly Candidate (hr) - description: Standard workflow to onboard weekly candidate within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest weekly candidate data. - - Apply hr policies to onboard the candidate. - - Notify stakeholders via email. -- name: hr-onboard-monthly-candidate-275 - title: Onboard Monthly Candidate (hr) - description: Standard workflow to onboard monthly candidate within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending monthly candidate requests. - - Execute onboard procedure on the designated candidate. - - Send a status update to the hr team chat space. -- name: hr-onboard-urgent-candidate-276 - title: Onboard Urgent Candidate (hr) - description: Standard workflow to onboard urgent candidate within the hr department. - category: hr - services: - - calendar - steps: - - Search for urgent candidate records. - - Review and onboard the urgent candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-onboard-secure-candidate-277 - title: Onboard Secure Candidate (hr) - description: Standard workflow to onboard secure candidate within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest secure candidate data. - - Apply hr policies to onboard the candidate. - - Archive results in a secure Drive folder. -- name: hr-onboard-weekly-offer-278 - title: Onboard Weekly Offer (hr) - description: Standard workflow to onboard weekly offer within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending weekly offer requests. - - Execute onboard procedure on the designated offer. - - Notify stakeholders via email. -- name: hr-onboard-monthly-offer-279 - title: Onboard Monthly Offer (hr) - description: Standard workflow to onboard monthly offer within the hr department. - category: hr - services: - - gmail - steps: - - Search for monthly offer records. - - Review and onboard the monthly offer. - - Send a status update to the hr team chat space. -- name: hr-onboard-urgent-offer-280 - title: Onboard Urgent Offer (hr) - description: Standard workflow to onboard urgent offer within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest urgent offer data. - - Apply hr policies to onboard the offer. - - Log completion in the master tracking spreadsheet. -- name: hr-onboard-secure-offer-281 - title: Onboard Secure Offer (hr) - description: Standard workflow to onboard secure offer within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending secure offer requests. - - Execute onboard procedure on the designated offer. - - Archive results in a secure Drive folder. -- name: hr-onboard-weekly-benefits-282 - title: Onboard Weekly Benefits (hr) - description: Standard workflow to onboard weekly benefits within the hr department. - category: hr - services: - - chat - steps: - - Search for weekly benefits records. - - Review and onboard the weekly benefits. - - Notify stakeholders via email. -- name: hr-onboard-monthly-benefits-283 - title: Onboard Monthly Benefits (hr) - description: Standard workflow to onboard monthly benefits within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest monthly benefits data. - - Apply hr policies to onboard the benefits. - - Send a status update to the hr team chat space. -- name: hr-onboard-urgent-benefits-284 - title: Onboard Urgent Benefits (hr) - description: Standard workflow to onboard urgent benefits within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending urgent benefits requests. - - Execute onboard procedure on the designated benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-onboard-secure-benefits-285 - title: Onboard Secure Benefits (hr) - description: Standard workflow to onboard secure benefits within the hr department. - category: hr - services: - - admin - steps: - - Search for secure benefits records. - - Review and onboard the secure benefits. - - Archive results in a secure Drive folder. -- name: hr-onboard-weekly-payroll-286 - title: Onboard Weekly Payroll (hr) - description: Standard workflow to onboard weekly payroll within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest weekly payroll data. - - Apply hr policies to onboard the payroll. - - Notify stakeholders via email. -- name: hr-onboard-monthly-payroll-287 - title: Onboard Monthly Payroll (hr) - description: Standard workflow to onboard monthly payroll within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending monthly payroll requests. - - Execute onboard procedure on the designated payroll. - - Send a status update to the hr team chat space. -- name: hr-onboard-urgent-payroll-288 - title: Onboard Urgent Payroll (hr) - description: Standard workflow to onboard urgent payroll within the hr department. - category: hr - services: - - drive - steps: - - Search for urgent payroll records. - - Review and onboard the urgent payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-onboard-secure-payroll-289 - title: Onboard Secure Payroll (hr) - description: Standard workflow to onboard secure payroll within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest secure payroll data. - - Apply hr policies to onboard the payroll. - - Archive results in a secure Drive folder. -- name: hr-onboard-weekly-performance-review-290 - title: Onboard Weekly Performance Review (hr) - description: Standard workflow to onboard weekly performance review within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending weekly performance review requests. - - Execute onboard procedure on the designated performance review. - - Notify stakeholders via email. -- name: hr-onboard-monthly-performance-review-291 - title: Onboard Monthly Performance Review (hr) - description: Standard workflow to onboard monthly performance review within the hr department. - category: hr - services: - - calendar - steps: - - Search for monthly performance review records. - - Review and onboard the monthly performance review. - - Send a status update to the hr team chat space. -- name: hr-onboard-urgent-performance-review-292 - title: Onboard Urgent Performance Review (hr) - description: Standard workflow to onboard urgent performance review within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest urgent performance review data. - - Apply hr policies to onboard the performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-onboard-secure-performance-review-293 - title: Onboard Secure Performance Review (hr) - description: Standard workflow to onboard secure performance review within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending secure performance review requests. - - Execute onboard procedure on the designated performance review. - - Archive results in a secure Drive folder. -- name: hr-onboard-weekly-onboarding-checklist-294 - title: Onboard Weekly Onboarding Checklist (hr) - description: Standard workflow to onboard weekly onboarding checklist within the hr department. - category: hr - services: - - gmail - steps: - - Search for weekly onboarding checklist records. - - Review and onboard the weekly onboarding checklist. - - Notify stakeholders via email. -- name: hr-onboard-monthly-onboarding-checklist-295 - title: Onboard Monthly Onboarding Checklist (hr) - description: Standard workflow to onboard monthly onboarding checklist within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest monthly onboarding checklist data. - - Apply hr policies to onboard the onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-onboard-urgent-onboarding-checklist-296 - title: Onboard Urgent Onboarding Checklist (hr) - description: Standard workflow to onboard urgent onboarding checklist within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent onboarding checklist requests. - - Execute onboard procedure on the designated onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-onboard-secure-onboarding-checklist-297 - title: Onboard Secure Onboarding Checklist (hr) - description: Standard workflow to onboard secure onboarding checklist within the hr department. - category: hr - services: - - chat - steps: - - Search for secure onboarding checklist records. - - Review and onboard the secure onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-review-weekly-employee-298 - title: Review Weekly Employee (hr) - description: Standard workflow to review weekly employee within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest weekly employee data. - - Apply hr policies to review the employee. - - Notify stakeholders via email. -- name: hr-review-monthly-employee-299 - title: Review Monthly Employee (hr) - description: Standard workflow to review monthly employee within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending monthly employee requests. - - Execute review procedure on the designated employee. - - Send a status update to the hr team chat space. -- name: hr-review-urgent-employee-300 - title: Review Urgent Employee (hr) - description: Standard workflow to review urgent employee within the hr department. - category: hr - services: - - admin - steps: - - Search for urgent employee records. - - Review and review the urgent employee. - - Log completion in the master tracking spreadsheet. -- name: hr-review-secure-employee-301 - title: Review Secure Employee (hr) - description: Standard workflow to review secure employee within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest secure employee data. - - Apply hr policies to review the employee. - - Archive results in a secure Drive folder. -- name: hr-review-weekly-candidate-302 - title: Review Weekly Candidate (hr) - description: Standard workflow to review weekly candidate within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending weekly candidate requests. - - Execute review procedure on the designated candidate. - - Notify stakeholders via email. -- name: hr-review-monthly-candidate-303 - title: Review Monthly Candidate (hr) - description: Standard workflow to review monthly candidate within the hr department. - category: hr - services: - - drive - steps: - - Search for monthly candidate records. - - Review and review the monthly candidate. - - Send a status update to the hr team chat space. -- name: hr-review-urgent-candidate-304 - title: Review Urgent Candidate (hr) - description: Standard workflow to review urgent candidate within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest urgent candidate data. - - Apply hr policies to review the candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-review-secure-candidate-305 - title: Review Secure Candidate (hr) - description: Standard workflow to review secure candidate within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending secure candidate requests. - - Execute review procedure on the designated candidate. - - Archive results in a secure Drive folder. -- name: hr-review-weekly-offer-306 - title: Review Weekly Offer (hr) - description: Standard workflow to review weekly offer within the hr department. - category: hr - services: - - calendar - steps: - - Search for weekly offer records. - - Review and review the weekly offer. - - Notify stakeholders via email. -- name: hr-review-monthly-offer-307 - title: Review Monthly Offer (hr) - description: Standard workflow to review monthly offer within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest monthly offer data. - - Apply hr policies to review the offer. - - Send a status update to the hr team chat space. -- name: hr-review-urgent-offer-308 - title: Review Urgent Offer (hr) - description: Standard workflow to review urgent offer within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending urgent offer requests. - - Execute review procedure on the designated offer. - - Log completion in the master tracking spreadsheet. -- name: hr-review-secure-offer-309 - title: Review Secure Offer (hr) - description: Standard workflow to review secure offer within the hr department. - category: hr - services: - - gmail - steps: - - Search for secure offer records. - - Review and review the secure offer. - - Archive results in a secure Drive folder. -- name: hr-review-weekly-benefits-310 - title: Review Weekly Benefits (hr) - description: Standard workflow to review weekly benefits within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest weekly benefits data. - - Apply hr policies to review the benefits. - - Notify stakeholders via email. -- name: hr-review-monthly-benefits-311 - title: Review Monthly Benefits (hr) - description: Standard workflow to review monthly benefits within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending monthly benefits requests. - - Execute review procedure on the designated benefits. - - Send a status update to the hr team chat space. -- name: hr-review-urgent-benefits-312 - title: Review Urgent Benefits (hr) - description: Standard workflow to review urgent benefits within the hr department. - category: hr - services: - - chat - steps: - - Search for urgent benefits records. - - Review and review the urgent benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-review-secure-benefits-313 - title: Review Secure Benefits (hr) - description: Standard workflow to review secure benefits within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest secure benefits data. - - Apply hr policies to review the benefits. - - Archive results in a secure Drive folder. -- name: hr-review-weekly-payroll-314 - title: Review Weekly Payroll (hr) - description: Standard workflow to review weekly payroll within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending weekly payroll requests. - - Execute review procedure on the designated payroll. - - Notify stakeholders via email. -- name: hr-review-monthly-payroll-315 - title: Review Monthly Payroll (hr) - description: Standard workflow to review monthly payroll within the hr department. - category: hr - services: - - admin - steps: - - Search for monthly payroll records. - - Review and review the monthly payroll. - - Send a status update to the hr team chat space. -- name: hr-review-urgent-payroll-316 - title: Review Urgent Payroll (hr) - description: Standard workflow to review urgent payroll within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest urgent payroll data. - - Apply hr policies to review the payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-review-secure-payroll-317 - title: Review Secure Payroll (hr) - description: Standard workflow to review secure payroll within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending secure payroll requests. - - Execute review procedure on the designated payroll. - - Archive results in a secure Drive folder. -- name: hr-review-weekly-performance-review-318 - title: Review Weekly Performance Review (hr) - description: Standard workflow to review weekly performance review within the hr department. - category: hr - services: - - drive - steps: - - Search for weekly performance review records. - - Review and review the weekly performance review. - - Notify stakeholders via email. -- name: hr-review-monthly-performance-review-319 - title: Review Monthly Performance Review (hr) - description: Standard workflow to review monthly performance review within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest monthly performance review data. - - Apply hr policies to review the performance review. - - Send a status update to the hr team chat space. -- name: hr-review-urgent-performance-review-320 - title: Review Urgent Performance Review (hr) - description: Standard workflow to review urgent performance review within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending urgent performance review requests. - - Execute review procedure on the designated performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-review-secure-performance-review-321 - title: Review Secure Performance Review (hr) - description: Standard workflow to review secure performance review within the hr department. - category: hr - services: - - calendar - steps: - - Search for secure performance review records. - - Review and review the secure performance review. - - Archive results in a secure Drive folder. -- name: hr-review-weekly-onboarding-checklist-322 - title: Review Weekly Onboarding Checklist (hr) - description: Standard workflow to review weekly onboarding checklist within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest weekly onboarding checklist data. - - Apply hr policies to review the onboarding checklist. - - Notify stakeholders via email. -- name: hr-review-monthly-onboarding-checklist-323 - title: Review Monthly Onboarding Checklist (hr) - description: Standard workflow to review monthly onboarding checklist within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending monthly onboarding checklist requests. - - Execute review procedure on the designated onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-review-urgent-onboarding-checklist-324 - title: Review Urgent Onboarding Checklist (hr) - description: Standard workflow to review urgent onboarding checklist within the hr department. - category: hr - services: - - gmail - steps: - - Search for urgent onboarding checklist records. - - Review and review the urgent onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-review-secure-onboarding-checklist-325 - title: Review Secure Onboarding Checklist (hr) - description: Standard workflow to review secure onboarding checklist within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest secure onboarding checklist data. - - Apply hr policies to review the onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-approve-weekly-employee-326 - title: Approve Weekly Employee (hr) - description: Standard workflow to approve weekly employee within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending weekly employee requests. - - Execute approve procedure on the designated employee. - - Notify stakeholders via email. -- name: hr-approve-monthly-employee-327 - title: Approve Monthly Employee (hr) - description: Standard workflow to approve monthly employee within the hr department. - category: hr - services: - - chat - steps: - - Search for monthly employee records. - - Review and approve the monthly employee. - - Send a status update to the hr team chat space. -- name: hr-approve-urgent-employee-328 - title: Approve Urgent Employee (hr) - description: Standard workflow to approve urgent employee within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest urgent employee data. - - Apply hr policies to approve the employee. - - Log completion in the master tracking spreadsheet. -- name: hr-approve-secure-employee-329 - title: Approve Secure Employee (hr) - description: Standard workflow to approve secure employee within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending secure employee requests. - - Execute approve procedure on the designated employee. - - Archive results in a secure Drive folder. -- name: hr-approve-weekly-candidate-330 - title: Approve Weekly Candidate (hr) - description: Standard workflow to approve weekly candidate within the hr department. - category: hr - services: - - admin - steps: - - Search for weekly candidate records. - - Review and approve the weekly candidate. - - Notify stakeholders via email. -- name: hr-approve-monthly-candidate-331 - title: Approve Monthly Candidate (hr) - description: Standard workflow to approve monthly candidate within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest monthly candidate data. - - Apply hr policies to approve the candidate. - - Send a status update to the hr team chat space. -- name: hr-approve-urgent-candidate-332 - title: Approve Urgent Candidate (hr) - description: Standard workflow to approve urgent candidate within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending urgent candidate requests. - - Execute approve procedure on the designated candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-approve-secure-candidate-333 - title: Approve Secure Candidate (hr) - description: Standard workflow to approve secure candidate within the hr department. - category: hr - services: - - drive - steps: - - Search for secure candidate records. - - Review and approve the secure candidate. - - Archive results in a secure Drive folder. -- name: hr-approve-weekly-offer-334 - title: Approve Weekly Offer (hr) - description: Standard workflow to approve weekly offer within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest weekly offer data. - - Apply hr policies to approve the offer. - - Notify stakeholders via email. -- name: hr-approve-monthly-offer-335 - title: Approve Monthly Offer (hr) - description: Standard workflow to approve monthly offer within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending monthly offer requests. - - Execute approve procedure on the designated offer. - - Send a status update to the hr team chat space. -- name: hr-approve-urgent-offer-336 - title: Approve Urgent Offer (hr) - description: Standard workflow to approve urgent offer within the hr department. - category: hr - services: - - calendar - steps: - - Search for urgent offer records. - - Review and approve the urgent offer. - - Log completion in the master tracking spreadsheet. -- name: hr-approve-secure-offer-337 - title: Approve Secure Offer (hr) - description: Standard workflow to approve secure offer within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest secure offer data. - - Apply hr policies to approve the offer. - - Archive results in a secure Drive folder. -- name: hr-approve-weekly-benefits-338 - title: Approve Weekly Benefits (hr) - description: Standard workflow to approve weekly benefits within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending weekly benefits requests. - - Execute approve procedure on the designated benefits. - - Notify stakeholders via email. -- name: hr-approve-monthly-benefits-339 - title: Approve Monthly Benefits (hr) - description: Standard workflow to approve monthly benefits within the hr department. - category: hr - services: - - gmail - steps: - - Search for monthly benefits records. - - Review and approve the monthly benefits. - - Send a status update to the hr team chat space. -- name: hr-approve-urgent-benefits-340 - title: Approve Urgent Benefits (hr) - description: Standard workflow to approve urgent benefits within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest urgent benefits data. - - Apply hr policies to approve the benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-approve-secure-benefits-341 - title: Approve Secure Benefits (hr) - description: Standard workflow to approve secure benefits within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending secure benefits requests. - - Execute approve procedure on the designated benefits. - - Archive results in a secure Drive folder. -- name: hr-approve-weekly-payroll-342 - title: Approve Weekly Payroll (hr) - description: Standard workflow to approve weekly payroll within the hr department. - category: hr - services: - - chat - steps: - - Search for weekly payroll records. - - Review and approve the weekly payroll. - - Notify stakeholders via email. -- name: hr-approve-monthly-payroll-343 - title: Approve Monthly Payroll (hr) - description: Standard workflow to approve monthly payroll within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest monthly payroll data. - - Apply hr policies to approve the payroll. - - Send a status update to the hr team chat space. -- name: hr-approve-urgent-payroll-344 - title: Approve Urgent Payroll (hr) - description: Standard workflow to approve urgent payroll within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending urgent payroll requests. - - Execute approve procedure on the designated payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-approve-secure-payroll-345 - title: Approve Secure Payroll (hr) - description: Standard workflow to approve secure payroll within the hr department. - category: hr - services: - - admin - steps: - - Search for secure payroll records. - - Review and approve the secure payroll. - - Archive results in a secure Drive folder. -- name: hr-approve-weekly-performance-review-346 - title: Approve Weekly Performance Review (hr) - description: Standard workflow to approve weekly performance review within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest weekly performance review data. - - Apply hr policies to approve the performance review. - - Notify stakeholders via email. -- name: hr-approve-monthly-performance-review-347 - title: Approve Monthly Performance Review (hr) - description: Standard workflow to approve monthly performance review within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending monthly performance review requests. - - Execute approve procedure on the designated performance review. - - Send a status update to the hr team chat space. -- name: hr-approve-urgent-performance-review-348 - title: Approve Urgent Performance Review (hr) - description: Standard workflow to approve urgent performance review within the hr department. - category: hr - services: - - drive - steps: - - Search for urgent performance review records. - - Review and approve the urgent performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-approve-secure-performance-review-349 - title: Approve Secure Performance Review (hr) - description: Standard workflow to approve secure performance review within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest secure performance review data. - - Apply hr policies to approve the performance review. - - Archive results in a secure Drive folder. -- name: hr-approve-weekly-onboarding-checklist-350 - title: Approve Weekly Onboarding Checklist (hr) - description: Standard workflow to approve weekly onboarding checklist within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending weekly onboarding checklist requests. - - Execute approve procedure on the designated onboarding checklist. - - Notify stakeholders via email. -- name: hr-approve-monthly-onboarding-checklist-351 - title: Approve Monthly Onboarding Checklist (hr) - description: Standard workflow to approve monthly onboarding checklist within the hr department. - category: hr - services: - - calendar - steps: - - Search for monthly onboarding checklist records. - - Review and approve the monthly onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-approve-urgent-onboarding-checklist-352 - title: Approve Urgent Onboarding Checklist (hr) - description: Standard workflow to approve urgent onboarding checklist within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest urgent onboarding checklist data. - - Apply hr policies to approve the onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-approve-secure-onboarding-checklist-353 - title: Approve Secure Onboarding Checklist (hr) - description: Standard workflow to approve secure onboarding checklist within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending secure onboarding checklist requests. - - Execute approve procedure on the designated onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-share-weekly-employee-354 - title: Share Weekly Employee (hr) - description: Standard workflow to share weekly employee within the hr department. - category: hr - services: - - gmail - steps: - - Search for weekly employee records. - - Review and share the weekly employee. - - Notify stakeholders via email. -- name: hr-share-monthly-employee-355 - title: Share Monthly Employee (hr) - description: Standard workflow to share monthly employee within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest monthly employee data. - - Apply hr policies to share the employee. - - Send a status update to the hr team chat space. -- name: hr-share-urgent-employee-356 - title: Share Urgent Employee (hr) - description: Standard workflow to share urgent employee within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent employee requests. - - Execute share procedure on the designated employee. - - Log completion in the master tracking spreadsheet. -- name: hr-share-secure-employee-357 - title: Share Secure Employee (hr) - description: Standard workflow to share secure employee within the hr department. - category: hr - services: - - chat - steps: - - Search for secure employee records. - - Review and share the secure employee. - - Archive results in a secure Drive folder. -- name: hr-share-weekly-candidate-358 - title: Share Weekly Candidate (hr) - description: Standard workflow to share weekly candidate within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest weekly candidate data. - - Apply hr policies to share the candidate. - - Notify stakeholders via email. -- name: hr-share-monthly-candidate-359 - title: Share Monthly Candidate (hr) - description: Standard workflow to share monthly candidate within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending monthly candidate requests. - - Execute share procedure on the designated candidate. - - Send a status update to the hr team chat space. -- name: hr-share-urgent-candidate-360 - title: Share Urgent Candidate (hr) - description: Standard workflow to share urgent candidate within the hr department. - category: hr - services: - - admin - steps: - - Search for urgent candidate records. - - Review and share the urgent candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-share-secure-candidate-361 - title: Share Secure Candidate (hr) - description: Standard workflow to share secure candidate within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest secure candidate data. - - Apply hr policies to share the candidate. - - Archive results in a secure Drive folder. -- name: hr-share-weekly-offer-362 - title: Share Weekly Offer (hr) - description: Standard workflow to share weekly offer within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending weekly offer requests. - - Execute share procedure on the designated offer. - - Notify stakeholders via email. -- name: hr-share-monthly-offer-363 - title: Share Monthly Offer (hr) - description: Standard workflow to share monthly offer within the hr department. - category: hr - services: - - drive - steps: - - Search for monthly offer records. - - Review and share the monthly offer. - - Send a status update to the hr team chat space. -- name: hr-share-urgent-offer-364 - title: Share Urgent Offer (hr) - description: Standard workflow to share urgent offer within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest urgent offer data. - - Apply hr policies to share the offer. - - Log completion in the master tracking spreadsheet. -- name: hr-share-secure-offer-365 - title: Share Secure Offer (hr) - description: Standard workflow to share secure offer within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending secure offer requests. - - Execute share procedure on the designated offer. - - Archive results in a secure Drive folder. -- name: hr-share-weekly-benefits-366 - title: Share Weekly Benefits (hr) - description: Standard workflow to share weekly benefits within the hr department. - category: hr - services: - - calendar - steps: - - Search for weekly benefits records. - - Review and share the weekly benefits. - - Notify stakeholders via email. -- name: hr-share-monthly-benefits-367 - title: Share Monthly Benefits (hr) - description: Standard workflow to share monthly benefits within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest monthly benefits data. - - Apply hr policies to share the benefits. - - Send a status update to the hr team chat space. -- name: hr-share-urgent-benefits-368 - title: Share Urgent Benefits (hr) - description: Standard workflow to share urgent benefits within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending urgent benefits requests. - - Execute share procedure on the designated benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-share-secure-benefits-369 - title: Share Secure Benefits (hr) - description: Standard workflow to share secure benefits within the hr department. - category: hr - services: - - gmail - steps: - - Search for secure benefits records. - - Review and share the secure benefits. - - Archive results in a secure Drive folder. -- name: hr-share-weekly-payroll-370 - title: Share Weekly Payroll (hr) - description: Standard workflow to share weekly payroll within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest weekly payroll data. - - Apply hr policies to share the payroll. - - Notify stakeholders via email. -- name: hr-share-monthly-payroll-371 - title: Share Monthly Payroll (hr) - description: Standard workflow to share monthly payroll within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending monthly payroll requests. - - Execute share procedure on the designated payroll. - - Send a status update to the hr team chat space. -- name: hr-share-urgent-payroll-372 - title: Share Urgent Payroll (hr) - description: Standard workflow to share urgent payroll within the hr department. - category: hr - services: - - chat - steps: - - Search for urgent payroll records. - - Review and share the urgent payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-share-secure-payroll-373 - title: Share Secure Payroll (hr) - description: Standard workflow to share secure payroll within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest secure payroll data. - - Apply hr policies to share the payroll. - - Archive results in a secure Drive folder. -- name: hr-share-weekly-performance-review-374 - title: Share Weekly Performance Review (hr) - description: Standard workflow to share weekly performance review within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending weekly performance review requests. - - Execute share procedure on the designated performance review. - - Notify stakeholders via email. -- name: hr-share-monthly-performance-review-375 - title: Share Monthly Performance Review (hr) - description: Standard workflow to share monthly performance review within the hr department. - category: hr - services: - - admin - steps: - - Search for monthly performance review records. - - Review and share the monthly performance review. - - Send a status update to the hr team chat space. -- name: hr-share-urgent-performance-review-376 - title: Share Urgent Performance Review (hr) - description: Standard workflow to share urgent performance review within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest urgent performance review data. - - Apply hr policies to share the performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-share-secure-performance-review-377 - title: Share Secure Performance Review (hr) - description: Standard workflow to share secure performance review within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending secure performance review requests. - - Execute share procedure on the designated performance review. - - Archive results in a secure Drive folder. -- name: hr-share-weekly-onboarding-checklist-378 - title: Share Weekly Onboarding Checklist (hr) - description: Standard workflow to share weekly onboarding checklist within the hr department. - category: hr - services: - - drive - steps: - - Search for weekly onboarding checklist records. - - Review and share the weekly onboarding checklist. - - Notify stakeholders via email. -- name: hr-share-monthly-onboarding-checklist-379 - title: Share Monthly Onboarding Checklist (hr) - description: Standard workflow to share monthly onboarding checklist within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest monthly onboarding checklist data. - - Apply hr policies to share the onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-share-urgent-onboarding-checklist-380 - title: Share Urgent Onboarding Checklist (hr) - description: Standard workflow to share urgent onboarding checklist within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending urgent onboarding checklist requests. - - Execute share procedure on the designated onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-share-secure-onboarding-checklist-381 - title: Share Secure Onboarding Checklist (hr) - description: Standard workflow to share secure onboarding checklist within the hr department. - category: hr - services: - - calendar - steps: - - Search for secure onboarding checklist records. - - Review and share the secure onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-publish-weekly-employee-382 - title: Publish Weekly Employee (hr) - description: Standard workflow to publish weekly employee within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest weekly employee data. - - Apply hr policies to publish the employee. - - Notify stakeholders via email. -- name: hr-publish-monthly-employee-383 - title: Publish Monthly Employee (hr) - description: Standard workflow to publish monthly employee within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending monthly employee requests. - - Execute publish procedure on the designated employee. - - Send a status update to the hr team chat space. -- name: hr-publish-urgent-employee-384 - title: Publish Urgent Employee (hr) - description: Standard workflow to publish urgent employee within the hr department. - category: hr - services: - - gmail - steps: - - Search for urgent employee records. - - Review and publish the urgent employee. - - Log completion in the master tracking spreadsheet. -- name: hr-publish-secure-employee-385 - title: Publish Secure Employee (hr) - description: Standard workflow to publish secure employee within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest secure employee data. - - Apply hr policies to publish the employee. - - Archive results in a secure Drive folder. -- name: hr-publish-weekly-candidate-386 - title: Publish Weekly Candidate (hr) - description: Standard workflow to publish weekly candidate within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending weekly candidate requests. - - Execute publish procedure on the designated candidate. - - Notify stakeholders via email. -- name: hr-publish-monthly-candidate-387 - title: Publish Monthly Candidate (hr) - description: Standard workflow to publish monthly candidate within the hr department. - category: hr - services: - - chat - steps: - - Search for monthly candidate records. - - Review and publish the monthly candidate. - - Send a status update to the hr team chat space. -- name: hr-publish-urgent-candidate-388 - title: Publish Urgent Candidate (hr) - description: Standard workflow to publish urgent candidate within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest urgent candidate data. - - Apply hr policies to publish the candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-publish-secure-candidate-389 - title: Publish Secure Candidate (hr) - description: Standard workflow to publish secure candidate within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending secure candidate requests. - - Execute publish procedure on the designated candidate. - - Archive results in a secure Drive folder. -- name: hr-publish-weekly-offer-390 - title: Publish Weekly Offer (hr) - description: Standard workflow to publish weekly offer within the hr department. - category: hr - services: - - admin - steps: - - Search for weekly offer records. - - Review and publish the weekly offer. - - Notify stakeholders via email. -- name: hr-publish-monthly-offer-391 - title: Publish Monthly Offer (hr) - description: Standard workflow to publish monthly offer within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest monthly offer data. - - Apply hr policies to publish the offer. - - Send a status update to the hr team chat space. -- name: hr-publish-urgent-offer-392 - title: Publish Urgent Offer (hr) - description: Standard workflow to publish urgent offer within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending urgent offer requests. - - Execute publish procedure on the designated offer. - - Log completion in the master tracking spreadsheet. -- name: hr-publish-secure-offer-393 - title: Publish Secure Offer (hr) - description: Standard workflow to publish secure offer within the hr department. - category: hr - services: - - drive - steps: - - Search for secure offer records. - - Review and publish the secure offer. - - Archive results in a secure Drive folder. -- name: hr-publish-weekly-benefits-394 - title: Publish Weekly Benefits (hr) - description: Standard workflow to publish weekly benefits within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest weekly benefits data. - - Apply hr policies to publish the benefits. - - Notify stakeholders via email. -- name: hr-publish-monthly-benefits-395 - title: Publish Monthly Benefits (hr) - description: Standard workflow to publish monthly benefits within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending monthly benefits requests. - - Execute publish procedure on the designated benefits. - - Send a status update to the hr team chat space. -- name: hr-publish-urgent-benefits-396 - title: Publish Urgent Benefits (hr) - description: Standard workflow to publish urgent benefits within the hr department. - category: hr - services: - - calendar - steps: - - Search for urgent benefits records. - - Review and publish the urgent benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-publish-secure-benefits-397 - title: Publish Secure Benefits (hr) - description: Standard workflow to publish secure benefits within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest secure benefits data. - - Apply hr policies to publish the benefits. - - Archive results in a secure Drive folder. -- name: hr-publish-weekly-payroll-398 - title: Publish Weekly Payroll (hr) - description: Standard workflow to publish weekly payroll within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending weekly payroll requests. - - Execute publish procedure on the designated payroll. - - Notify stakeholders via email. -- name: hr-publish-monthly-payroll-399 - title: Publish Monthly Payroll (hr) - description: Standard workflow to publish monthly payroll within the hr department. - category: hr - services: - - gmail - steps: - - Search for monthly payroll records. - - Review and publish the monthly payroll. - - Send a status update to the hr team chat space. -- name: hr-publish-urgent-payroll-400 - title: Publish Urgent Payroll (hr) - description: Standard workflow to publish urgent payroll within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest urgent payroll data. - - Apply hr policies to publish the payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-publish-secure-payroll-401 - title: Publish Secure Payroll (hr) - description: Standard workflow to publish secure payroll within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending secure payroll requests. - - Execute publish procedure on the designated payroll. - - Archive results in a secure Drive folder. -- name: hr-publish-weekly-performance-review-402 - title: Publish Weekly Performance Review (hr) - description: Standard workflow to publish weekly performance review within the hr department. - category: hr - services: - - chat - steps: - - Search for weekly performance review records. - - Review and publish the weekly performance review. - - Notify stakeholders via email. -- name: hr-publish-monthly-performance-review-403 - title: Publish Monthly Performance Review (hr) - description: Standard workflow to publish monthly performance review within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest monthly performance review data. - - Apply hr policies to publish the performance review. - - Send a status update to the hr team chat space. -- name: hr-publish-urgent-performance-review-404 - title: Publish Urgent Performance Review (hr) - description: Standard workflow to publish urgent performance review within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending urgent performance review requests. - - Execute publish procedure on the designated performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-publish-secure-performance-review-405 - title: Publish Secure Performance Review (hr) - description: Standard workflow to publish secure performance review within the hr department. - category: hr - services: - - admin - steps: - - Search for secure performance review records. - - Review and publish the secure performance review. - - Archive results in a secure Drive folder. -- name: hr-publish-weekly-onboarding-checklist-406 - title: Publish Weekly Onboarding Checklist (hr) - description: Standard workflow to publish weekly onboarding checklist within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest weekly onboarding checklist data. - - Apply hr policies to publish the onboarding checklist. - - Notify stakeholders via email. -- name: hr-publish-monthly-onboarding-checklist-407 - title: Publish Monthly Onboarding Checklist (hr) - description: Standard workflow to publish monthly onboarding checklist within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending monthly onboarding checklist requests. - - Execute publish procedure on the designated onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-publish-urgent-onboarding-checklist-408 - title: Publish Urgent Onboarding Checklist (hr) - description: Standard workflow to publish urgent onboarding checklist within the hr department. - category: hr - services: - - drive - steps: - - Search for urgent onboarding checklist records. - - Review and publish the urgent onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-publish-secure-onboarding-checklist-409 - title: Publish Secure Onboarding Checklist (hr) - description: Standard workflow to publish secure onboarding checklist within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest secure onboarding checklist data. - - Apply hr policies to publish the onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-archive-weekly-employee-410 - title: Archive Weekly Employee (hr) - description: Standard workflow to archive weekly employee within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending weekly employee requests. - - Execute archive procedure on the designated employee. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly employee targets before running. -- name: hr-archive-monthly-employee-411 - title: Archive Monthly Employee (hr) - description: Standard workflow to archive monthly employee within the hr department. - category: hr - services: - - calendar - steps: - - Search for monthly employee records. - - Review and archive the monthly employee. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly employee targets before running. -- name: hr-archive-urgent-employee-412 - title: Archive Urgent Employee (hr) - description: Standard workflow to archive urgent employee within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest urgent employee data. - - Apply hr policies to archive the employee. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent employee targets before running. -- name: hr-archive-secure-employee-413 - title: Archive Secure Employee (hr) - description: Standard workflow to archive secure employee within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending secure employee requests. - - Execute archive procedure on the designated employee. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure employee targets before running. -- name: hr-archive-weekly-candidate-414 - title: Archive Weekly Candidate (hr) - description: Standard workflow to archive weekly candidate within the hr department. - category: hr - services: - - gmail - steps: - - Search for weekly candidate records. - - Review and archive the weekly candidate. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly candidate targets before running. -- name: hr-archive-monthly-candidate-415 - title: Archive Monthly Candidate (hr) - description: Standard workflow to archive monthly candidate within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest monthly candidate data. - - Apply hr policies to archive the candidate. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly candidate targets before running. -- name: hr-archive-urgent-candidate-416 - title: Archive Urgent Candidate (hr) - description: Standard workflow to archive urgent candidate within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent candidate requests. - - Execute archive procedure on the designated candidate. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent candidate targets before running. -- name: hr-archive-secure-candidate-417 - title: Archive Secure Candidate (hr) - description: Standard workflow to archive secure candidate within the hr department. - category: hr - services: - - chat - steps: - - Search for secure candidate records. - - Review and archive the secure candidate. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure candidate targets before running. -- name: hr-archive-weekly-offer-418 - title: Archive Weekly Offer (hr) - description: Standard workflow to archive weekly offer within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest weekly offer data. - - Apply hr policies to archive the offer. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly offer targets before running. -- name: hr-archive-monthly-offer-419 - title: Archive Monthly Offer (hr) - description: Standard workflow to archive monthly offer within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending monthly offer requests. - - Execute archive procedure on the designated offer. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly offer targets before running. -- name: hr-archive-urgent-offer-420 - title: Archive Urgent Offer (hr) - description: Standard workflow to archive urgent offer within the hr department. - category: hr - services: - - admin - steps: - - Search for urgent offer records. - - Review and archive the urgent offer. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent offer targets before running. -- name: hr-archive-secure-offer-421 - title: Archive Secure Offer (hr) - description: Standard workflow to archive secure offer within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest secure offer data. - - Apply hr policies to archive the offer. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure offer targets before running. -- name: hr-archive-weekly-benefits-422 - title: Archive Weekly Benefits (hr) - description: Standard workflow to archive weekly benefits within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending weekly benefits requests. - - Execute archive procedure on the designated benefits. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly benefits targets before running. -- name: hr-archive-monthly-benefits-423 - title: Archive Monthly Benefits (hr) - description: Standard workflow to archive monthly benefits within the hr department. - category: hr - services: - - drive - steps: - - Search for monthly benefits records. - - Review and archive the monthly benefits. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly benefits targets before running. -- name: hr-archive-urgent-benefits-424 - title: Archive Urgent Benefits (hr) - description: Standard workflow to archive urgent benefits within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest urgent benefits data. - - Apply hr policies to archive the benefits. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent benefits targets before running. -- name: hr-archive-secure-benefits-425 - title: Archive Secure Benefits (hr) - description: Standard workflow to archive secure benefits within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending secure benefits requests. - - Execute archive procedure on the designated benefits. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure benefits targets before running. -- name: hr-archive-weekly-payroll-426 - title: Archive Weekly Payroll (hr) - description: Standard workflow to archive weekly payroll within the hr department. - category: hr - services: - - calendar - steps: - - Search for weekly payroll records. - - Review and archive the weekly payroll. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly payroll targets before running. -- name: hr-archive-monthly-payroll-427 - title: Archive Monthly Payroll (hr) - description: Standard workflow to archive monthly payroll within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest monthly payroll data. - - Apply hr policies to archive the payroll. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly payroll targets before running. -- name: hr-archive-urgent-payroll-428 - title: Archive Urgent Payroll (hr) - description: Standard workflow to archive urgent payroll within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending urgent payroll requests. - - Execute archive procedure on the designated payroll. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent payroll targets before running. -- name: hr-archive-secure-payroll-429 - title: Archive Secure Payroll (hr) - description: Standard workflow to archive secure payroll within the hr department. - category: hr - services: - - gmail - steps: - - Search for secure payroll records. - - Review and archive the secure payroll. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure payroll targets before running. -- name: hr-archive-weekly-performance-review-430 - title: Archive Weekly Performance Review (hr) - description: Standard workflow to archive weekly performance review within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest weekly performance review data. - - Apply hr policies to archive the performance review. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly performance review targets before running. -- name: hr-archive-monthly-performance-review-431 - title: Archive Monthly Performance Review (hr) - description: Standard workflow to archive monthly performance review within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending monthly performance review requests. - - Execute archive procedure on the designated performance review. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly performance review targets before running. -- name: hr-archive-urgent-performance-review-432 - title: Archive Urgent Performance Review (hr) - description: Standard workflow to archive urgent performance review within the hr department. - category: hr - services: - - chat - steps: - - Search for urgent performance review records. - - Review and archive the urgent performance review. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent performance review targets before running. -- name: hr-archive-secure-performance-review-433 - title: Archive Secure Performance Review (hr) - description: Standard workflow to archive secure performance review within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest secure performance review data. - - Apply hr policies to archive the performance review. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure performance review targets before running. -- name: hr-archive-weekly-onboarding-checklist-434 - title: Archive Weekly Onboarding Checklist (hr) - description: Standard workflow to archive weekly onboarding checklist within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending weekly onboarding checklist requests. - - Execute archive procedure on the designated onboarding checklist. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly onboarding checklist targets before running. -- name: hr-archive-monthly-onboarding-checklist-435 - title: Archive Monthly Onboarding Checklist (hr) - description: Standard workflow to archive monthly onboarding checklist within the hr department. - category: hr - services: - - admin - steps: - - Search for monthly onboarding checklist records. - - Review and archive the monthly onboarding checklist. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly onboarding checklist targets before running. -- name: hr-archive-urgent-onboarding-checklist-436 - title: Archive Urgent Onboarding Checklist (hr) - description: Standard workflow to archive urgent onboarding checklist within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest urgent onboarding checklist data. - - Apply hr policies to archive the onboarding checklist. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent onboarding checklist targets before running. -- name: hr-archive-secure-onboarding-checklist-437 - title: Archive Secure Onboarding Checklist (hr) - description: Standard workflow to archive secure onboarding checklist within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending secure onboarding checklist requests. - - Execute archive procedure on the designated onboarding checklist. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure onboarding checklist targets before running. -- name: hr-export-weekly-employee-438 - title: Export Weekly Employee (hr) - description: Standard workflow to export weekly employee within the hr department. - category: hr - services: - - drive - steps: - - Search for weekly employee records. - - Review and export the weekly employee. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly employee targets before running. -- name: hr-export-monthly-employee-439 - title: Export Monthly Employee (hr) - description: Standard workflow to export monthly employee within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest monthly employee data. - - Apply hr policies to export the employee. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly employee targets before running. -- name: hr-export-urgent-employee-440 - title: Export Urgent Employee (hr) - description: Standard workflow to export urgent employee within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending urgent employee requests. - - Execute export procedure on the designated employee. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent employee targets before running. -- name: hr-export-secure-employee-441 - title: Export Secure Employee (hr) - description: Standard workflow to export secure employee within the hr department. - category: hr - services: - - calendar - steps: - - Search for secure employee records. - - Review and export the secure employee. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure employee targets before running. -- name: hr-export-weekly-candidate-442 - title: Export Weekly Candidate (hr) - description: Standard workflow to export weekly candidate within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest weekly candidate data. - - Apply hr policies to export the candidate. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly candidate targets before running. -- name: hr-export-monthly-candidate-443 - title: Export Monthly Candidate (hr) - description: Standard workflow to export monthly candidate within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending monthly candidate requests. - - Execute export procedure on the designated candidate. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly candidate targets before running. -- name: hr-export-urgent-candidate-444 - title: Export Urgent Candidate (hr) - description: Standard workflow to export urgent candidate within the hr department. - category: hr - services: - - gmail - steps: - - Search for urgent candidate records. - - Review and export the urgent candidate. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent candidate targets before running. -- name: hr-export-secure-candidate-445 - title: Export Secure Candidate (hr) - description: Standard workflow to export secure candidate within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest secure candidate data. - - Apply hr policies to export the candidate. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure candidate targets before running. -- name: hr-export-weekly-offer-446 - title: Export Weekly Offer (hr) - description: Standard workflow to export weekly offer within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending weekly offer requests. - - Execute export procedure on the designated offer. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly offer targets before running. -- name: hr-export-monthly-offer-447 - title: Export Monthly Offer (hr) - description: Standard workflow to export monthly offer within the hr department. - category: hr - services: - - chat - steps: - - Search for monthly offer records. - - Review and export the monthly offer. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly offer targets before running. -- name: hr-export-urgent-offer-448 - title: Export Urgent Offer (hr) - description: Standard workflow to export urgent offer within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest urgent offer data. - - Apply hr policies to export the offer. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent offer targets before running. -- name: hr-export-secure-offer-449 - title: Export Secure Offer (hr) - description: Standard workflow to export secure offer within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending secure offer requests. - - Execute export procedure on the designated offer. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure offer targets before running. -- name: hr-export-weekly-benefits-450 - title: Export Weekly Benefits (hr) - description: Standard workflow to export weekly benefits within the hr department. - category: hr - services: - - admin - steps: - - Search for weekly benefits records. - - Review and export the weekly benefits. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly benefits targets before running. -- name: hr-export-monthly-benefits-451 - title: Export Monthly Benefits (hr) - description: Standard workflow to export monthly benefits within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest monthly benefits data. - - Apply hr policies to export the benefits. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly benefits targets before running. -- name: hr-export-urgent-benefits-452 - title: Export Urgent Benefits (hr) - description: Standard workflow to export urgent benefits within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending urgent benefits requests. - - Execute export procedure on the designated benefits. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent benefits targets before running. -- name: hr-export-secure-benefits-453 - title: Export Secure Benefits (hr) - description: Standard workflow to export secure benefits within the hr department. - category: hr - services: - - drive - steps: - - Search for secure benefits records. - - Review and export the secure benefits. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure benefits targets before running. -- name: hr-export-weekly-payroll-454 - title: Export Weekly Payroll (hr) - description: Standard workflow to export weekly payroll within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest weekly payroll data. - - Apply hr policies to export the payroll. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly payroll targets before running. -- name: hr-export-monthly-payroll-455 - title: Export Monthly Payroll (hr) - description: Standard workflow to export monthly payroll within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending monthly payroll requests. - - Execute export procedure on the designated payroll. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly payroll targets before running. -- name: hr-export-urgent-payroll-456 - title: Export Urgent Payroll (hr) - description: Standard workflow to export urgent payroll within the hr department. - category: hr - services: - - calendar - steps: - - Search for urgent payroll records. - - Review and export the urgent payroll. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent payroll targets before running. -- name: hr-export-secure-payroll-457 - title: Export Secure Payroll (hr) - description: Standard workflow to export secure payroll within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest secure payroll data. - - Apply hr policies to export the payroll. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure payroll targets before running. -- name: hr-export-weekly-performance-review-458 - title: Export Weekly Performance Review (hr) - description: Standard workflow to export weekly performance review within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending weekly performance review requests. - - Execute export procedure on the designated performance review. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly performance review targets before running. -- name: hr-export-monthly-performance-review-459 - title: Export Monthly Performance Review (hr) - description: Standard workflow to export monthly performance review within the hr department. - category: hr - services: - - gmail - steps: - - Search for monthly performance review records. - - Review and export the monthly performance review. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly performance review targets before running. -- name: hr-export-urgent-performance-review-460 - title: Export Urgent Performance Review (hr) - description: Standard workflow to export urgent performance review within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest urgent performance review data. - - Apply hr policies to export the performance review. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent performance review targets before running. -- name: hr-export-secure-performance-review-461 - title: Export Secure Performance Review (hr) - description: Standard workflow to export secure performance review within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending secure performance review requests. - - Execute export procedure on the designated performance review. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure performance review targets before running. -- name: hr-export-weekly-onboarding-checklist-462 - title: Export Weekly Onboarding Checklist (hr) - description: Standard workflow to export weekly onboarding checklist within the hr department. - category: hr - services: - - chat - steps: - - Search for weekly onboarding checklist records. - - Review and export the weekly onboarding checklist. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly onboarding checklist targets before running. -- name: hr-export-monthly-onboarding-checklist-463 - title: Export Monthly Onboarding Checklist (hr) - description: Standard workflow to export monthly onboarding checklist within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest monthly onboarding checklist data. - - Apply hr policies to export the onboarding checklist. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly onboarding checklist targets before running. -- name: hr-export-urgent-onboarding-checklist-464 - title: Export Urgent Onboarding Checklist (hr) - description: Standard workflow to export urgent onboarding checklist within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending urgent onboarding checklist requests. - - Execute export procedure on the designated onboarding checklist. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent onboarding checklist targets before running. -- name: hr-export-secure-onboarding-checklist-465 - title: Export Secure Onboarding Checklist (hr) - description: Standard workflow to export secure onboarding checklist within the hr department. - category: hr - services: - - admin - steps: - - Search for secure onboarding checklist records. - - Review and export the secure onboarding checklist. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure onboarding checklist targets before running. -- name: hr-import-weekly-employee-466 - title: Import Weekly Employee (hr) - description: Standard workflow to import weekly employee within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest weekly employee data. - - Apply hr policies to import the employee. - - Notify stakeholders via email. -- name: hr-import-monthly-employee-467 - title: Import Monthly Employee (hr) - description: Standard workflow to import monthly employee within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending monthly employee requests. - - Execute import procedure on the designated employee. - - Send a status update to the hr team chat space. -- name: hr-import-urgent-employee-468 - title: Import Urgent Employee (hr) - description: Standard workflow to import urgent employee within the hr department. - category: hr - services: - - drive - steps: - - Search for urgent employee records. - - Review and import the urgent employee. - - Log completion in the master tracking spreadsheet. -- name: hr-import-secure-employee-469 - title: Import Secure Employee (hr) - description: Standard workflow to import secure employee within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest secure employee data. - - Apply hr policies to import the employee. - - Archive results in a secure Drive folder. -- name: hr-import-weekly-candidate-470 - title: Import Weekly Candidate (hr) - description: Standard workflow to import weekly candidate within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending weekly candidate requests. - - Execute import procedure on the designated candidate. - - Notify stakeholders via email. -- name: hr-import-monthly-candidate-471 - title: Import Monthly Candidate (hr) - description: Standard workflow to import monthly candidate within the hr department. - category: hr - services: - - calendar - steps: - - Search for monthly candidate records. - - Review and import the monthly candidate. - - Send a status update to the hr team chat space. -- name: hr-import-urgent-candidate-472 - title: Import Urgent Candidate (hr) - description: Standard workflow to import urgent candidate within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest urgent candidate data. - - Apply hr policies to import the candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-import-secure-candidate-473 - title: Import Secure Candidate (hr) - description: Standard workflow to import secure candidate within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending secure candidate requests. - - Execute import procedure on the designated candidate. - - Archive results in a secure Drive folder. -- name: hr-import-weekly-offer-474 - title: Import Weekly Offer (hr) - description: Standard workflow to import weekly offer within the hr department. - category: hr - services: - - gmail - steps: - - Search for weekly offer records. - - Review and import the weekly offer. - - Notify stakeholders via email. -- name: hr-import-monthly-offer-475 - title: Import Monthly Offer (hr) - description: Standard workflow to import monthly offer within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest monthly offer data. - - Apply hr policies to import the offer. - - Send a status update to the hr team chat space. -- name: hr-import-urgent-offer-476 - title: Import Urgent Offer (hr) - description: Standard workflow to import urgent offer within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent offer requests. - - Execute import procedure on the designated offer. - - Log completion in the master tracking spreadsheet. -- name: hr-import-secure-offer-477 - title: Import Secure Offer (hr) - description: Standard workflow to import secure offer within the hr department. - category: hr - services: - - chat - steps: - - Search for secure offer records. - - Review and import the secure offer. - - Archive results in a secure Drive folder. -- name: hr-import-weekly-benefits-478 - title: Import Weekly Benefits (hr) - description: Standard workflow to import weekly benefits within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest weekly benefits data. - - Apply hr policies to import the benefits. - - Notify stakeholders via email. -- name: hr-import-monthly-benefits-479 - title: Import Monthly Benefits (hr) - description: Standard workflow to import monthly benefits within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending monthly benefits requests. - - Execute import procedure on the designated benefits. - - Send a status update to the hr team chat space. -- name: hr-import-urgent-benefits-480 - title: Import Urgent Benefits (hr) - description: Standard workflow to import urgent benefits within the hr department. - category: hr - services: - - admin - steps: - - Search for urgent benefits records. - - Review and import the urgent benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-import-secure-benefits-481 - title: Import Secure Benefits (hr) - description: Standard workflow to import secure benefits within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest secure benefits data. - - Apply hr policies to import the benefits. - - Archive results in a secure Drive folder. -- name: hr-import-weekly-payroll-482 - title: Import Weekly Payroll (hr) - description: Standard workflow to import weekly payroll within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending weekly payroll requests. - - Execute import procedure on the designated payroll. - - Notify stakeholders via email. -- name: hr-import-monthly-payroll-483 - title: Import Monthly Payroll (hr) - description: Standard workflow to import monthly payroll within the hr department. - category: hr - services: - - drive - steps: - - Search for monthly payroll records. - - Review and import the monthly payroll. - - Send a status update to the hr team chat space. -- name: hr-import-urgent-payroll-484 - title: Import Urgent Payroll (hr) - description: Standard workflow to import urgent payroll within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest urgent payroll data. - - Apply hr policies to import the payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-import-secure-payroll-485 - title: Import Secure Payroll (hr) - description: Standard workflow to import secure payroll within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending secure payroll requests. - - Execute import procedure on the designated payroll. - - Archive results in a secure Drive folder. -- name: hr-import-weekly-performance-review-486 - title: Import Weekly Performance Review (hr) - description: Standard workflow to import weekly performance review within the hr department. - category: hr - services: - - calendar - steps: - - Search for weekly performance review records. - - Review and import the weekly performance review. - - Notify stakeholders via email. -- name: hr-import-monthly-performance-review-487 - title: Import Monthly Performance Review (hr) - description: Standard workflow to import monthly performance review within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest monthly performance review data. - - Apply hr policies to import the performance review. - - Send a status update to the hr team chat space. -- name: hr-import-urgent-performance-review-488 - title: Import Urgent Performance Review (hr) - description: Standard workflow to import urgent performance review within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending urgent performance review requests. - - Execute import procedure on the designated performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-import-secure-performance-review-489 - title: Import Secure Performance Review (hr) - description: Standard workflow to import secure performance review within the hr department. - category: hr - services: - - gmail - steps: - - Search for secure performance review records. - - Review and import the secure performance review. - - Archive results in a secure Drive folder. -- name: hr-import-weekly-onboarding-checklist-490 - title: Import Weekly Onboarding Checklist (hr) - description: Standard workflow to import weekly onboarding checklist within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest weekly onboarding checklist data. - - Apply hr policies to import the onboarding checklist. - - Notify stakeholders via email. -- name: hr-import-monthly-onboarding-checklist-491 - title: Import Monthly Onboarding Checklist (hr) - description: Standard workflow to import monthly onboarding checklist within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending monthly onboarding checklist requests. - - Execute import procedure on the designated onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-import-urgent-onboarding-checklist-492 - title: Import Urgent Onboarding Checklist (hr) - description: Standard workflow to import urgent onboarding checklist within the hr department. - category: hr - services: - - chat - steps: - - Search for urgent onboarding checklist records. - - Review and import the urgent onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-import-secure-onboarding-checklist-493 - title: Import Secure Onboarding Checklist (hr) - description: Standard workflow to import secure onboarding checklist within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest secure onboarding checklist data. - - Apply hr policies to import the onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-sync-weekly-employee-494 - title: Sync Weekly Employee (hr) - description: Standard workflow to sync weekly employee within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending weekly employee requests. - - Execute sync procedure on the designated employee. - - Notify stakeholders via email. -- name: hr-sync-monthly-employee-495 - title: Sync Monthly Employee (hr) - description: Standard workflow to sync monthly employee within the hr department. - category: hr - services: - - admin - steps: - - Search for monthly employee records. - - Review and sync the monthly employee. - - Send a status update to the hr team chat space. -- name: hr-sync-urgent-employee-496 - title: Sync Urgent Employee (hr) - description: Standard workflow to sync urgent employee within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest urgent employee data. - - Apply hr policies to sync the employee. - - Log completion in the master tracking spreadsheet. -- name: hr-sync-secure-employee-497 - title: Sync Secure Employee (hr) - description: Standard workflow to sync secure employee within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending secure employee requests. - - Execute sync procedure on the designated employee. - - Archive results in a secure Drive folder. -- name: hr-sync-weekly-candidate-498 - title: Sync Weekly Candidate (hr) - description: Standard workflow to sync weekly candidate within the hr department. - category: hr - services: - - drive - steps: - - Search for weekly candidate records. - - Review and sync the weekly candidate. - - Notify stakeholders via email. -- name: hr-sync-monthly-candidate-499 - title: Sync Monthly Candidate (hr) - description: Standard workflow to sync monthly candidate within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest monthly candidate data. - - Apply hr policies to sync the candidate. - - Send a status update to the hr team chat space. -- name: hr-sync-urgent-candidate-500 - title: Sync Urgent Candidate (hr) - description: Standard workflow to sync urgent candidate within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending urgent candidate requests. - - Execute sync procedure on the designated candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-sync-secure-candidate-501 - title: Sync Secure Candidate (hr) - description: Standard workflow to sync secure candidate within the hr department. - category: hr - services: - - calendar - steps: - - Search for secure candidate records. - - Review and sync the secure candidate. - - Archive results in a secure Drive folder. -- name: hr-sync-weekly-offer-502 - title: Sync Weekly Offer (hr) - description: Standard workflow to sync weekly offer within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest weekly offer data. - - Apply hr policies to sync the offer. - - Notify stakeholders via email. -- name: hr-sync-monthly-offer-503 - title: Sync Monthly Offer (hr) - description: Standard workflow to sync monthly offer within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending monthly offer requests. - - Execute sync procedure on the designated offer. - - Send a status update to the hr team chat space. -- name: hr-sync-urgent-offer-504 - title: Sync Urgent Offer (hr) - description: Standard workflow to sync urgent offer within the hr department. - category: hr - services: - - gmail - steps: - - Search for urgent offer records. - - Review and sync the urgent offer. - - Log completion in the master tracking spreadsheet. -- name: hr-sync-secure-offer-505 - title: Sync Secure Offer (hr) - description: Standard workflow to sync secure offer within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest secure offer data. - - Apply hr policies to sync the offer. - - Archive results in a secure Drive folder. -- name: hr-sync-weekly-benefits-506 - title: Sync Weekly Benefits (hr) - description: Standard workflow to sync weekly benefits within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending weekly benefits requests. - - Execute sync procedure on the designated benefits. - - Notify stakeholders via email. -- name: hr-sync-monthly-benefits-507 - title: Sync Monthly Benefits (hr) - description: Standard workflow to sync monthly benefits within the hr department. - category: hr - services: - - chat - steps: - - Search for monthly benefits records. - - Review and sync the monthly benefits. - - Send a status update to the hr team chat space. -- name: hr-sync-urgent-benefits-508 - title: Sync Urgent Benefits (hr) - description: Standard workflow to sync urgent benefits within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest urgent benefits data. - - Apply hr policies to sync the benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-sync-secure-benefits-509 - title: Sync Secure Benefits (hr) - description: Standard workflow to sync secure benefits within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending secure benefits requests. - - Execute sync procedure on the designated benefits. - - Archive results in a secure Drive folder. -- name: hr-sync-weekly-payroll-510 - title: Sync Weekly Payroll (hr) - description: Standard workflow to sync weekly payroll within the hr department. - category: hr - services: - - admin - steps: - - Search for weekly payroll records. - - Review and sync the weekly payroll. - - Notify stakeholders via email. -- name: hr-sync-monthly-payroll-511 - title: Sync Monthly Payroll (hr) - description: Standard workflow to sync monthly payroll within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest monthly payroll data. - - Apply hr policies to sync the payroll. - - Send a status update to the hr team chat space. -- name: hr-sync-urgent-payroll-512 - title: Sync Urgent Payroll (hr) - description: Standard workflow to sync urgent payroll within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending urgent payroll requests. - - Execute sync procedure on the designated payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-sync-secure-payroll-513 - title: Sync Secure Payroll (hr) - description: Standard workflow to sync secure payroll within the hr department. - category: hr - services: - - drive - steps: - - Search for secure payroll records. - - Review and sync the secure payroll. - - Archive results in a secure Drive folder. -- name: hr-sync-weekly-performance-review-514 - title: Sync Weekly Performance Review (hr) - description: Standard workflow to sync weekly performance review within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest weekly performance review data. - - Apply hr policies to sync the performance review. - - Notify stakeholders via email. -- name: hr-sync-monthly-performance-review-515 - title: Sync Monthly Performance Review (hr) - description: Standard workflow to sync monthly performance review within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending monthly performance review requests. - - Execute sync procedure on the designated performance review. - - Send a status update to the hr team chat space. -- name: hr-sync-urgent-performance-review-516 - title: Sync Urgent Performance Review (hr) - description: Standard workflow to sync urgent performance review within the hr department. - category: hr - services: - - calendar - steps: - - Search for urgent performance review records. - - Review and sync the urgent performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-sync-secure-performance-review-517 - title: Sync Secure Performance Review (hr) - description: Standard workflow to sync secure performance review within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest secure performance review data. - - Apply hr policies to sync the performance review. - - Archive results in a secure Drive folder. -- name: hr-sync-weekly-onboarding-checklist-518 - title: Sync Weekly Onboarding Checklist (hr) - description: Standard workflow to sync weekly onboarding checklist within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending weekly onboarding checklist requests. - - Execute sync procedure on the designated onboarding checklist. - - Notify stakeholders via email. -- name: hr-sync-monthly-onboarding-checklist-519 - title: Sync Monthly Onboarding Checklist (hr) - description: Standard workflow to sync monthly onboarding checklist within the hr department. - category: hr - services: - - gmail - steps: - - Search for monthly onboarding checklist records. - - Review and sync the monthly onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-sync-urgent-onboarding-checklist-520 - title: Sync Urgent Onboarding Checklist (hr) - description: Standard workflow to sync urgent onboarding checklist within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest urgent onboarding checklist data. - - Apply hr policies to sync the onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-sync-secure-onboarding-checklist-521 - title: Sync Secure Onboarding Checklist (hr) - description: Standard workflow to sync secure onboarding checklist within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending secure onboarding checklist requests. - - Execute sync procedure on the designated onboarding checklist. - - Archive results in a secure Drive folder. -- name: hr-migrate-weekly-employee-522 - title: Migrate Weekly Employee (hr) - description: Standard workflow to migrate weekly employee within the hr department. - category: hr - services: - - chat - steps: - - Search for weekly employee records. - - Review and migrate the weekly employee. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly employee targets before running. -- name: hr-migrate-monthly-employee-523 - title: Migrate Monthly Employee (hr) - description: Standard workflow to migrate monthly employee within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest monthly employee data. - - Apply hr policies to migrate the employee. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly employee targets before running. -- name: hr-migrate-urgent-employee-524 - title: Migrate Urgent Employee (hr) - description: Standard workflow to migrate urgent employee within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending urgent employee requests. - - Execute migrate procedure on the designated employee. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent employee targets before running. -- name: hr-migrate-secure-employee-525 - title: Migrate Secure Employee (hr) - description: Standard workflow to migrate secure employee within the hr department. - category: hr - services: - - admin - steps: - - Search for secure employee records. - - Review and migrate the secure employee. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure employee targets before running. -- name: hr-migrate-weekly-candidate-526 - title: Migrate Weekly Candidate (hr) - description: Standard workflow to migrate weekly candidate within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest weekly candidate data. - - Apply hr policies to migrate the candidate. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly candidate targets before running. -- name: hr-migrate-monthly-candidate-527 - title: Migrate Monthly Candidate (hr) - description: Standard workflow to migrate monthly candidate within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending monthly candidate requests. - - Execute migrate procedure on the designated candidate. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly candidate targets before running. -- name: hr-migrate-urgent-candidate-528 - title: Migrate Urgent Candidate (hr) - description: Standard workflow to migrate urgent candidate within the hr department. - category: hr - services: - - drive - steps: - - Search for urgent candidate records. - - Review and migrate the urgent candidate. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent candidate targets before running. -- name: hr-migrate-secure-candidate-529 - title: Migrate Secure Candidate (hr) - description: Standard workflow to migrate secure candidate within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest secure candidate data. - - Apply hr policies to migrate the candidate. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure candidate targets before running. -- name: hr-migrate-weekly-offer-530 - title: Migrate Weekly Offer (hr) - description: Standard workflow to migrate weekly offer within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending weekly offer requests. - - Execute migrate procedure on the designated offer. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly offer targets before running. -- name: hr-migrate-monthly-offer-531 - title: Migrate Monthly Offer (hr) - description: Standard workflow to migrate monthly offer within the hr department. - category: hr - services: - - calendar - steps: - - Search for monthly offer records. - - Review and migrate the monthly offer. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly offer targets before running. -- name: hr-migrate-urgent-offer-532 - title: Migrate Urgent Offer (hr) - description: Standard workflow to migrate urgent offer within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest urgent offer data. - - Apply hr policies to migrate the offer. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent offer targets before running. -- name: hr-migrate-secure-offer-533 - title: Migrate Secure Offer (hr) - description: Standard workflow to migrate secure offer within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending secure offer requests. - - Execute migrate procedure on the designated offer. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure offer targets before running. -- name: hr-migrate-weekly-benefits-534 - title: Migrate Weekly Benefits (hr) - description: Standard workflow to migrate weekly benefits within the hr department. - category: hr - services: - - gmail - steps: - - Search for weekly benefits records. - - Review and migrate the weekly benefits. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly benefits targets before running. -- name: hr-migrate-monthly-benefits-535 - title: Migrate Monthly Benefits (hr) - description: Standard workflow to migrate monthly benefits within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest monthly benefits data. - - Apply hr policies to migrate the benefits. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly benefits targets before running. -- name: hr-migrate-urgent-benefits-536 - title: Migrate Urgent Benefits (hr) - description: Standard workflow to migrate urgent benefits within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent benefits requests. - - Execute migrate procedure on the designated benefits. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent benefits targets before running. -- name: hr-migrate-secure-benefits-537 - title: Migrate Secure Benefits (hr) - description: Standard workflow to migrate secure benefits within the hr department. - category: hr - services: - - chat - steps: - - Search for secure benefits records. - - Review and migrate the secure benefits. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure benefits targets before running. -- name: hr-migrate-weekly-payroll-538 - title: Migrate Weekly Payroll (hr) - description: Standard workflow to migrate weekly payroll within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest weekly payroll data. - - Apply hr policies to migrate the payroll. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly payroll targets before running. -- name: hr-migrate-monthly-payroll-539 - title: Migrate Monthly Payroll (hr) - description: Standard workflow to migrate monthly payroll within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending monthly payroll requests. - - Execute migrate procedure on the designated payroll. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly payroll targets before running. -- name: hr-migrate-urgent-payroll-540 - title: Migrate Urgent Payroll (hr) - description: Standard workflow to migrate urgent payroll within the hr department. - category: hr - services: - - admin - steps: - - Search for urgent payroll records. - - Review and migrate the urgent payroll. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent payroll targets before running. -- name: hr-migrate-secure-payroll-541 - title: Migrate Secure Payroll (hr) - description: Standard workflow to migrate secure payroll within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest secure payroll data. - - Apply hr policies to migrate the payroll. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure payroll targets before running. -- name: hr-migrate-weekly-performance-review-542 - title: Migrate Weekly Performance Review (hr) - description: Standard workflow to migrate weekly performance review within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending weekly performance review requests. - - Execute migrate procedure on the designated performance review. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly performance review targets before running. -- name: hr-migrate-monthly-performance-review-543 - title: Migrate Monthly Performance Review (hr) - description: Standard workflow to migrate monthly performance review within the hr department. - category: hr - services: - - drive - steps: - - Search for monthly performance review records. - - Review and migrate the monthly performance review. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly performance review targets before running. -- name: hr-migrate-urgent-performance-review-544 - title: Migrate Urgent Performance Review (hr) - description: Standard workflow to migrate urgent performance review within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest urgent performance review data. - - Apply hr policies to migrate the performance review. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent performance review targets before running. -- name: hr-migrate-secure-performance-review-545 - title: Migrate Secure Performance Review (hr) - description: Standard workflow to migrate secure performance review within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending secure performance review requests. - - Execute migrate procedure on the designated performance review. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure performance review targets before running. -- name: hr-migrate-weekly-onboarding-checklist-546 - title: Migrate Weekly Onboarding Checklist (hr) - description: Standard workflow to migrate weekly onboarding checklist within the hr department. - category: hr - services: - - calendar - steps: - - Search for weekly onboarding checklist records. - - Review and migrate the weekly onboarding checklist. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly onboarding checklist targets before running. -- name: hr-migrate-monthly-onboarding-checklist-547 - title: Migrate Monthly Onboarding Checklist (hr) - description: Standard workflow to migrate monthly onboarding checklist within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest monthly onboarding checklist data. - - Apply hr policies to migrate the onboarding checklist. - - Send a status update to the hr team chat space. - caution: Action involves bulk data manipulation. Confirm monthly onboarding checklist targets before running. -- name: hr-migrate-urgent-onboarding-checklist-548 - title: Migrate Urgent Onboarding Checklist (hr) - description: Standard workflow to migrate urgent onboarding checklist within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending urgent onboarding checklist requests. - - Execute migrate procedure on the designated onboarding checklist. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent onboarding checklist targets before running. -- name: hr-migrate-secure-onboarding-checklist-549 - title: Migrate Secure Onboarding Checklist (hr) - description: Standard workflow to migrate secure onboarding checklist within the hr department. - category: hr - services: - - gmail - steps: - - Search for secure onboarding checklist records. - - Review and migrate the secure onboarding checklist. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure onboarding checklist targets before running. -- name: hr-backup-weekly-employee-550 - title: Backup Weekly Employee (hr) - description: Standard workflow to backup weekly employee within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest weekly employee data. - - Apply hr policies to backup the employee. - - Notify stakeholders via email. -- name: hr-backup-monthly-employee-551 - title: Backup Monthly Employee (hr) - description: Standard workflow to backup monthly employee within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending monthly employee requests. - - Execute backup procedure on the designated employee. - - Send a status update to the hr team chat space. -- name: hr-backup-urgent-employee-552 - title: Backup Urgent Employee (hr) - description: Standard workflow to backup urgent employee within the hr department. - category: hr - services: - - chat - steps: - - Search for urgent employee records. - - Review and backup the urgent employee. - - Log completion in the master tracking spreadsheet. -- name: hr-backup-secure-employee-553 - title: Backup Secure Employee (hr) - description: Standard workflow to backup secure employee within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest secure employee data. - - Apply hr policies to backup the employee. - - Archive results in a secure Drive folder. -- name: hr-backup-weekly-candidate-554 - title: Backup Weekly Candidate (hr) - description: Standard workflow to backup weekly candidate within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending weekly candidate requests. - - Execute backup procedure on the designated candidate. - - Notify stakeholders via email. -- name: hr-backup-monthly-candidate-555 - title: Backup Monthly Candidate (hr) - description: Standard workflow to backup monthly candidate within the hr department. - category: hr - services: - - admin - steps: - - Search for monthly candidate records. - - Review and backup the monthly candidate. - - Send a status update to the hr team chat space. -- name: hr-backup-urgent-candidate-556 - title: Backup Urgent Candidate (hr) - description: Standard workflow to backup urgent candidate within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest urgent candidate data. - - Apply hr policies to backup the candidate. - - Log completion in the master tracking spreadsheet. -- name: hr-backup-secure-candidate-557 - title: Backup Secure Candidate (hr) - description: Standard workflow to backup secure candidate within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending secure candidate requests. - - Execute backup procedure on the designated candidate. - - Archive results in a secure Drive folder. -- name: hr-backup-weekly-offer-558 - title: Backup Weekly Offer (hr) - description: Standard workflow to backup weekly offer within the hr department. - category: hr - services: - - drive - steps: - - Search for weekly offer records. - - Review and backup the weekly offer. - - Notify stakeholders via email. -- name: hr-backup-monthly-offer-559 - title: Backup Monthly Offer (hr) - description: Standard workflow to backup monthly offer within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest monthly offer data. - - Apply hr policies to backup the offer. - - Send a status update to the hr team chat space. -- name: hr-backup-urgent-offer-560 - title: Backup Urgent Offer (hr) - description: Standard workflow to backup urgent offer within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending urgent offer requests. - - Execute backup procedure on the designated offer. - - Log completion in the master tracking spreadsheet. -- name: hr-backup-secure-offer-561 - title: Backup Secure Offer (hr) - description: Standard workflow to backup secure offer within the hr department. - category: hr - services: - - calendar - steps: - - Search for secure offer records. - - Review and backup the secure offer. - - Archive results in a secure Drive folder. -- name: hr-backup-weekly-benefits-562 - title: Backup Weekly Benefits (hr) - description: Standard workflow to backup weekly benefits within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest weekly benefits data. - - Apply hr policies to backup the benefits. - - Notify stakeholders via email. -- name: hr-backup-monthly-benefits-563 - title: Backup Monthly Benefits (hr) - description: Standard workflow to backup monthly benefits within the hr department. - category: hr - services: - - drive - - gmail - - admin - steps: - - Check system for pending monthly benefits requests. - - Execute backup procedure on the designated benefits. - - Send a status update to the hr team chat space. -- name: hr-backup-urgent-benefits-564 - title: Backup Urgent Benefits (hr) - description: Standard workflow to backup urgent benefits within the hr department. - category: hr - services: - - gmail - steps: - - Search for urgent benefits records. - - Review and backup the urgent benefits. - - Log completion in the master tracking spreadsheet. -- name: hr-backup-secure-benefits-565 - title: Backup Secure Benefits (hr) - description: Standard workflow to backup secure benefits within the hr department. - category: hr - services: - - admin - - calendar - steps: - - Fetch latest secure benefits data. - - Apply hr policies to backup the benefits. - - Archive results in a secure Drive folder. -- name: hr-backup-weekly-payroll-566 - title: Backup Weekly Payroll (hr) - description: Standard workflow to backup weekly payroll within the hr department. - category: hr - services: - - calendar - - chat - - drive - steps: - - Check system for pending weekly payroll requests. - - Execute backup procedure on the designated payroll. - - Notify stakeholders via email. -- name: hr-backup-monthly-payroll-567 - title: Backup Monthly Payroll (hr) - description: Standard workflow to backup monthly payroll within the hr department. - category: hr - services: - - chat - steps: - - Search for monthly payroll records. - - Review and backup the monthly payroll. - - Send a status update to the hr team chat space. -- name: hr-backup-urgent-payroll-568 - title: Backup Urgent Payroll (hr) - description: Standard workflow to backup urgent payroll within the hr department. - category: hr - services: - - drive - - gmail - steps: - - Fetch latest urgent payroll data. - - Apply hr policies to backup the payroll. - - Log completion in the master tracking spreadsheet. -- name: hr-backup-secure-payroll-569 - title: Backup Secure Payroll (hr) - description: Standard workflow to backup secure payroll within the hr department. - category: hr - services: - - gmail - - admin - - calendar - steps: - - Check system for pending secure payroll requests. - - Execute backup procedure on the designated payroll. - - Archive results in a secure Drive folder. -- name: hr-backup-weekly-performance-review-570 - title: Backup Weekly Performance Review (hr) - description: Standard workflow to backup weekly performance review within the hr department. - category: hr - services: - - admin - steps: - - Search for weekly performance review records. - - Review and backup the weekly performance review. - - Notify stakeholders via email. -- name: hr-backup-monthly-performance-review-571 - title: Backup Monthly Performance Review (hr) - description: Standard workflow to backup monthly performance review within the hr department. - category: hr - services: - - calendar - - chat - steps: - - Fetch latest monthly performance review data. - - Apply hr policies to backup the performance review. - - Send a status update to the hr team chat space. -- name: hr-backup-urgent-performance-review-572 - title: Backup Urgent Performance Review (hr) - description: Standard workflow to backup urgent performance review within the hr department. - category: hr - services: - - chat - - drive - - gmail - steps: - - Check system for pending urgent performance review requests. - - Execute backup procedure on the designated performance review. - - Log completion in the master tracking spreadsheet. -- name: hr-backup-secure-performance-review-573 - title: Backup Secure Performance Review (hr) - description: Standard workflow to backup secure performance review within the hr department. - category: hr - services: - - drive - steps: - - Search for secure performance review records. - - Review and backup the secure performance review. - - Archive results in a secure Drive folder. -- name: hr-backup-weekly-onboarding-checklist-574 - title: Backup Weekly Onboarding Checklist (hr) - description: Standard workflow to backup weekly onboarding checklist within the hr department. - category: hr - services: - - gmail - - admin - steps: - - Fetch latest weekly onboarding checklist data. - - Apply hr policies to backup the onboarding checklist. - - Notify stakeholders via email. -- name: hr-backup-monthly-onboarding-checklist-575 - title: Backup Monthly Onboarding Checklist (hr) - description: Standard workflow to backup monthly onboarding checklist within the hr department. - category: hr - services: - - admin - - calendar - - chat - steps: - - Check system for pending monthly onboarding checklist requests. - - Execute backup procedure on the designated onboarding checklist. - - Send a status update to the hr team chat space. -- name: hr-backup-urgent-onboarding-checklist-576 - title: Backup Urgent Onboarding Checklist (hr) - description: Standard workflow to backup urgent onboarding checklist within the hr department. - category: hr - services: - - calendar - steps: - - Search for urgent onboarding checklist records. - - Review and backup the urgent onboarding checklist. - - Log completion in the master tracking spreadsheet. -- name: hr-backup-secure-onboarding-checklist-577 - title: Backup Secure Onboarding Checklist (hr) - description: Standard workflow to backup secure onboarding checklist within the hr department. - category: hr - services: - - chat - - drive - steps: - - Fetch latest secure onboarding checklist data. - - Apply hr policies to backup the onboarding checklist. - - Archive results in a secure Drive folder. -- name: marketing-audit-weekly-campaign-578 - title: Audit Weekly Campaign (marketing) - description: Standard workflow to audit weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly campaign requests. - - Execute audit procedure on the designated campaign. - - Notify stakeholders via email. -- name: marketing-audit-monthly-campaign-579 - title: Audit Monthly Campaign (marketing) - description: Standard workflow to audit monthly campaign within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly campaign records. - - Review and audit the monthly campaign. - - Send a status update to the marketing team chat space. -- name: marketing-audit-urgent-campaign-580 - title: Audit Urgent Campaign (marketing) - description: Standard workflow to audit urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent campaign data. - - Apply marketing policies to audit the campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-audit-secure-campaign-581 - title: Audit Secure Campaign (marketing) - description: Standard workflow to audit secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure campaign requests. - - Execute audit procedure on the designated campaign. - - Archive results in a secure Drive folder. -- name: marketing-audit-weekly-asset-582 - title: Audit Weekly Asset (marketing) - description: Standard workflow to audit weekly asset within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly asset records. - - Review and audit the weekly asset. - - Notify stakeholders via email. -- name: marketing-audit-monthly-asset-583 - title: Audit Monthly Asset (marketing) - description: Standard workflow to audit monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly asset data. - - Apply marketing policies to audit the asset. - - Send a status update to the marketing team chat space. -- name: marketing-audit-urgent-asset-584 - title: Audit Urgent Asset (marketing) - description: Standard workflow to audit urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent asset requests. - - Execute audit procedure on the designated asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-audit-secure-asset-585 - title: Audit Secure Asset (marketing) - description: Standard workflow to audit secure asset within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure asset records. - - Review and audit the secure asset. - - Archive results in a secure Drive folder. -- name: marketing-audit-weekly-newsletter-586 - title: Audit Weekly Newsletter (marketing) - description: Standard workflow to audit weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly newsletter data. - - Apply marketing policies to audit the newsletter. - - Notify stakeholders via email. -- name: marketing-audit-monthly-newsletter-587 - title: Audit Monthly Newsletter (marketing) - description: Standard workflow to audit monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly newsletter requests. - - Execute audit procedure on the designated newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-audit-urgent-newsletter-588 - title: Audit Urgent Newsletter (marketing) - description: Standard workflow to audit urgent newsletter within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent newsletter records. - - Review and audit the urgent newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-audit-secure-newsletter-589 - title: Audit Secure Newsletter (marketing) - description: Standard workflow to audit secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure newsletter data. - - Apply marketing policies to audit the newsletter. - - Archive results in a secure Drive folder. -- name: marketing-audit-weekly-event-590 - title: Audit Weekly Event (marketing) - description: Standard workflow to audit weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly event requests. - - Execute audit procedure on the designated event. - - Notify stakeholders via email. -- name: marketing-audit-monthly-event-591 - title: Audit Monthly Event (marketing) - description: Standard workflow to audit monthly event within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly event records. - - Review and audit the monthly event. - - Send a status update to the marketing team chat space. -- name: marketing-audit-urgent-event-592 - title: Audit Urgent Event (marketing) - description: Standard workflow to audit urgent event within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent event data. - - Apply marketing policies to audit the event. - - Log completion in the master tracking spreadsheet. -- name: marketing-audit-secure-event-593 - title: Audit Secure Event (marketing) - description: Standard workflow to audit secure event within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure event requests. - - Execute audit procedure on the designated event. - - Archive results in a secure Drive folder. -- name: marketing-audit-weekly-social-post-594 - title: Audit Weekly Social Post (marketing) - description: Standard workflow to audit weekly social post within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly social post records. - - Review and audit the weekly social post. - - Notify stakeholders via email. -- name: marketing-audit-monthly-social-post-595 - title: Audit Monthly Social Post (marketing) - description: Standard workflow to audit monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly social post data. - - Apply marketing policies to audit the social post. - - Send a status update to the marketing team chat space. -- name: marketing-audit-urgent-social-post-596 - title: Audit Urgent Social Post (marketing) - description: Standard workflow to audit urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent social post requests. - - Execute audit procedure on the designated social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-audit-secure-social-post-597 - title: Audit Secure Social Post (marketing) - description: Standard workflow to audit secure social post within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure social post records. - - Review and audit the secure social post. - - Archive results in a secure Drive folder. -- name: marketing-audit-weekly-press-release-598 - title: Audit Weekly Press Release (marketing) - description: Standard workflow to audit weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly press release data. - - Apply marketing policies to audit the press release. - - Notify stakeholders via email. -- name: marketing-audit-monthly-press-release-599 - title: Audit Monthly Press Release (marketing) - description: Standard workflow to audit monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly press release requests. - - Execute audit procedure on the designated press release. - - Send a status update to the marketing team chat space. -- name: marketing-audit-urgent-press-release-600 - title: Audit Urgent Press Release (marketing) - description: Standard workflow to audit urgent press release within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent press release records. - - Review and audit the urgent press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-audit-secure-press-release-601 - title: Audit Secure Press Release (marketing) - description: Standard workflow to audit secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure press release data. - - Apply marketing policies to audit the press release. - - Archive results in a secure Drive folder. -- name: marketing-audit-weekly-brand-guidelines-602 - title: Audit Weekly Brand Guidelines (marketing) - description: Standard workflow to audit weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly brand guidelines requests. - - Execute audit procedure on the designated brand guidelines. - - Notify stakeholders via email. -- name: marketing-audit-monthly-brand-guidelines-603 - title: Audit Monthly Brand Guidelines (marketing) - description: Standard workflow to audit monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly brand guidelines records. - - Review and audit the monthly brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-audit-urgent-brand-guidelines-604 - title: Audit Urgent Brand Guidelines (marketing) - description: Standard workflow to audit urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent brand guidelines data. - - Apply marketing policies to audit the brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-audit-secure-brand-guidelines-605 - title: Audit Secure Brand Guidelines (marketing) - description: Standard workflow to audit secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure brand guidelines requests. - - Execute audit procedure on the designated brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-onboard-weekly-campaign-606 - title: Onboard Weekly Campaign (marketing) - description: Standard workflow to onboard weekly campaign within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly campaign records. - - Review and onboard the weekly campaign. - - Notify stakeholders via email. -- name: marketing-onboard-monthly-campaign-607 - title: Onboard Monthly Campaign (marketing) - description: Standard workflow to onboard monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly campaign data. - - Apply marketing policies to onboard the campaign. - - Send a status update to the marketing team chat space. -- name: marketing-onboard-urgent-campaign-608 - title: Onboard Urgent Campaign (marketing) - description: Standard workflow to onboard urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent campaign requests. - - Execute onboard procedure on the designated campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-onboard-secure-campaign-609 - title: Onboard Secure Campaign (marketing) - description: Standard workflow to onboard secure campaign within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure campaign records. - - Review and onboard the secure campaign. - - Archive results in a secure Drive folder. -- name: marketing-onboard-weekly-asset-610 - title: Onboard Weekly Asset (marketing) - description: Standard workflow to onboard weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly asset data. - - Apply marketing policies to onboard the asset. - - Notify stakeholders via email. -- name: marketing-onboard-monthly-asset-611 - title: Onboard Monthly Asset (marketing) - description: Standard workflow to onboard monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly asset requests. - - Execute onboard procedure on the designated asset. - - Send a status update to the marketing team chat space. -- name: marketing-onboard-urgent-asset-612 - title: Onboard Urgent Asset (marketing) - description: Standard workflow to onboard urgent asset within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent asset records. - - Review and onboard the urgent asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-onboard-secure-asset-613 - title: Onboard Secure Asset (marketing) - description: Standard workflow to onboard secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure asset data. - - Apply marketing policies to onboard the asset. - - Archive results in a secure Drive folder. -- name: marketing-onboard-weekly-newsletter-614 - title: Onboard Weekly Newsletter (marketing) - description: Standard workflow to onboard weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly newsletter requests. - - Execute onboard procedure on the designated newsletter. - - Notify stakeholders via email. -- name: marketing-onboard-monthly-newsletter-615 - title: Onboard Monthly Newsletter (marketing) - description: Standard workflow to onboard monthly newsletter within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly newsletter records. - - Review and onboard the monthly newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-onboard-urgent-newsletter-616 - title: Onboard Urgent Newsletter (marketing) - description: Standard workflow to onboard urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent newsletter data. - - Apply marketing policies to onboard the newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-onboard-secure-newsletter-617 - title: Onboard Secure Newsletter (marketing) - description: Standard workflow to onboard secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure newsletter requests. - - Execute onboard procedure on the designated newsletter. - - Archive results in a secure Drive folder. -- name: marketing-onboard-weekly-event-618 - title: Onboard Weekly Event (marketing) - description: Standard workflow to onboard weekly event within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly event records. - - Review and onboard the weekly event. - - Notify stakeholders via email. -- name: marketing-onboard-monthly-event-619 - title: Onboard Monthly Event (marketing) - description: Standard workflow to onboard monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly event data. - - Apply marketing policies to onboard the event. - - Send a status update to the marketing team chat space. -- name: marketing-onboard-urgent-event-620 - title: Onboard Urgent Event (marketing) - description: Standard workflow to onboard urgent event within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent event requests. - - Execute onboard procedure on the designated event. - - Log completion in the master tracking spreadsheet. -- name: marketing-onboard-secure-event-621 - title: Onboard Secure Event (marketing) - description: Standard workflow to onboard secure event within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure event records. - - Review and onboard the secure event. - - Archive results in a secure Drive folder. -- name: marketing-onboard-weekly-social-post-622 - title: Onboard Weekly Social Post (marketing) - description: Standard workflow to onboard weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly social post data. - - Apply marketing policies to onboard the social post. - - Notify stakeholders via email. -- name: marketing-onboard-monthly-social-post-623 - title: Onboard Monthly Social Post (marketing) - description: Standard workflow to onboard monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly social post requests. - - Execute onboard procedure on the designated social post. - - Send a status update to the marketing team chat space. -- name: marketing-onboard-urgent-social-post-624 - title: Onboard Urgent Social Post (marketing) - description: Standard workflow to onboard urgent social post within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent social post records. - - Review and onboard the urgent social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-onboard-secure-social-post-625 - title: Onboard Secure Social Post (marketing) - description: Standard workflow to onboard secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure social post data. - - Apply marketing policies to onboard the social post. - - Archive results in a secure Drive folder. -- name: marketing-onboard-weekly-press-release-626 - title: Onboard Weekly Press Release (marketing) - description: Standard workflow to onboard weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly press release requests. - - Execute onboard procedure on the designated press release. - - Notify stakeholders via email. -- name: marketing-onboard-monthly-press-release-627 - title: Onboard Monthly Press Release (marketing) - description: Standard workflow to onboard monthly press release within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly press release records. - - Review and onboard the monthly press release. - - Send a status update to the marketing team chat space. -- name: marketing-onboard-urgent-press-release-628 - title: Onboard Urgent Press Release (marketing) - description: Standard workflow to onboard urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent press release data. - - Apply marketing policies to onboard the press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-onboard-secure-press-release-629 - title: Onboard Secure Press Release (marketing) - description: Standard workflow to onboard secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure press release requests. - - Execute onboard procedure on the designated press release. - - Archive results in a secure Drive folder. -- name: marketing-onboard-weekly-brand-guidelines-630 - title: Onboard Weekly Brand Guidelines (marketing) - description: Standard workflow to onboard weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly brand guidelines records. - - Review and onboard the weekly brand guidelines. - - Notify stakeholders via email. -- name: marketing-onboard-monthly-brand-guidelines-631 - title: Onboard Monthly Brand Guidelines (marketing) - description: Standard workflow to onboard monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly brand guidelines data. - - Apply marketing policies to onboard the brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-onboard-urgent-brand-guidelines-632 - title: Onboard Urgent Brand Guidelines (marketing) - description: Standard workflow to onboard urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent brand guidelines requests. - - Execute onboard procedure on the designated brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-onboard-secure-brand-guidelines-633 - title: Onboard Secure Brand Guidelines (marketing) - description: Standard workflow to onboard secure brand guidelines within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure brand guidelines records. - - Review and onboard the secure brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-review-weekly-campaign-634 - title: Review Weekly Campaign (marketing) - description: Standard workflow to review weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly campaign data. - - Apply marketing policies to review the campaign. - - Notify stakeholders via email. -- name: marketing-review-monthly-campaign-635 - title: Review Monthly Campaign (marketing) - description: Standard workflow to review monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly campaign requests. - - Execute review procedure on the designated campaign. - - Send a status update to the marketing team chat space. -- name: marketing-review-urgent-campaign-636 - title: Review Urgent Campaign (marketing) - description: Standard workflow to review urgent campaign within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent campaign records. - - Review and review the urgent campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-review-secure-campaign-637 - title: Review Secure Campaign (marketing) - description: Standard workflow to review secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure campaign data. - - Apply marketing policies to review the campaign. - - Archive results in a secure Drive folder. -- name: marketing-review-weekly-asset-638 - title: Review Weekly Asset (marketing) - description: Standard workflow to review weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly asset requests. - - Execute review procedure on the designated asset. - - Notify stakeholders via email. -- name: marketing-review-monthly-asset-639 - title: Review Monthly Asset (marketing) - description: Standard workflow to review monthly asset within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly asset records. - - Review and review the monthly asset. - - Send a status update to the marketing team chat space. -- name: marketing-review-urgent-asset-640 - title: Review Urgent Asset (marketing) - description: Standard workflow to review urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent asset data. - - Apply marketing policies to review the asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-review-secure-asset-641 - title: Review Secure Asset (marketing) - description: Standard workflow to review secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure asset requests. - - Execute review procedure on the designated asset. - - Archive results in a secure Drive folder. -- name: marketing-review-weekly-newsletter-642 - title: Review Weekly Newsletter (marketing) - description: Standard workflow to review weekly newsletter within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly newsletter records. - - Review and review the weekly newsletter. - - Notify stakeholders via email. -- name: marketing-review-monthly-newsletter-643 - title: Review Monthly Newsletter (marketing) - description: Standard workflow to review monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly newsletter data. - - Apply marketing policies to review the newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-review-urgent-newsletter-644 - title: Review Urgent Newsletter (marketing) - description: Standard workflow to review urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent newsletter requests. - - Execute review procedure on the designated newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-review-secure-newsletter-645 - title: Review Secure Newsletter (marketing) - description: Standard workflow to review secure newsletter within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure newsletter records. - - Review and review the secure newsletter. - - Archive results in a secure Drive folder. -- name: marketing-review-weekly-event-646 - title: Review Weekly Event (marketing) - description: Standard workflow to review weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly event data. - - Apply marketing policies to review the event. - - Notify stakeholders via email. -- name: marketing-review-monthly-event-647 - title: Review Monthly Event (marketing) - description: Standard workflow to review monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly event requests. - - Execute review procedure on the designated event. - - Send a status update to the marketing team chat space. -- name: marketing-review-urgent-event-648 - title: Review Urgent Event (marketing) - description: Standard workflow to review urgent event within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent event records. - - Review and review the urgent event. - - Log completion in the master tracking spreadsheet. -- name: marketing-review-secure-event-649 - title: Review Secure Event (marketing) - description: Standard workflow to review secure event within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure event data. - - Apply marketing policies to review the event. - - Archive results in a secure Drive folder. -- name: marketing-review-weekly-social-post-650 - title: Review Weekly Social Post (marketing) - description: Standard workflow to review weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly social post requests. - - Execute review procedure on the designated social post. - - Notify stakeholders via email. -- name: marketing-review-monthly-social-post-651 - title: Review Monthly Social Post (marketing) - description: Standard workflow to review monthly social post within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly social post records. - - Review and review the monthly social post. - - Send a status update to the marketing team chat space. -- name: marketing-review-urgent-social-post-652 - title: Review Urgent Social Post (marketing) - description: Standard workflow to review urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent social post data. - - Apply marketing policies to review the social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-review-secure-social-post-653 - title: Review Secure Social Post (marketing) - description: Standard workflow to review secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure social post requests. - - Execute review procedure on the designated social post. - - Archive results in a secure Drive folder. -- name: marketing-review-weekly-press-release-654 - title: Review Weekly Press Release (marketing) - description: Standard workflow to review weekly press release within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly press release records. - - Review and review the weekly press release. - - Notify stakeholders via email. -- name: marketing-review-monthly-press-release-655 - title: Review Monthly Press Release (marketing) - description: Standard workflow to review monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly press release data. - - Apply marketing policies to review the press release. - - Send a status update to the marketing team chat space. -- name: marketing-review-urgent-press-release-656 - title: Review Urgent Press Release (marketing) - description: Standard workflow to review urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent press release requests. - - Execute review procedure on the designated press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-review-secure-press-release-657 - title: Review Secure Press Release (marketing) - description: Standard workflow to review secure press release within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure press release records. - - Review and review the secure press release. - - Archive results in a secure Drive folder. -- name: marketing-review-weekly-brand-guidelines-658 - title: Review Weekly Brand Guidelines (marketing) - description: Standard workflow to review weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly brand guidelines data. - - Apply marketing policies to review the brand guidelines. - - Notify stakeholders via email. -- name: marketing-review-monthly-brand-guidelines-659 - title: Review Monthly Brand Guidelines (marketing) - description: Standard workflow to review monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly brand guidelines requests. - - Execute review procedure on the designated brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-review-urgent-brand-guidelines-660 - title: Review Urgent Brand Guidelines (marketing) - description: Standard workflow to review urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent brand guidelines records. - - Review and review the urgent brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-review-secure-brand-guidelines-661 - title: Review Secure Brand Guidelines (marketing) - description: Standard workflow to review secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure brand guidelines data. - - Apply marketing policies to review the brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-approve-weekly-campaign-662 - title: Approve Weekly Campaign (marketing) - description: Standard workflow to approve weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly campaign requests. - - Execute approve procedure on the designated campaign. - - Notify stakeholders via email. -- name: marketing-approve-monthly-campaign-663 - title: Approve Monthly Campaign (marketing) - description: Standard workflow to approve monthly campaign within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly campaign records. - - Review and approve the monthly campaign. - - Send a status update to the marketing team chat space. -- name: marketing-approve-urgent-campaign-664 - title: Approve Urgent Campaign (marketing) - description: Standard workflow to approve urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent campaign data. - - Apply marketing policies to approve the campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-approve-secure-campaign-665 - title: Approve Secure Campaign (marketing) - description: Standard workflow to approve secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure campaign requests. - - Execute approve procedure on the designated campaign. - - Archive results in a secure Drive folder. -- name: marketing-approve-weekly-asset-666 - title: Approve Weekly Asset (marketing) - description: Standard workflow to approve weekly asset within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly asset records. - - Review and approve the weekly asset. - - Notify stakeholders via email. -- name: marketing-approve-monthly-asset-667 - title: Approve Monthly Asset (marketing) - description: Standard workflow to approve monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly asset data. - - Apply marketing policies to approve the asset. - - Send a status update to the marketing team chat space. -- name: marketing-approve-urgent-asset-668 - title: Approve Urgent Asset (marketing) - description: Standard workflow to approve urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent asset requests. - - Execute approve procedure on the designated asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-approve-secure-asset-669 - title: Approve Secure Asset (marketing) - description: Standard workflow to approve secure asset within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure asset records. - - Review and approve the secure asset. - - Archive results in a secure Drive folder. -- name: marketing-approve-weekly-newsletter-670 - title: Approve Weekly Newsletter (marketing) - description: Standard workflow to approve weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly newsletter data. - - Apply marketing policies to approve the newsletter. - - Notify stakeholders via email. -- name: marketing-approve-monthly-newsletter-671 - title: Approve Monthly Newsletter (marketing) - description: Standard workflow to approve monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly newsletter requests. - - Execute approve procedure on the designated newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-approve-urgent-newsletter-672 - title: Approve Urgent Newsletter (marketing) - description: Standard workflow to approve urgent newsletter within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent newsletter records. - - Review and approve the urgent newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-approve-secure-newsletter-673 - title: Approve Secure Newsletter (marketing) - description: Standard workflow to approve secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure newsletter data. - - Apply marketing policies to approve the newsletter. - - Archive results in a secure Drive folder. -- name: marketing-approve-weekly-event-674 - title: Approve Weekly Event (marketing) - description: Standard workflow to approve weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly event requests. - - Execute approve procedure on the designated event. - - Notify stakeholders via email. -- name: marketing-approve-monthly-event-675 - title: Approve Monthly Event (marketing) - description: Standard workflow to approve monthly event within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly event records. - - Review and approve the monthly event. - - Send a status update to the marketing team chat space. -- name: marketing-approve-urgent-event-676 - title: Approve Urgent Event (marketing) - description: Standard workflow to approve urgent event within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent event data. - - Apply marketing policies to approve the event. - - Log completion in the master tracking spreadsheet. -- name: marketing-approve-secure-event-677 - title: Approve Secure Event (marketing) - description: Standard workflow to approve secure event within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure event requests. - - Execute approve procedure on the designated event. - - Archive results in a secure Drive folder. -- name: marketing-approve-weekly-social-post-678 - title: Approve Weekly Social Post (marketing) - description: Standard workflow to approve weekly social post within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly social post records. - - Review and approve the weekly social post. - - Notify stakeholders via email. -- name: marketing-approve-monthly-social-post-679 - title: Approve Monthly Social Post (marketing) - description: Standard workflow to approve monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly social post data. - - Apply marketing policies to approve the social post. - - Send a status update to the marketing team chat space. -- name: marketing-approve-urgent-social-post-680 - title: Approve Urgent Social Post (marketing) - description: Standard workflow to approve urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent social post requests. - - Execute approve procedure on the designated social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-approve-secure-social-post-681 - title: Approve Secure Social Post (marketing) - description: Standard workflow to approve secure social post within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure social post records. - - Review and approve the secure social post. - - Archive results in a secure Drive folder. -- name: marketing-approve-weekly-press-release-682 - title: Approve Weekly Press Release (marketing) - description: Standard workflow to approve weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly press release data. - - Apply marketing policies to approve the press release. - - Notify stakeholders via email. -- name: marketing-approve-monthly-press-release-683 - title: Approve Monthly Press Release (marketing) - description: Standard workflow to approve monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly press release requests. - - Execute approve procedure on the designated press release. - - Send a status update to the marketing team chat space. -- name: marketing-approve-urgent-press-release-684 - title: Approve Urgent Press Release (marketing) - description: Standard workflow to approve urgent press release within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent press release records. - - Review and approve the urgent press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-approve-secure-press-release-685 - title: Approve Secure Press Release (marketing) - description: Standard workflow to approve secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure press release data. - - Apply marketing policies to approve the press release. - - Archive results in a secure Drive folder. -- name: marketing-approve-weekly-brand-guidelines-686 - title: Approve Weekly Brand Guidelines (marketing) - description: Standard workflow to approve weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly brand guidelines requests. - - Execute approve procedure on the designated brand guidelines. - - Notify stakeholders via email. -- name: marketing-approve-monthly-brand-guidelines-687 - title: Approve Monthly Brand Guidelines (marketing) - description: Standard workflow to approve monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly brand guidelines records. - - Review and approve the monthly brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-approve-urgent-brand-guidelines-688 - title: Approve Urgent Brand Guidelines (marketing) - description: Standard workflow to approve urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent brand guidelines data. - - Apply marketing policies to approve the brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-approve-secure-brand-guidelines-689 - title: Approve Secure Brand Guidelines (marketing) - description: Standard workflow to approve secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure brand guidelines requests. - - Execute approve procedure on the designated brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-share-weekly-campaign-690 - title: Share Weekly Campaign (marketing) - description: Standard workflow to share weekly campaign within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly campaign records. - - Review and share the weekly campaign. - - Notify stakeholders via email. -- name: marketing-share-monthly-campaign-691 - title: Share Monthly Campaign (marketing) - description: Standard workflow to share monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly campaign data. - - Apply marketing policies to share the campaign. - - Send a status update to the marketing team chat space. -- name: marketing-share-urgent-campaign-692 - title: Share Urgent Campaign (marketing) - description: Standard workflow to share urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent campaign requests. - - Execute share procedure on the designated campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-share-secure-campaign-693 - title: Share Secure Campaign (marketing) - description: Standard workflow to share secure campaign within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure campaign records. - - Review and share the secure campaign. - - Archive results in a secure Drive folder. -- name: marketing-share-weekly-asset-694 - title: Share Weekly Asset (marketing) - description: Standard workflow to share weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly asset data. - - Apply marketing policies to share the asset. - - Notify stakeholders via email. -- name: marketing-share-monthly-asset-695 - title: Share Monthly Asset (marketing) - description: Standard workflow to share monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly asset requests. - - Execute share procedure on the designated asset. - - Send a status update to the marketing team chat space. -- name: marketing-share-urgent-asset-696 - title: Share Urgent Asset (marketing) - description: Standard workflow to share urgent asset within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent asset records. - - Review and share the urgent asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-share-secure-asset-697 - title: Share Secure Asset (marketing) - description: Standard workflow to share secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure asset data. - - Apply marketing policies to share the asset. - - Archive results in a secure Drive folder. -- name: marketing-share-weekly-newsletter-698 - title: Share Weekly Newsletter (marketing) - description: Standard workflow to share weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly newsletter requests. - - Execute share procedure on the designated newsletter. - - Notify stakeholders via email. -- name: marketing-share-monthly-newsletter-699 - title: Share Monthly Newsletter (marketing) - description: Standard workflow to share monthly newsletter within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly newsletter records. - - Review and share the monthly newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-share-urgent-newsletter-700 - title: Share Urgent Newsletter (marketing) - description: Standard workflow to share urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent newsletter data. - - Apply marketing policies to share the newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-share-secure-newsletter-701 - title: Share Secure Newsletter (marketing) - description: Standard workflow to share secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure newsletter requests. - - Execute share procedure on the designated newsletter. - - Archive results in a secure Drive folder. -- name: marketing-share-weekly-event-702 - title: Share Weekly Event (marketing) - description: Standard workflow to share weekly event within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly event records. - - Review and share the weekly event. - - Notify stakeholders via email. -- name: marketing-share-monthly-event-703 - title: Share Monthly Event (marketing) - description: Standard workflow to share monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly event data. - - Apply marketing policies to share the event. - - Send a status update to the marketing team chat space. -- name: marketing-share-urgent-event-704 - title: Share Urgent Event (marketing) - description: Standard workflow to share urgent event within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent event requests. - - Execute share procedure on the designated event. - - Log completion in the master tracking spreadsheet. -- name: marketing-share-secure-event-705 - title: Share Secure Event (marketing) - description: Standard workflow to share secure event within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure event records. - - Review and share the secure event. - - Archive results in a secure Drive folder. -- name: marketing-share-weekly-social-post-706 - title: Share Weekly Social Post (marketing) - description: Standard workflow to share weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly social post data. - - Apply marketing policies to share the social post. - - Notify stakeholders via email. -- name: marketing-share-monthly-social-post-707 - title: Share Monthly Social Post (marketing) - description: Standard workflow to share monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly social post requests. - - Execute share procedure on the designated social post. - - Send a status update to the marketing team chat space. -- name: marketing-share-urgent-social-post-708 - title: Share Urgent Social Post (marketing) - description: Standard workflow to share urgent social post within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent social post records. - - Review and share the urgent social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-share-secure-social-post-709 - title: Share Secure Social Post (marketing) - description: Standard workflow to share secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure social post data. - - Apply marketing policies to share the social post. - - Archive results in a secure Drive folder. -- name: marketing-share-weekly-press-release-710 - title: Share Weekly Press Release (marketing) - description: Standard workflow to share weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly press release requests. - - Execute share procedure on the designated press release. - - Notify stakeholders via email. -- name: marketing-share-monthly-press-release-711 - title: Share Monthly Press Release (marketing) - description: Standard workflow to share monthly press release within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly press release records. - - Review and share the monthly press release. - - Send a status update to the marketing team chat space. -- name: marketing-share-urgent-press-release-712 - title: Share Urgent Press Release (marketing) - description: Standard workflow to share urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent press release data. - - Apply marketing policies to share the press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-share-secure-press-release-713 - title: Share Secure Press Release (marketing) - description: Standard workflow to share secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure press release requests. - - Execute share procedure on the designated press release. - - Archive results in a secure Drive folder. -- name: marketing-share-weekly-brand-guidelines-714 - title: Share Weekly Brand Guidelines (marketing) - description: Standard workflow to share weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly brand guidelines records. - - Review and share the weekly brand guidelines. - - Notify stakeholders via email. -- name: marketing-share-monthly-brand-guidelines-715 - title: Share Monthly Brand Guidelines (marketing) - description: Standard workflow to share monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly brand guidelines data. - - Apply marketing policies to share the brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-share-urgent-brand-guidelines-716 - title: Share Urgent Brand Guidelines (marketing) - description: Standard workflow to share urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent brand guidelines requests. - - Execute share procedure on the designated brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-share-secure-brand-guidelines-717 - title: Share Secure Brand Guidelines (marketing) - description: Standard workflow to share secure brand guidelines within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure brand guidelines records. - - Review and share the secure brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-publish-weekly-campaign-718 - title: Publish Weekly Campaign (marketing) - description: Standard workflow to publish weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly campaign data. - - Apply marketing policies to publish the campaign. - - Notify stakeholders via email. -- name: marketing-publish-monthly-campaign-719 - title: Publish Monthly Campaign (marketing) - description: Standard workflow to publish monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly campaign requests. - - Execute publish procedure on the designated campaign. - - Send a status update to the marketing team chat space. -- name: marketing-publish-urgent-campaign-720 - title: Publish Urgent Campaign (marketing) - description: Standard workflow to publish urgent campaign within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent campaign records. - - Review and publish the urgent campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-publish-secure-campaign-721 - title: Publish Secure Campaign (marketing) - description: Standard workflow to publish secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure campaign data. - - Apply marketing policies to publish the campaign. - - Archive results in a secure Drive folder. -- name: marketing-publish-weekly-asset-722 - title: Publish Weekly Asset (marketing) - description: Standard workflow to publish weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly asset requests. - - Execute publish procedure on the designated asset. - - Notify stakeholders via email. -- name: marketing-publish-monthly-asset-723 - title: Publish Monthly Asset (marketing) - description: Standard workflow to publish monthly asset within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly asset records. - - Review and publish the monthly asset. - - Send a status update to the marketing team chat space. -- name: marketing-publish-urgent-asset-724 - title: Publish Urgent Asset (marketing) - description: Standard workflow to publish urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent asset data. - - Apply marketing policies to publish the asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-publish-secure-asset-725 - title: Publish Secure Asset (marketing) - description: Standard workflow to publish secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure asset requests. - - Execute publish procedure on the designated asset. - - Archive results in a secure Drive folder. -- name: marketing-publish-weekly-newsletter-726 - title: Publish Weekly Newsletter (marketing) - description: Standard workflow to publish weekly newsletter within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly newsletter records. - - Review and publish the weekly newsletter. - - Notify stakeholders via email. -- name: marketing-publish-monthly-newsletter-727 - title: Publish Monthly Newsletter (marketing) - description: Standard workflow to publish monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly newsletter data. - - Apply marketing policies to publish the newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-publish-urgent-newsletter-728 - title: Publish Urgent Newsletter (marketing) - description: Standard workflow to publish urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent newsletter requests. - - Execute publish procedure on the designated newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-publish-secure-newsletter-729 - title: Publish Secure Newsletter (marketing) - description: Standard workflow to publish secure newsletter within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure newsletter records. - - Review and publish the secure newsletter. - - Archive results in a secure Drive folder. -- name: marketing-publish-weekly-event-730 - title: Publish Weekly Event (marketing) - description: Standard workflow to publish weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly event data. - - Apply marketing policies to publish the event. - - Notify stakeholders via email. -- name: marketing-publish-monthly-event-731 - title: Publish Monthly Event (marketing) - description: Standard workflow to publish monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly event requests. - - Execute publish procedure on the designated event. - - Send a status update to the marketing team chat space. -- name: marketing-publish-urgent-event-732 - title: Publish Urgent Event (marketing) - description: Standard workflow to publish urgent event within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent event records. - - Review and publish the urgent event. - - Log completion in the master tracking spreadsheet. -- name: marketing-publish-secure-event-733 - title: Publish Secure Event (marketing) - description: Standard workflow to publish secure event within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure event data. - - Apply marketing policies to publish the event. - - Archive results in a secure Drive folder. -- name: marketing-publish-weekly-social-post-734 - title: Publish Weekly Social Post (marketing) - description: Standard workflow to publish weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly social post requests. - - Execute publish procedure on the designated social post. - - Notify stakeholders via email. -- name: marketing-publish-monthly-social-post-735 - title: Publish Monthly Social Post (marketing) - description: Standard workflow to publish monthly social post within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly social post records. - - Review and publish the monthly social post. - - Send a status update to the marketing team chat space. -- name: marketing-publish-urgent-social-post-736 - title: Publish Urgent Social Post (marketing) - description: Standard workflow to publish urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent social post data. - - Apply marketing policies to publish the social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-publish-secure-social-post-737 - title: Publish Secure Social Post (marketing) - description: Standard workflow to publish secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure social post requests. - - Execute publish procedure on the designated social post. - - Archive results in a secure Drive folder. -- name: marketing-publish-weekly-press-release-738 - title: Publish Weekly Press Release (marketing) - description: Standard workflow to publish weekly press release within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly press release records. - - Review and publish the weekly press release. - - Notify stakeholders via email. -- name: marketing-publish-monthly-press-release-739 - title: Publish Monthly Press Release (marketing) - description: Standard workflow to publish monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly press release data. - - Apply marketing policies to publish the press release. - - Send a status update to the marketing team chat space. -- name: marketing-publish-urgent-press-release-740 - title: Publish Urgent Press Release (marketing) - description: Standard workflow to publish urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent press release requests. - - Execute publish procedure on the designated press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-publish-secure-press-release-741 - title: Publish Secure Press Release (marketing) - description: Standard workflow to publish secure press release within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure press release records. - - Review and publish the secure press release. - - Archive results in a secure Drive folder. -- name: marketing-publish-weekly-brand-guidelines-742 - title: Publish Weekly Brand Guidelines (marketing) - description: Standard workflow to publish weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly brand guidelines data. - - Apply marketing policies to publish the brand guidelines. - - Notify stakeholders via email. -- name: marketing-publish-monthly-brand-guidelines-743 - title: Publish Monthly Brand Guidelines (marketing) - description: Standard workflow to publish monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly brand guidelines requests. - - Execute publish procedure on the designated brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-publish-urgent-brand-guidelines-744 - title: Publish Urgent Brand Guidelines (marketing) - description: Standard workflow to publish urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent brand guidelines records. - - Review and publish the urgent brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-publish-secure-brand-guidelines-745 - title: Publish Secure Brand Guidelines (marketing) - description: Standard workflow to publish secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure brand guidelines data. - - Apply marketing policies to publish the brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-archive-weekly-campaign-746 - title: Archive Weekly Campaign (marketing) - description: Standard workflow to archive weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly campaign requests. - - Execute archive procedure on the designated campaign. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly campaign targets before running. -- name: marketing-archive-monthly-campaign-747 - title: Archive Monthly Campaign (marketing) - description: Standard workflow to archive monthly campaign within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly campaign records. - - Review and archive the monthly campaign. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly campaign targets before running. -- name: marketing-archive-urgent-campaign-748 - title: Archive Urgent Campaign (marketing) - description: Standard workflow to archive urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent campaign data. - - Apply marketing policies to archive the campaign. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent campaign targets before running. -- name: marketing-archive-secure-campaign-749 - title: Archive Secure Campaign (marketing) - description: Standard workflow to archive secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure campaign requests. - - Execute archive procedure on the designated campaign. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure campaign targets before running. -- name: marketing-archive-weekly-asset-750 - title: Archive Weekly Asset (marketing) - description: Standard workflow to archive weekly asset within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly asset records. - - Review and archive the weekly asset. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly asset targets before running. -- name: marketing-archive-monthly-asset-751 - title: Archive Monthly Asset (marketing) - description: Standard workflow to archive monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly asset data. - - Apply marketing policies to archive the asset. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly asset targets before running. -- name: marketing-archive-urgent-asset-752 - title: Archive Urgent Asset (marketing) - description: Standard workflow to archive urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent asset requests. - - Execute archive procedure on the designated asset. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent asset targets before running. -- name: marketing-archive-secure-asset-753 - title: Archive Secure Asset (marketing) - description: Standard workflow to archive secure asset within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure asset records. - - Review and archive the secure asset. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure asset targets before running. -- name: marketing-archive-weekly-newsletter-754 - title: Archive Weekly Newsletter (marketing) - description: Standard workflow to archive weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly newsletter data. - - Apply marketing policies to archive the newsletter. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly newsletter targets before running. -- name: marketing-archive-monthly-newsletter-755 - title: Archive Monthly Newsletter (marketing) - description: Standard workflow to archive monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly newsletter requests. - - Execute archive procedure on the designated newsletter. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly newsletter targets before running. -- name: marketing-archive-urgent-newsletter-756 - title: Archive Urgent Newsletter (marketing) - description: Standard workflow to archive urgent newsletter within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent newsletter records. - - Review and archive the urgent newsletter. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent newsletter targets before running. -- name: marketing-archive-secure-newsletter-757 - title: Archive Secure Newsletter (marketing) - description: Standard workflow to archive secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure newsletter data. - - Apply marketing policies to archive the newsletter. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure newsletter targets before running. -- name: marketing-archive-weekly-event-758 - title: Archive Weekly Event (marketing) - description: Standard workflow to archive weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly event requests. - - Execute archive procedure on the designated event. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly event targets before running. -- name: marketing-archive-monthly-event-759 - title: Archive Monthly Event (marketing) - description: Standard workflow to archive monthly event within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly event records. - - Review and archive the monthly event. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly event targets before running. -- name: marketing-archive-urgent-event-760 - title: Archive Urgent Event (marketing) - description: Standard workflow to archive urgent event within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent event data. - - Apply marketing policies to archive the event. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent event targets before running. -- name: marketing-archive-secure-event-761 - title: Archive Secure Event (marketing) - description: Standard workflow to archive secure event within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure event requests. - - Execute archive procedure on the designated event. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure event targets before running. -- name: marketing-archive-weekly-social-post-762 - title: Archive Weekly Social Post (marketing) - description: Standard workflow to archive weekly social post within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly social post records. - - Review and archive the weekly social post. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly social post targets before running. -- name: marketing-archive-monthly-social-post-763 - title: Archive Monthly Social Post (marketing) - description: Standard workflow to archive monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly social post data. - - Apply marketing policies to archive the social post. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly social post targets before running. -- name: marketing-archive-urgent-social-post-764 - title: Archive Urgent Social Post (marketing) - description: Standard workflow to archive urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent social post requests. - - Execute archive procedure on the designated social post. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent social post targets before running. -- name: marketing-archive-secure-social-post-765 - title: Archive Secure Social Post (marketing) - description: Standard workflow to archive secure social post within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure social post records. - - Review and archive the secure social post. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure social post targets before running. -- name: marketing-archive-weekly-press-release-766 - title: Archive Weekly Press Release (marketing) - description: Standard workflow to archive weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly press release data. - - Apply marketing policies to archive the press release. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly press release targets before running. -- name: marketing-archive-monthly-press-release-767 - title: Archive Monthly Press Release (marketing) - description: Standard workflow to archive monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly press release requests. - - Execute archive procedure on the designated press release. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly press release targets before running. -- name: marketing-archive-urgent-press-release-768 - title: Archive Urgent Press Release (marketing) - description: Standard workflow to archive urgent press release within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent press release records. - - Review and archive the urgent press release. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent press release targets before running. -- name: marketing-archive-secure-press-release-769 - title: Archive Secure Press Release (marketing) - description: Standard workflow to archive secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure press release data. - - Apply marketing policies to archive the press release. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure press release targets before running. -- name: marketing-archive-weekly-brand-guidelines-770 - title: Archive Weekly Brand Guidelines (marketing) - description: Standard workflow to archive weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly brand guidelines requests. - - Execute archive procedure on the designated brand guidelines. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly brand guidelines targets before running. -- name: marketing-archive-monthly-brand-guidelines-771 - title: Archive Monthly Brand Guidelines (marketing) - description: Standard workflow to archive monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly brand guidelines records. - - Review and archive the monthly brand guidelines. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly brand guidelines targets before running. -- name: marketing-archive-urgent-brand-guidelines-772 - title: Archive Urgent Brand Guidelines (marketing) - description: Standard workflow to archive urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent brand guidelines data. - - Apply marketing policies to archive the brand guidelines. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent brand guidelines targets before running. -- name: marketing-archive-secure-brand-guidelines-773 - title: Archive Secure Brand Guidelines (marketing) - description: Standard workflow to archive secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure brand guidelines requests. - - Execute archive procedure on the designated brand guidelines. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure brand guidelines targets before running. -- name: marketing-export-weekly-campaign-774 - title: Export Weekly Campaign (marketing) - description: Standard workflow to export weekly campaign within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly campaign records. - - Review and export the weekly campaign. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly campaign targets before running. -- name: marketing-export-monthly-campaign-775 - title: Export Monthly Campaign (marketing) - description: Standard workflow to export monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly campaign data. - - Apply marketing policies to export the campaign. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly campaign targets before running. -- name: marketing-export-urgent-campaign-776 - title: Export Urgent Campaign (marketing) - description: Standard workflow to export urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent campaign requests. - - Execute export procedure on the designated campaign. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent campaign targets before running. -- name: marketing-export-secure-campaign-777 - title: Export Secure Campaign (marketing) - description: Standard workflow to export secure campaign within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure campaign records. - - Review and export the secure campaign. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure campaign targets before running. -- name: marketing-export-weekly-asset-778 - title: Export Weekly Asset (marketing) - description: Standard workflow to export weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly asset data. - - Apply marketing policies to export the asset. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly asset targets before running. -- name: marketing-export-monthly-asset-779 - title: Export Monthly Asset (marketing) - description: Standard workflow to export monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly asset requests. - - Execute export procedure on the designated asset. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly asset targets before running. -- name: marketing-export-urgent-asset-780 - title: Export Urgent Asset (marketing) - description: Standard workflow to export urgent asset within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent asset records. - - Review and export the urgent asset. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent asset targets before running. -- name: marketing-export-secure-asset-781 - title: Export Secure Asset (marketing) - description: Standard workflow to export secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure asset data. - - Apply marketing policies to export the asset. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure asset targets before running. -- name: marketing-export-weekly-newsletter-782 - title: Export Weekly Newsletter (marketing) - description: Standard workflow to export weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly newsletter requests. - - Execute export procedure on the designated newsletter. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly newsletter targets before running. -- name: marketing-export-monthly-newsletter-783 - title: Export Monthly Newsletter (marketing) - description: Standard workflow to export monthly newsletter within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly newsletter records. - - Review and export the monthly newsletter. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly newsletter targets before running. -- name: marketing-export-urgent-newsletter-784 - title: Export Urgent Newsletter (marketing) - description: Standard workflow to export urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent newsletter data. - - Apply marketing policies to export the newsletter. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent newsletter targets before running. -- name: marketing-export-secure-newsletter-785 - title: Export Secure Newsletter (marketing) - description: Standard workflow to export secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure newsletter requests. - - Execute export procedure on the designated newsletter. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure newsletter targets before running. -- name: marketing-export-weekly-event-786 - title: Export Weekly Event (marketing) - description: Standard workflow to export weekly event within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly event records. - - Review and export the weekly event. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly event targets before running. -- name: marketing-export-monthly-event-787 - title: Export Monthly Event (marketing) - description: Standard workflow to export monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly event data. - - Apply marketing policies to export the event. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly event targets before running. -- name: marketing-export-urgent-event-788 - title: Export Urgent Event (marketing) - description: Standard workflow to export urgent event within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent event requests. - - Execute export procedure on the designated event. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent event targets before running. -- name: marketing-export-secure-event-789 - title: Export Secure Event (marketing) - description: Standard workflow to export secure event within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure event records. - - Review and export the secure event. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure event targets before running. -- name: marketing-export-weekly-social-post-790 - title: Export Weekly Social Post (marketing) - description: Standard workflow to export weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly social post data. - - Apply marketing policies to export the social post. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly social post targets before running. -- name: marketing-export-monthly-social-post-791 - title: Export Monthly Social Post (marketing) - description: Standard workflow to export monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly social post requests. - - Execute export procedure on the designated social post. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly social post targets before running. -- name: marketing-export-urgent-social-post-792 - title: Export Urgent Social Post (marketing) - description: Standard workflow to export urgent social post within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent social post records. - - Review and export the urgent social post. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent social post targets before running. -- name: marketing-export-secure-social-post-793 - title: Export Secure Social Post (marketing) - description: Standard workflow to export secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure social post data. - - Apply marketing policies to export the social post. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure social post targets before running. -- name: marketing-export-weekly-press-release-794 - title: Export Weekly Press Release (marketing) - description: Standard workflow to export weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly press release requests. - - Execute export procedure on the designated press release. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly press release targets before running. -- name: marketing-export-monthly-press-release-795 - title: Export Monthly Press Release (marketing) - description: Standard workflow to export monthly press release within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly press release records. - - Review and export the monthly press release. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly press release targets before running. -- name: marketing-export-urgent-press-release-796 - title: Export Urgent Press Release (marketing) - description: Standard workflow to export urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent press release data. - - Apply marketing policies to export the press release. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent press release targets before running. -- name: marketing-export-secure-press-release-797 - title: Export Secure Press Release (marketing) - description: Standard workflow to export secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure press release requests. - - Execute export procedure on the designated press release. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure press release targets before running. -- name: marketing-export-weekly-brand-guidelines-798 - title: Export Weekly Brand Guidelines (marketing) - description: Standard workflow to export weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly brand guidelines records. - - Review and export the weekly brand guidelines. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly brand guidelines targets before running. -- name: marketing-export-monthly-brand-guidelines-799 - title: Export Monthly Brand Guidelines (marketing) - description: Standard workflow to export monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly brand guidelines data. - - Apply marketing policies to export the brand guidelines. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly brand guidelines targets before running. -- name: marketing-export-urgent-brand-guidelines-800 - title: Export Urgent Brand Guidelines (marketing) - description: Standard workflow to export urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent brand guidelines requests. - - Execute export procedure on the designated brand guidelines. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent brand guidelines targets before running. -- name: marketing-export-secure-brand-guidelines-801 - title: Export Secure Brand Guidelines (marketing) - description: Standard workflow to export secure brand guidelines within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure brand guidelines records. - - Review and export the secure brand guidelines. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure brand guidelines targets before running. -- name: marketing-import-weekly-campaign-802 - title: Import Weekly Campaign (marketing) - description: Standard workflow to import weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly campaign data. - - Apply marketing policies to import the campaign. - - Notify stakeholders via email. -- name: marketing-import-monthly-campaign-803 - title: Import Monthly Campaign (marketing) - description: Standard workflow to import monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly campaign requests. - - Execute import procedure on the designated campaign. - - Send a status update to the marketing team chat space. -- name: marketing-import-urgent-campaign-804 - title: Import Urgent Campaign (marketing) - description: Standard workflow to import urgent campaign within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent campaign records. - - Review and import the urgent campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-import-secure-campaign-805 - title: Import Secure Campaign (marketing) - description: Standard workflow to import secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure campaign data. - - Apply marketing policies to import the campaign. - - Archive results in a secure Drive folder. -- name: marketing-import-weekly-asset-806 - title: Import Weekly Asset (marketing) - description: Standard workflow to import weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly asset requests. - - Execute import procedure on the designated asset. - - Notify stakeholders via email. -- name: marketing-import-monthly-asset-807 - title: Import Monthly Asset (marketing) - description: Standard workflow to import monthly asset within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly asset records. - - Review and import the monthly asset. - - Send a status update to the marketing team chat space. -- name: marketing-import-urgent-asset-808 - title: Import Urgent Asset (marketing) - description: Standard workflow to import urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent asset data. - - Apply marketing policies to import the asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-import-secure-asset-809 - title: Import Secure Asset (marketing) - description: Standard workflow to import secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure asset requests. - - Execute import procedure on the designated asset. - - Archive results in a secure Drive folder. -- name: marketing-import-weekly-newsletter-810 - title: Import Weekly Newsletter (marketing) - description: Standard workflow to import weekly newsletter within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly newsletter records. - - Review and import the weekly newsletter. - - Notify stakeholders via email. -- name: marketing-import-monthly-newsletter-811 - title: Import Monthly Newsletter (marketing) - description: Standard workflow to import monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly newsletter data. - - Apply marketing policies to import the newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-import-urgent-newsletter-812 - title: Import Urgent Newsletter (marketing) - description: Standard workflow to import urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent newsletter requests. - - Execute import procedure on the designated newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-import-secure-newsletter-813 - title: Import Secure Newsletter (marketing) - description: Standard workflow to import secure newsletter within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure newsletter records. - - Review and import the secure newsletter. - - Archive results in a secure Drive folder. -- name: marketing-import-weekly-event-814 - title: Import Weekly Event (marketing) - description: Standard workflow to import weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly event data. - - Apply marketing policies to import the event. - - Notify stakeholders via email. -- name: marketing-import-monthly-event-815 - title: Import Monthly Event (marketing) - description: Standard workflow to import monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly event requests. - - Execute import procedure on the designated event. - - Send a status update to the marketing team chat space. -- name: marketing-import-urgent-event-816 - title: Import Urgent Event (marketing) - description: Standard workflow to import urgent event within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent event records. - - Review and import the urgent event. - - Log completion in the master tracking spreadsheet. -- name: marketing-import-secure-event-817 - title: Import Secure Event (marketing) - description: Standard workflow to import secure event within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure event data. - - Apply marketing policies to import the event. - - Archive results in a secure Drive folder. -- name: marketing-import-weekly-social-post-818 - title: Import Weekly Social Post (marketing) - description: Standard workflow to import weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly social post requests. - - Execute import procedure on the designated social post. - - Notify stakeholders via email. -- name: marketing-import-monthly-social-post-819 - title: Import Monthly Social Post (marketing) - description: Standard workflow to import monthly social post within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly social post records. - - Review and import the monthly social post. - - Send a status update to the marketing team chat space. -- name: marketing-import-urgent-social-post-820 - title: Import Urgent Social Post (marketing) - description: Standard workflow to import urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent social post data. - - Apply marketing policies to import the social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-import-secure-social-post-821 - title: Import Secure Social Post (marketing) - description: Standard workflow to import secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure social post requests. - - Execute import procedure on the designated social post. - - Archive results in a secure Drive folder. -- name: marketing-import-weekly-press-release-822 - title: Import Weekly Press Release (marketing) - description: Standard workflow to import weekly press release within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly press release records. - - Review and import the weekly press release. - - Notify stakeholders via email. -- name: marketing-import-monthly-press-release-823 - title: Import Monthly Press Release (marketing) - description: Standard workflow to import monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly press release data. - - Apply marketing policies to import the press release. - - Send a status update to the marketing team chat space. -- name: marketing-import-urgent-press-release-824 - title: Import Urgent Press Release (marketing) - description: Standard workflow to import urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent press release requests. - - Execute import procedure on the designated press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-import-secure-press-release-825 - title: Import Secure Press Release (marketing) - description: Standard workflow to import secure press release within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure press release records. - - Review and import the secure press release. - - Archive results in a secure Drive folder. -- name: marketing-import-weekly-brand-guidelines-826 - title: Import Weekly Brand Guidelines (marketing) - description: Standard workflow to import weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly brand guidelines data. - - Apply marketing policies to import the brand guidelines. - - Notify stakeholders via email. -- name: marketing-import-monthly-brand-guidelines-827 - title: Import Monthly Brand Guidelines (marketing) - description: Standard workflow to import monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly brand guidelines requests. - - Execute import procedure on the designated brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-import-urgent-brand-guidelines-828 - title: Import Urgent Brand Guidelines (marketing) - description: Standard workflow to import urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent brand guidelines records. - - Review and import the urgent brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-import-secure-brand-guidelines-829 - title: Import Secure Brand Guidelines (marketing) - description: Standard workflow to import secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure brand guidelines data. - - Apply marketing policies to import the brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-sync-weekly-campaign-830 - title: Sync Weekly Campaign (marketing) - description: Standard workflow to sync weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly campaign requests. - - Execute sync procedure on the designated campaign. - - Notify stakeholders via email. -- name: marketing-sync-monthly-campaign-831 - title: Sync Monthly Campaign (marketing) - description: Standard workflow to sync monthly campaign within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly campaign records. - - Review and sync the monthly campaign. - - Send a status update to the marketing team chat space. -- name: marketing-sync-urgent-campaign-832 - title: Sync Urgent Campaign (marketing) - description: Standard workflow to sync urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent campaign data. - - Apply marketing policies to sync the campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-sync-secure-campaign-833 - title: Sync Secure Campaign (marketing) - description: Standard workflow to sync secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure campaign requests. - - Execute sync procedure on the designated campaign. - - Archive results in a secure Drive folder. -- name: marketing-sync-weekly-asset-834 - title: Sync Weekly Asset (marketing) - description: Standard workflow to sync weekly asset within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly asset records. - - Review and sync the weekly asset. - - Notify stakeholders via email. -- name: marketing-sync-monthly-asset-835 - title: Sync Monthly Asset (marketing) - description: Standard workflow to sync monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly asset data. - - Apply marketing policies to sync the asset. - - Send a status update to the marketing team chat space. -- name: marketing-sync-urgent-asset-836 - title: Sync Urgent Asset (marketing) - description: Standard workflow to sync urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent asset requests. - - Execute sync procedure on the designated asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-sync-secure-asset-837 - title: Sync Secure Asset (marketing) - description: Standard workflow to sync secure asset within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure asset records. - - Review and sync the secure asset. - - Archive results in a secure Drive folder. -- name: marketing-sync-weekly-newsletter-838 - title: Sync Weekly Newsletter (marketing) - description: Standard workflow to sync weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly newsletter data. - - Apply marketing policies to sync the newsletter. - - Notify stakeholders via email. -- name: marketing-sync-monthly-newsletter-839 - title: Sync Monthly Newsletter (marketing) - description: Standard workflow to sync monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly newsletter requests. - - Execute sync procedure on the designated newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-sync-urgent-newsletter-840 - title: Sync Urgent Newsletter (marketing) - description: Standard workflow to sync urgent newsletter within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent newsletter records. - - Review and sync the urgent newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-sync-secure-newsletter-841 - title: Sync Secure Newsletter (marketing) - description: Standard workflow to sync secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure newsletter data. - - Apply marketing policies to sync the newsletter. - - Archive results in a secure Drive folder. -- name: marketing-sync-weekly-event-842 - title: Sync Weekly Event (marketing) - description: Standard workflow to sync weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly event requests. - - Execute sync procedure on the designated event. - - Notify stakeholders via email. -- name: marketing-sync-monthly-event-843 - title: Sync Monthly Event (marketing) - description: Standard workflow to sync monthly event within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly event records. - - Review and sync the monthly event. - - Send a status update to the marketing team chat space. -- name: marketing-sync-urgent-event-844 - title: Sync Urgent Event (marketing) - description: Standard workflow to sync urgent event within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent event data. - - Apply marketing policies to sync the event. - - Log completion in the master tracking spreadsheet. -- name: marketing-sync-secure-event-845 - title: Sync Secure Event (marketing) - description: Standard workflow to sync secure event within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure event requests. - - Execute sync procedure on the designated event. - - Archive results in a secure Drive folder. -- name: marketing-sync-weekly-social-post-846 - title: Sync Weekly Social Post (marketing) - description: Standard workflow to sync weekly social post within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly social post records. - - Review and sync the weekly social post. - - Notify stakeholders via email. -- name: marketing-sync-monthly-social-post-847 - title: Sync Monthly Social Post (marketing) - description: Standard workflow to sync monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly social post data. - - Apply marketing policies to sync the social post. - - Send a status update to the marketing team chat space. -- name: marketing-sync-urgent-social-post-848 - title: Sync Urgent Social Post (marketing) - description: Standard workflow to sync urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent social post requests. - - Execute sync procedure on the designated social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-sync-secure-social-post-849 - title: Sync Secure Social Post (marketing) - description: Standard workflow to sync secure social post within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure social post records. - - Review and sync the secure social post. - - Archive results in a secure Drive folder. -- name: marketing-sync-weekly-press-release-850 - title: Sync Weekly Press Release (marketing) - description: Standard workflow to sync weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly press release data. - - Apply marketing policies to sync the press release. - - Notify stakeholders via email. -- name: marketing-sync-monthly-press-release-851 - title: Sync Monthly Press Release (marketing) - description: Standard workflow to sync monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly press release requests. - - Execute sync procedure on the designated press release. - - Send a status update to the marketing team chat space. -- name: marketing-sync-urgent-press-release-852 - title: Sync Urgent Press Release (marketing) - description: Standard workflow to sync urgent press release within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent press release records. - - Review and sync the urgent press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-sync-secure-press-release-853 - title: Sync Secure Press Release (marketing) - description: Standard workflow to sync secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure press release data. - - Apply marketing policies to sync the press release. - - Archive results in a secure Drive folder. -- name: marketing-sync-weekly-brand-guidelines-854 - title: Sync Weekly Brand Guidelines (marketing) - description: Standard workflow to sync weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly brand guidelines requests. - - Execute sync procedure on the designated brand guidelines. - - Notify stakeholders via email. -- name: marketing-sync-monthly-brand-guidelines-855 - title: Sync Monthly Brand Guidelines (marketing) - description: Standard workflow to sync monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly brand guidelines records. - - Review and sync the monthly brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-sync-urgent-brand-guidelines-856 - title: Sync Urgent Brand Guidelines (marketing) - description: Standard workflow to sync urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent brand guidelines data. - - Apply marketing policies to sync the brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-sync-secure-brand-guidelines-857 - title: Sync Secure Brand Guidelines (marketing) - description: Standard workflow to sync secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure brand guidelines requests. - - Execute sync procedure on the designated brand guidelines. - - Archive results in a secure Drive folder. -- name: marketing-migrate-weekly-campaign-858 - title: Migrate Weekly Campaign (marketing) - description: Standard workflow to migrate weekly campaign within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly campaign records. - - Review and migrate the weekly campaign. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly campaign targets before running. -- name: marketing-migrate-monthly-campaign-859 - title: Migrate Monthly Campaign (marketing) - description: Standard workflow to migrate monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly campaign data. - - Apply marketing policies to migrate the campaign. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly campaign targets before running. -- name: marketing-migrate-urgent-campaign-860 - title: Migrate Urgent Campaign (marketing) - description: Standard workflow to migrate urgent campaign within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent campaign requests. - - Execute migrate procedure on the designated campaign. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent campaign targets before running. -- name: marketing-migrate-secure-campaign-861 - title: Migrate Secure Campaign (marketing) - description: Standard workflow to migrate secure campaign within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure campaign records. - - Review and migrate the secure campaign. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure campaign targets before running. -- name: marketing-migrate-weekly-asset-862 - title: Migrate Weekly Asset (marketing) - description: Standard workflow to migrate weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly asset data. - - Apply marketing policies to migrate the asset. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly asset targets before running. -- name: marketing-migrate-monthly-asset-863 - title: Migrate Monthly Asset (marketing) - description: Standard workflow to migrate monthly asset within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly asset requests. - - Execute migrate procedure on the designated asset. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly asset targets before running. -- name: marketing-migrate-urgent-asset-864 - title: Migrate Urgent Asset (marketing) - description: Standard workflow to migrate urgent asset within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent asset records. - - Review and migrate the urgent asset. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent asset targets before running. -- name: marketing-migrate-secure-asset-865 - title: Migrate Secure Asset (marketing) - description: Standard workflow to migrate secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure asset data. - - Apply marketing policies to migrate the asset. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure asset targets before running. -- name: marketing-migrate-weekly-newsletter-866 - title: Migrate Weekly Newsletter (marketing) - description: Standard workflow to migrate weekly newsletter within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly newsletter requests. - - Execute migrate procedure on the designated newsletter. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly newsletter targets before running. -- name: marketing-migrate-monthly-newsletter-867 - title: Migrate Monthly Newsletter (marketing) - description: Standard workflow to migrate monthly newsletter within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly newsletter records. - - Review and migrate the monthly newsletter. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly newsletter targets before running. -- name: marketing-migrate-urgent-newsletter-868 - title: Migrate Urgent Newsletter (marketing) - description: Standard workflow to migrate urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent newsletter data. - - Apply marketing policies to migrate the newsletter. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent newsletter targets before running. -- name: marketing-migrate-secure-newsletter-869 - title: Migrate Secure Newsletter (marketing) - description: Standard workflow to migrate secure newsletter within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure newsletter requests. - - Execute migrate procedure on the designated newsletter. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure newsletter targets before running. -- name: marketing-migrate-weekly-event-870 - title: Migrate Weekly Event (marketing) - description: Standard workflow to migrate weekly event within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly event records. - - Review and migrate the weekly event. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly event targets before running. -- name: marketing-migrate-monthly-event-871 - title: Migrate Monthly Event (marketing) - description: Standard workflow to migrate monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly event data. - - Apply marketing policies to migrate the event. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly event targets before running. -- name: marketing-migrate-urgent-event-872 - title: Migrate Urgent Event (marketing) - description: Standard workflow to migrate urgent event within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent event requests. - - Execute migrate procedure on the designated event. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent event targets before running. -- name: marketing-migrate-secure-event-873 - title: Migrate Secure Event (marketing) - description: Standard workflow to migrate secure event within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure event records. - - Review and migrate the secure event. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure event targets before running. -- name: marketing-migrate-weekly-social-post-874 - title: Migrate Weekly Social Post (marketing) - description: Standard workflow to migrate weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly social post data. - - Apply marketing policies to migrate the social post. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly social post targets before running. -- name: marketing-migrate-monthly-social-post-875 - title: Migrate Monthly Social Post (marketing) - description: Standard workflow to migrate monthly social post within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly social post requests. - - Execute migrate procedure on the designated social post. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly social post targets before running. -- name: marketing-migrate-urgent-social-post-876 - title: Migrate Urgent Social Post (marketing) - description: Standard workflow to migrate urgent social post within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent social post records. - - Review and migrate the urgent social post. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent social post targets before running. -- name: marketing-migrate-secure-social-post-877 - title: Migrate Secure Social Post (marketing) - description: Standard workflow to migrate secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure social post data. - - Apply marketing policies to migrate the social post. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure social post targets before running. -- name: marketing-migrate-weekly-press-release-878 - title: Migrate Weekly Press Release (marketing) - description: Standard workflow to migrate weekly press release within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly press release requests. - - Execute migrate procedure on the designated press release. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly press release targets before running. -- name: marketing-migrate-monthly-press-release-879 - title: Migrate Monthly Press Release (marketing) - description: Standard workflow to migrate monthly press release within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly press release records. - - Review and migrate the monthly press release. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly press release targets before running. -- name: marketing-migrate-urgent-press-release-880 - title: Migrate Urgent Press Release (marketing) - description: Standard workflow to migrate urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent press release data. - - Apply marketing policies to migrate the press release. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent press release targets before running. -- name: marketing-migrate-secure-press-release-881 - title: Migrate Secure Press Release (marketing) - description: Standard workflow to migrate secure press release within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure press release requests. - - Execute migrate procedure on the designated press release. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure press release targets before running. -- name: marketing-migrate-weekly-brand-guidelines-882 - title: Migrate Weekly Brand Guidelines (marketing) - description: Standard workflow to migrate weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly brand guidelines records. - - Review and migrate the weekly brand guidelines. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly brand guidelines targets before running. -- name: marketing-migrate-monthly-brand-guidelines-883 - title: Migrate Monthly Brand Guidelines (marketing) - description: Standard workflow to migrate monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly brand guidelines data. - - Apply marketing policies to migrate the brand guidelines. - - Send a status update to the marketing team chat space. - caution: Action involves bulk data manipulation. Confirm monthly brand guidelines targets before running. -- name: marketing-migrate-urgent-brand-guidelines-884 - title: Migrate Urgent Brand Guidelines (marketing) - description: Standard workflow to migrate urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent brand guidelines requests. - - Execute migrate procedure on the designated brand guidelines. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent brand guidelines targets before running. -- name: marketing-migrate-secure-brand-guidelines-885 - title: Migrate Secure Brand Guidelines (marketing) - description: Standard workflow to migrate secure brand guidelines within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure brand guidelines records. - - Review and migrate the secure brand guidelines. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure brand guidelines targets before running. -- name: marketing-backup-weekly-campaign-886 - title: Backup Weekly Campaign (marketing) - description: Standard workflow to backup weekly campaign within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly campaign data. - - Apply marketing policies to backup the campaign. - - Notify stakeholders via email. -- name: marketing-backup-monthly-campaign-887 - title: Backup Monthly Campaign (marketing) - description: Standard workflow to backup monthly campaign within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly campaign requests. - - Execute backup procedure on the designated campaign. - - Send a status update to the marketing team chat space. -- name: marketing-backup-urgent-campaign-888 - title: Backup Urgent Campaign (marketing) - description: Standard workflow to backup urgent campaign within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent campaign records. - - Review and backup the urgent campaign. - - Log completion in the master tracking spreadsheet. -- name: marketing-backup-secure-campaign-889 - title: Backup Secure Campaign (marketing) - description: Standard workflow to backup secure campaign within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure campaign data. - - Apply marketing policies to backup the campaign. - - Archive results in a secure Drive folder. -- name: marketing-backup-weekly-asset-890 - title: Backup Weekly Asset (marketing) - description: Standard workflow to backup weekly asset within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly asset requests. - - Execute backup procedure on the designated asset. - - Notify stakeholders via email. -- name: marketing-backup-monthly-asset-891 - title: Backup Monthly Asset (marketing) - description: Standard workflow to backup monthly asset within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly asset records. - - Review and backup the monthly asset. - - Send a status update to the marketing team chat space. -- name: marketing-backup-urgent-asset-892 - title: Backup Urgent Asset (marketing) - description: Standard workflow to backup urgent asset within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent asset data. - - Apply marketing policies to backup the asset. - - Log completion in the master tracking spreadsheet. -- name: marketing-backup-secure-asset-893 - title: Backup Secure Asset (marketing) - description: Standard workflow to backup secure asset within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure asset requests. - - Execute backup procedure on the designated asset. - - Archive results in a secure Drive folder. -- name: marketing-backup-weekly-newsletter-894 - title: Backup Weekly Newsletter (marketing) - description: Standard workflow to backup weekly newsletter within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly newsletter records. - - Review and backup the weekly newsletter. - - Notify stakeholders via email. -- name: marketing-backup-monthly-newsletter-895 - title: Backup Monthly Newsletter (marketing) - description: Standard workflow to backup monthly newsletter within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly newsletter data. - - Apply marketing policies to backup the newsletter. - - Send a status update to the marketing team chat space. -- name: marketing-backup-urgent-newsletter-896 - title: Backup Urgent Newsletter (marketing) - description: Standard workflow to backup urgent newsletter within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent newsletter requests. - - Execute backup procedure on the designated newsletter. - - Log completion in the master tracking spreadsheet. -- name: marketing-backup-secure-newsletter-897 - title: Backup Secure Newsletter (marketing) - description: Standard workflow to backup secure newsletter within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure newsletter records. - - Review and backup the secure newsletter. - - Archive results in a secure Drive folder. -- name: marketing-backup-weekly-event-898 - title: Backup Weekly Event (marketing) - description: Standard workflow to backup weekly event within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly event data. - - Apply marketing policies to backup the event. - - Notify stakeholders via email. -- name: marketing-backup-monthly-event-899 - title: Backup Monthly Event (marketing) - description: Standard workflow to backup monthly event within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly event requests. - - Execute backup procedure on the designated event. - - Send a status update to the marketing team chat space. -- name: marketing-backup-urgent-event-900 - title: Backup Urgent Event (marketing) - description: Standard workflow to backup urgent event within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent event records. - - Review and backup the urgent event. - - Log completion in the master tracking spreadsheet. -- name: marketing-backup-secure-event-901 - title: Backup Secure Event (marketing) - description: Standard workflow to backup secure event within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure event data. - - Apply marketing policies to backup the event. - - Archive results in a secure Drive folder. -- name: marketing-backup-weekly-social-post-902 - title: Backup Weekly Social Post (marketing) - description: Standard workflow to backup weekly social post within the marketing department. - category: marketing - services: - - gmail - - sheets - - docs - steps: - - Check system for pending weekly social post requests. - - Execute backup procedure on the designated social post. - - Notify stakeholders via email. -- name: marketing-backup-monthly-social-post-903 - title: Backup Monthly Social Post (marketing) - description: Standard workflow to backup monthly social post within the marketing department. - category: marketing - services: - - sheets - steps: - - Search for monthly social post records. - - Review and backup the monthly social post. - - Send a status update to the marketing team chat space. -- name: marketing-backup-urgent-social-post-904 - title: Backup Urgent Social Post (marketing) - description: Standard workflow to backup urgent social post within the marketing department. - category: marketing - services: - - docs - - drive - steps: - - Fetch latest urgent social post data. - - Apply marketing policies to backup the social post. - - Log completion in the master tracking spreadsheet. -- name: marketing-backup-secure-social-post-905 - title: Backup Secure Social Post (marketing) - description: Standard workflow to backup secure social post within the marketing department. - category: marketing - services: - - drive - - gmail - - sheets - steps: - - Check system for pending secure social post requests. - - Execute backup procedure on the designated social post. - - Archive results in a secure Drive folder. -- name: marketing-backup-weekly-press-release-906 - title: Backup Weekly Press Release (marketing) - description: Standard workflow to backup weekly press release within the marketing department. - category: marketing - services: - - gmail - steps: - - Search for weekly press release records. - - Review and backup the weekly press release. - - Notify stakeholders via email. -- name: marketing-backup-monthly-press-release-907 - title: Backup Monthly Press Release (marketing) - description: Standard workflow to backup monthly press release within the marketing department. - category: marketing - services: - - sheets - - docs - steps: - - Fetch latest monthly press release data. - - Apply marketing policies to backup the press release. - - Send a status update to the marketing team chat space. -- name: marketing-backup-urgent-press-release-908 - title: Backup Urgent Press Release (marketing) - description: Standard workflow to backup urgent press release within the marketing department. - category: marketing - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent press release requests. - - Execute backup procedure on the designated press release. - - Log completion in the master tracking spreadsheet. -- name: marketing-backup-secure-press-release-909 - title: Backup Secure Press Release (marketing) - description: Standard workflow to backup secure press release within the marketing department. - category: marketing - services: - - drive - steps: - - Search for secure press release records. - - Review and backup the secure press release. - - Archive results in a secure Drive folder. -- name: marketing-backup-weekly-brand-guidelines-910 - title: Backup Weekly Brand Guidelines (marketing) - description: Standard workflow to backup weekly brand guidelines within the marketing department. - category: marketing - services: - - gmail - - sheets - steps: - - Fetch latest weekly brand guidelines data. - - Apply marketing policies to backup the brand guidelines. - - Notify stakeholders via email. -- name: marketing-backup-monthly-brand-guidelines-911 - title: Backup Monthly Brand Guidelines (marketing) - description: Standard workflow to backup monthly brand guidelines within the marketing department. - category: marketing - services: - - sheets - - docs - - drive - steps: - - Check system for pending monthly brand guidelines requests. - - Execute backup procedure on the designated brand guidelines. - - Send a status update to the marketing team chat space. -- name: marketing-backup-urgent-brand-guidelines-912 - title: Backup Urgent Brand Guidelines (marketing) - description: Standard workflow to backup urgent brand guidelines within the marketing department. - category: marketing - services: - - docs - steps: - - Search for urgent brand guidelines records. - - Review and backup the urgent brand guidelines. - - Log completion in the master tracking spreadsheet. -- name: marketing-backup-secure-brand-guidelines-913 - title: Backup Secure Brand Guidelines (marketing) - description: Standard workflow to backup secure brand guidelines within the marketing department. - category: marketing - services: - - drive - - gmail - steps: - - Fetch latest secure brand guidelines data. - - Apply marketing policies to backup the brand guidelines. - - Archive results in a secure Drive folder. -- name: it-audit-weekly-user-account-914 - title: Audit Weekly User Account (it) - description: Standard workflow to audit weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute audit procedure on the designated user account. - - Notify stakeholders via email. -- name: it-audit-monthly-user-account-915 - title: Audit Monthly User Account (it) - description: Standard workflow to audit monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and audit the monthly user account. - - Send a status update to the it team chat space. -- name: it-audit-urgent-user-account-916 - title: Audit Urgent User Account (it) - description: Standard workflow to audit urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to audit the user account. - - Log completion in the master tracking spreadsheet. -- name: it-audit-secure-user-account-917 - title: Audit Secure User Account (it) - description: Standard workflow to audit secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute audit procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-audit-weekly-device-918 - title: Audit Weekly Device (it) - description: Standard workflow to audit weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and audit the weekly device. - - Notify stakeholders via email. -- name: it-audit-monthly-device-919 - title: Audit Monthly Device (it) - description: Standard workflow to audit monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to audit the device. - - Send a status update to the it team chat space. -- name: it-audit-urgent-device-920 - title: Audit Urgent Device (it) - description: Standard workflow to audit urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute audit procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-audit-secure-device-921 - title: Audit Secure Device (it) - description: Standard workflow to audit secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and audit the secure device. - - Archive results in a secure Drive folder. -- name: it-audit-weekly-license-922 - title: Audit Weekly License (it) - description: Standard workflow to audit weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to audit the license. - - Notify stakeholders via email. -- name: it-audit-monthly-license-923 - title: Audit Monthly License (it) - description: Standard workflow to audit monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute audit procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-audit-urgent-license-924 - title: Audit Urgent License (it) - description: Standard workflow to audit urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and audit the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-audit-secure-license-925 - title: Audit Secure License (it) - description: Standard workflow to audit secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to audit the license. - - Archive results in a secure Drive folder. -- name: it-audit-weekly-security-policy-926 - title: Audit Weekly Security Policy (it) - description: Standard workflow to audit weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute audit procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-audit-monthly-security-policy-927 - title: Audit Monthly Security Policy (it) - description: Standard workflow to audit monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and audit the monthly security policy. - - Send a status update to the it team chat space. -- name: it-audit-urgent-security-policy-928 - title: Audit Urgent Security Policy (it) - description: Standard workflow to audit urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to audit the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-audit-secure-security-policy-929 - title: Audit Secure Security Policy (it) - description: Standard workflow to audit secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute audit procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-audit-weekly-audit-log-930 - title: Audit Weekly Audit Log (it) - description: Standard workflow to audit weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and audit the weekly audit log. - - Notify stakeholders via email. -- name: it-audit-monthly-audit-log-931 - title: Audit Monthly Audit Log (it) - description: Standard workflow to audit monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to audit the audit log. - - Send a status update to the it team chat space. -- name: it-audit-urgent-audit-log-932 - title: Audit Urgent Audit Log (it) - description: Standard workflow to audit urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute audit procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-audit-secure-audit-log-933 - title: Audit Secure Audit Log (it) - description: Standard workflow to audit secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and audit the secure audit log. - - Archive results in a secure Drive folder. -- name: it-audit-weekly-network-config-934 - title: Audit Weekly Network Config (it) - description: Standard workflow to audit weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to audit the network config. - - Notify stakeholders via email. -- name: it-audit-monthly-network-config-935 - title: Audit Monthly Network Config (it) - description: Standard workflow to audit monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute audit procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-audit-urgent-network-config-936 - title: Audit Urgent Network Config (it) - description: Standard workflow to audit urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and audit the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-audit-secure-network-config-937 - title: Audit Secure Network Config (it) - description: Standard workflow to audit secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to audit the network config. - - Archive results in a secure Drive folder. -- name: it-onboard-weekly-user-account-938 - title: Onboard Weekly User Account (it) - description: Standard workflow to onboard weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute onboard procedure on the designated user account. - - Notify stakeholders via email. -- name: it-onboard-monthly-user-account-939 - title: Onboard Monthly User Account (it) - description: Standard workflow to onboard monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and onboard the monthly user account. - - Send a status update to the it team chat space. -- name: it-onboard-urgent-user-account-940 - title: Onboard Urgent User Account (it) - description: Standard workflow to onboard urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to onboard the user account. - - Log completion in the master tracking spreadsheet. -- name: it-onboard-secure-user-account-941 - title: Onboard Secure User Account (it) - description: Standard workflow to onboard secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute onboard procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-onboard-weekly-device-942 - title: Onboard Weekly Device (it) - description: Standard workflow to onboard weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and onboard the weekly device. - - Notify stakeholders via email. -- name: it-onboard-monthly-device-943 - title: Onboard Monthly Device (it) - description: Standard workflow to onboard monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to onboard the device. - - Send a status update to the it team chat space. -- name: it-onboard-urgent-device-944 - title: Onboard Urgent Device (it) - description: Standard workflow to onboard urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute onboard procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-onboard-secure-device-945 - title: Onboard Secure Device (it) - description: Standard workflow to onboard secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and onboard the secure device. - - Archive results in a secure Drive folder. -- name: it-onboard-weekly-license-946 - title: Onboard Weekly License (it) - description: Standard workflow to onboard weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to onboard the license. - - Notify stakeholders via email. -- name: it-onboard-monthly-license-947 - title: Onboard Monthly License (it) - description: Standard workflow to onboard monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute onboard procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-onboard-urgent-license-948 - title: Onboard Urgent License (it) - description: Standard workflow to onboard urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and onboard the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-onboard-secure-license-949 - title: Onboard Secure License (it) - description: Standard workflow to onboard secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to onboard the license. - - Archive results in a secure Drive folder. -- name: it-onboard-weekly-security-policy-950 - title: Onboard Weekly Security Policy (it) - description: Standard workflow to onboard weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute onboard procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-onboard-monthly-security-policy-951 - title: Onboard Monthly Security Policy (it) - description: Standard workflow to onboard monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and onboard the monthly security policy. - - Send a status update to the it team chat space. -- name: it-onboard-urgent-security-policy-952 - title: Onboard Urgent Security Policy (it) - description: Standard workflow to onboard urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to onboard the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-onboard-secure-security-policy-953 - title: Onboard Secure Security Policy (it) - description: Standard workflow to onboard secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute onboard procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-onboard-weekly-audit-log-954 - title: Onboard Weekly Audit Log (it) - description: Standard workflow to onboard weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and onboard the weekly audit log. - - Notify stakeholders via email. -- name: it-onboard-monthly-audit-log-955 - title: Onboard Monthly Audit Log (it) - description: Standard workflow to onboard monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to onboard the audit log. - - Send a status update to the it team chat space. -- name: it-onboard-urgent-audit-log-956 - title: Onboard Urgent Audit Log (it) - description: Standard workflow to onboard urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute onboard procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-onboard-secure-audit-log-957 - title: Onboard Secure Audit Log (it) - description: Standard workflow to onboard secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and onboard the secure audit log. - - Archive results in a secure Drive folder. -- name: it-onboard-weekly-network-config-958 - title: Onboard Weekly Network Config (it) - description: Standard workflow to onboard weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to onboard the network config. - - Notify stakeholders via email. -- name: it-onboard-monthly-network-config-959 - title: Onboard Monthly Network Config (it) - description: Standard workflow to onboard monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute onboard procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-onboard-urgent-network-config-960 - title: Onboard Urgent Network Config (it) - description: Standard workflow to onboard urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and onboard the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-onboard-secure-network-config-961 - title: Onboard Secure Network Config (it) - description: Standard workflow to onboard secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to onboard the network config. - - Archive results in a secure Drive folder. -- name: it-review-weekly-user-account-962 - title: Review Weekly User Account (it) - description: Standard workflow to review weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute review procedure on the designated user account. - - Notify stakeholders via email. -- name: it-review-monthly-user-account-963 - title: Review Monthly User Account (it) - description: Standard workflow to review monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and review the monthly user account. - - Send a status update to the it team chat space. -- name: it-review-urgent-user-account-964 - title: Review Urgent User Account (it) - description: Standard workflow to review urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to review the user account. - - Log completion in the master tracking spreadsheet. -- name: it-review-secure-user-account-965 - title: Review Secure User Account (it) - description: Standard workflow to review secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute review procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-review-weekly-device-966 - title: Review Weekly Device (it) - description: Standard workflow to review weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and review the weekly device. - - Notify stakeholders via email. -- name: it-review-monthly-device-967 - title: Review Monthly Device (it) - description: Standard workflow to review monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to review the device. - - Send a status update to the it team chat space. -- name: it-review-urgent-device-968 - title: Review Urgent Device (it) - description: Standard workflow to review urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute review procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-review-secure-device-969 - title: Review Secure Device (it) - description: Standard workflow to review secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and review the secure device. - - Archive results in a secure Drive folder. -- name: it-review-weekly-license-970 - title: Review Weekly License (it) - description: Standard workflow to review weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to review the license. - - Notify stakeholders via email. -- name: it-review-monthly-license-971 - title: Review Monthly License (it) - description: Standard workflow to review monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute review procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-review-urgent-license-972 - title: Review Urgent License (it) - description: Standard workflow to review urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and review the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-review-secure-license-973 - title: Review Secure License (it) - description: Standard workflow to review secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to review the license. - - Archive results in a secure Drive folder. -- name: it-review-weekly-security-policy-974 - title: Review Weekly Security Policy (it) - description: Standard workflow to review weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute review procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-review-monthly-security-policy-975 - title: Review Monthly Security Policy (it) - description: Standard workflow to review monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and review the monthly security policy. - - Send a status update to the it team chat space. -- name: it-review-urgent-security-policy-976 - title: Review Urgent Security Policy (it) - description: Standard workflow to review urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to review the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-review-secure-security-policy-977 - title: Review Secure Security Policy (it) - description: Standard workflow to review secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute review procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-review-weekly-audit-log-978 - title: Review Weekly Audit Log (it) - description: Standard workflow to review weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and review the weekly audit log. - - Notify stakeholders via email. -- name: it-review-monthly-audit-log-979 - title: Review Monthly Audit Log (it) - description: Standard workflow to review monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to review the audit log. - - Send a status update to the it team chat space. -- name: it-review-urgent-audit-log-980 - title: Review Urgent Audit Log (it) - description: Standard workflow to review urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute review procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-review-secure-audit-log-981 - title: Review Secure Audit Log (it) - description: Standard workflow to review secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and review the secure audit log. - - Archive results in a secure Drive folder. -- name: it-review-weekly-network-config-982 - title: Review Weekly Network Config (it) - description: Standard workflow to review weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to review the network config. - - Notify stakeholders via email. -- name: it-review-monthly-network-config-983 - title: Review Monthly Network Config (it) - description: Standard workflow to review monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute review procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-review-urgent-network-config-984 - title: Review Urgent Network Config (it) - description: Standard workflow to review urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and review the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-review-secure-network-config-985 - title: Review Secure Network Config (it) - description: Standard workflow to review secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to review the network config. - - Archive results in a secure Drive folder. -- name: it-approve-weekly-user-account-986 - title: Approve Weekly User Account (it) - description: Standard workflow to approve weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute approve procedure on the designated user account. - - Notify stakeholders via email. -- name: it-approve-monthly-user-account-987 - title: Approve Monthly User Account (it) - description: Standard workflow to approve monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and approve the monthly user account. - - Send a status update to the it team chat space. -- name: it-approve-urgent-user-account-988 - title: Approve Urgent User Account (it) - description: Standard workflow to approve urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to approve the user account. - - Log completion in the master tracking spreadsheet. -- name: it-approve-secure-user-account-989 - title: Approve Secure User Account (it) - description: Standard workflow to approve secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute approve procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-approve-weekly-device-990 - title: Approve Weekly Device (it) - description: Standard workflow to approve weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and approve the weekly device. - - Notify stakeholders via email. -- name: it-approve-monthly-device-991 - title: Approve Monthly Device (it) - description: Standard workflow to approve monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to approve the device. - - Send a status update to the it team chat space. -- name: it-approve-urgent-device-992 - title: Approve Urgent Device (it) - description: Standard workflow to approve urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute approve procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-approve-secure-device-993 - title: Approve Secure Device (it) - description: Standard workflow to approve secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and approve the secure device. - - Archive results in a secure Drive folder. -- name: it-approve-weekly-license-994 - title: Approve Weekly License (it) - description: Standard workflow to approve weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to approve the license. - - Notify stakeholders via email. -- name: it-approve-monthly-license-995 - title: Approve Monthly License (it) - description: Standard workflow to approve monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute approve procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-approve-urgent-license-996 - title: Approve Urgent License (it) - description: Standard workflow to approve urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and approve the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-approve-secure-license-997 - title: Approve Secure License (it) - description: Standard workflow to approve secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to approve the license. - - Archive results in a secure Drive folder. -- name: it-approve-weekly-security-policy-998 - title: Approve Weekly Security Policy (it) - description: Standard workflow to approve weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute approve procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-approve-monthly-security-policy-999 - title: Approve Monthly Security Policy (it) - description: Standard workflow to approve monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and approve the monthly security policy. - - Send a status update to the it team chat space. -- name: it-approve-urgent-security-policy-1000 - title: Approve Urgent Security Policy (it) - description: Standard workflow to approve urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to approve the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-approve-secure-security-policy-1001 - title: Approve Secure Security Policy (it) - description: Standard workflow to approve secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute approve procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-approve-weekly-audit-log-1002 - title: Approve Weekly Audit Log (it) - description: Standard workflow to approve weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and approve the weekly audit log. - - Notify stakeholders via email. -- name: it-approve-monthly-audit-log-1003 - title: Approve Monthly Audit Log (it) - description: Standard workflow to approve monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to approve the audit log. - - Send a status update to the it team chat space. -- name: it-approve-urgent-audit-log-1004 - title: Approve Urgent Audit Log (it) - description: Standard workflow to approve urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute approve procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-approve-secure-audit-log-1005 - title: Approve Secure Audit Log (it) - description: Standard workflow to approve secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and approve the secure audit log. - - Archive results in a secure Drive folder. -- name: it-approve-weekly-network-config-1006 - title: Approve Weekly Network Config (it) - description: Standard workflow to approve weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to approve the network config. - - Notify stakeholders via email. -- name: it-approve-monthly-network-config-1007 - title: Approve Monthly Network Config (it) - description: Standard workflow to approve monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute approve procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-approve-urgent-network-config-1008 - title: Approve Urgent Network Config (it) - description: Standard workflow to approve urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and approve the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-approve-secure-network-config-1009 - title: Approve Secure Network Config (it) - description: Standard workflow to approve secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to approve the network config. - - Archive results in a secure Drive folder. -- name: it-share-weekly-user-account-1010 - title: Share Weekly User Account (it) - description: Standard workflow to share weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute share procedure on the designated user account. - - Notify stakeholders via email. -- name: it-share-monthly-user-account-1011 - title: Share Monthly User Account (it) - description: Standard workflow to share monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and share the monthly user account. - - Send a status update to the it team chat space. -- name: it-share-urgent-user-account-1012 - title: Share Urgent User Account (it) - description: Standard workflow to share urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to share the user account. - - Log completion in the master tracking spreadsheet. -- name: it-share-secure-user-account-1013 - title: Share Secure User Account (it) - description: Standard workflow to share secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute share procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-share-weekly-device-1014 - title: Share Weekly Device (it) - description: Standard workflow to share weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and share the weekly device. - - Notify stakeholders via email. -- name: it-share-monthly-device-1015 - title: Share Monthly Device (it) - description: Standard workflow to share monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to share the device. - - Send a status update to the it team chat space. -- name: it-share-urgent-device-1016 - title: Share Urgent Device (it) - description: Standard workflow to share urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute share procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-share-secure-device-1017 - title: Share Secure Device (it) - description: Standard workflow to share secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and share the secure device. - - Archive results in a secure Drive folder. -- name: it-share-weekly-license-1018 - title: Share Weekly License (it) - description: Standard workflow to share weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to share the license. - - Notify stakeholders via email. -- name: it-share-monthly-license-1019 - title: Share Monthly License (it) - description: Standard workflow to share monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute share procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-share-urgent-license-1020 - title: Share Urgent License (it) - description: Standard workflow to share urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and share the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-share-secure-license-1021 - title: Share Secure License (it) - description: Standard workflow to share secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to share the license. - - Archive results in a secure Drive folder. -- name: it-share-weekly-security-policy-1022 - title: Share Weekly Security Policy (it) - description: Standard workflow to share weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute share procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-share-monthly-security-policy-1023 - title: Share Monthly Security Policy (it) - description: Standard workflow to share monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and share the monthly security policy. - - Send a status update to the it team chat space. -- name: it-share-urgent-security-policy-1024 - title: Share Urgent Security Policy (it) - description: Standard workflow to share urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to share the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-share-secure-security-policy-1025 - title: Share Secure Security Policy (it) - description: Standard workflow to share secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute share procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-share-weekly-audit-log-1026 - title: Share Weekly Audit Log (it) - description: Standard workflow to share weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and share the weekly audit log. - - Notify stakeholders via email. -- name: it-share-monthly-audit-log-1027 - title: Share Monthly Audit Log (it) - description: Standard workflow to share monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to share the audit log. - - Send a status update to the it team chat space. -- name: it-share-urgent-audit-log-1028 - title: Share Urgent Audit Log (it) - description: Standard workflow to share urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute share procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-share-secure-audit-log-1029 - title: Share Secure Audit Log (it) - description: Standard workflow to share secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and share the secure audit log. - - Archive results in a secure Drive folder. -- name: it-share-weekly-network-config-1030 - title: Share Weekly Network Config (it) - description: Standard workflow to share weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to share the network config. - - Notify stakeholders via email. -- name: it-share-monthly-network-config-1031 - title: Share Monthly Network Config (it) - description: Standard workflow to share monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute share procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-share-urgent-network-config-1032 - title: Share Urgent Network Config (it) - description: Standard workflow to share urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and share the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-share-secure-network-config-1033 - title: Share Secure Network Config (it) - description: Standard workflow to share secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to share the network config. - - Archive results in a secure Drive folder. -- name: it-publish-weekly-user-account-1034 - title: Publish Weekly User Account (it) - description: Standard workflow to publish weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute publish procedure on the designated user account. - - Notify stakeholders via email. -- name: it-publish-monthly-user-account-1035 - title: Publish Monthly User Account (it) - description: Standard workflow to publish monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and publish the monthly user account. - - Send a status update to the it team chat space. -- name: it-publish-urgent-user-account-1036 - title: Publish Urgent User Account (it) - description: Standard workflow to publish urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to publish the user account. - - Log completion in the master tracking spreadsheet. -- name: it-publish-secure-user-account-1037 - title: Publish Secure User Account (it) - description: Standard workflow to publish secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute publish procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-publish-weekly-device-1038 - title: Publish Weekly Device (it) - description: Standard workflow to publish weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and publish the weekly device. - - Notify stakeholders via email. -- name: it-publish-monthly-device-1039 - title: Publish Monthly Device (it) - description: Standard workflow to publish monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to publish the device. - - Send a status update to the it team chat space. -- name: it-publish-urgent-device-1040 - title: Publish Urgent Device (it) - description: Standard workflow to publish urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute publish procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-publish-secure-device-1041 - title: Publish Secure Device (it) - description: Standard workflow to publish secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and publish the secure device. - - Archive results in a secure Drive folder. -- name: it-publish-weekly-license-1042 - title: Publish Weekly License (it) - description: Standard workflow to publish weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to publish the license. - - Notify stakeholders via email. -- name: it-publish-monthly-license-1043 - title: Publish Monthly License (it) - description: Standard workflow to publish monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute publish procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-publish-urgent-license-1044 - title: Publish Urgent License (it) - description: Standard workflow to publish urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and publish the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-publish-secure-license-1045 - title: Publish Secure License (it) - description: Standard workflow to publish secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to publish the license. - - Archive results in a secure Drive folder. -- name: it-publish-weekly-security-policy-1046 - title: Publish Weekly Security Policy (it) - description: Standard workflow to publish weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute publish procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-publish-monthly-security-policy-1047 - title: Publish Monthly Security Policy (it) - description: Standard workflow to publish monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and publish the monthly security policy. - - Send a status update to the it team chat space. -- name: it-publish-urgent-security-policy-1048 - title: Publish Urgent Security Policy (it) - description: Standard workflow to publish urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to publish the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-publish-secure-security-policy-1049 - title: Publish Secure Security Policy (it) - description: Standard workflow to publish secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute publish procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-publish-weekly-audit-log-1050 - title: Publish Weekly Audit Log (it) - description: Standard workflow to publish weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and publish the weekly audit log. - - Notify stakeholders via email. -- name: it-publish-monthly-audit-log-1051 - title: Publish Monthly Audit Log (it) - description: Standard workflow to publish monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to publish the audit log. - - Send a status update to the it team chat space. -- name: it-publish-urgent-audit-log-1052 - title: Publish Urgent Audit Log (it) - description: Standard workflow to publish urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute publish procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-publish-secure-audit-log-1053 - title: Publish Secure Audit Log (it) - description: Standard workflow to publish secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and publish the secure audit log. - - Archive results in a secure Drive folder. -- name: it-publish-weekly-network-config-1054 - title: Publish Weekly Network Config (it) - description: Standard workflow to publish weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to publish the network config. - - Notify stakeholders via email. -- name: it-publish-monthly-network-config-1055 - title: Publish Monthly Network Config (it) - description: Standard workflow to publish monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute publish procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-publish-urgent-network-config-1056 - title: Publish Urgent Network Config (it) - description: Standard workflow to publish urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and publish the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-publish-secure-network-config-1057 - title: Publish Secure Network Config (it) - description: Standard workflow to publish secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to publish the network config. - - Archive results in a secure Drive folder. -- name: it-archive-weekly-user-account-1058 - title: Archive Weekly User Account (it) - description: Standard workflow to archive weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute archive procedure on the designated user account. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly user account targets before running. -- name: it-archive-monthly-user-account-1059 - title: Archive Monthly User Account (it) - description: Standard workflow to archive monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and archive the monthly user account. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly user account targets before running. -- name: it-archive-urgent-user-account-1060 - title: Archive Urgent User Account (it) - description: Standard workflow to archive urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to archive the user account. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent user account targets before running. -- name: it-archive-secure-user-account-1061 - title: Archive Secure User Account (it) - description: Standard workflow to archive secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute archive procedure on the designated user account. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure user account targets before running. -- name: it-archive-weekly-device-1062 - title: Archive Weekly Device (it) - description: Standard workflow to archive weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and archive the weekly device. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly device targets before running. -- name: it-archive-monthly-device-1063 - title: Archive Monthly Device (it) - description: Standard workflow to archive monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to archive the device. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly device targets before running. -- name: it-archive-urgent-device-1064 - title: Archive Urgent Device (it) - description: Standard workflow to archive urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute archive procedure on the designated device. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent device targets before running. -- name: it-archive-secure-device-1065 - title: Archive Secure Device (it) - description: Standard workflow to archive secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and archive the secure device. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure device targets before running. -- name: it-archive-weekly-license-1066 - title: Archive Weekly License (it) - description: Standard workflow to archive weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to archive the license. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly license targets before running. -- name: it-archive-monthly-license-1067 - title: Archive Monthly License (it) - description: Standard workflow to archive monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute archive procedure on the designated license. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly license targets before running. -- name: it-archive-urgent-license-1068 - title: Archive Urgent License (it) - description: Standard workflow to archive urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and archive the urgent license. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent license targets before running. -- name: it-archive-secure-license-1069 - title: Archive Secure License (it) - description: Standard workflow to archive secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to archive the license. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure license targets before running. -- name: it-archive-weekly-security-policy-1070 - title: Archive Weekly Security Policy (it) - description: Standard workflow to archive weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute archive procedure on the designated security policy. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly security policy targets before running. -- name: it-archive-monthly-security-policy-1071 - title: Archive Monthly Security Policy (it) - description: Standard workflow to archive monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and archive the monthly security policy. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly security policy targets before running. -- name: it-archive-urgent-security-policy-1072 - title: Archive Urgent Security Policy (it) - description: Standard workflow to archive urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to archive the security policy. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent security policy targets before running. -- name: it-archive-secure-security-policy-1073 - title: Archive Secure Security Policy (it) - description: Standard workflow to archive secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute archive procedure on the designated security policy. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure security policy targets before running. -- name: it-archive-weekly-audit-log-1074 - title: Archive Weekly Audit Log (it) - description: Standard workflow to archive weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and archive the weekly audit log. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly audit log targets before running. -- name: it-archive-monthly-audit-log-1075 - title: Archive Monthly Audit Log (it) - description: Standard workflow to archive monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to archive the audit log. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly audit log targets before running. -- name: it-archive-urgent-audit-log-1076 - title: Archive Urgent Audit Log (it) - description: Standard workflow to archive urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute archive procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent audit log targets before running. -- name: it-archive-secure-audit-log-1077 - title: Archive Secure Audit Log (it) - description: Standard workflow to archive secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and archive the secure audit log. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure audit log targets before running. -- name: it-archive-weekly-network-config-1078 - title: Archive Weekly Network Config (it) - description: Standard workflow to archive weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to archive the network config. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly network config targets before running. -- name: it-archive-monthly-network-config-1079 - title: Archive Monthly Network Config (it) - description: Standard workflow to archive monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute archive procedure on the designated network config. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly network config targets before running. -- name: it-archive-urgent-network-config-1080 - title: Archive Urgent Network Config (it) - description: Standard workflow to archive urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and archive the urgent network config. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent network config targets before running. -- name: it-archive-secure-network-config-1081 - title: Archive Secure Network Config (it) - description: Standard workflow to archive secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to archive the network config. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure network config targets before running. -- name: it-export-weekly-user-account-1082 - title: Export Weekly User Account (it) - description: Standard workflow to export weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute export procedure on the designated user account. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly user account targets before running. -- name: it-export-monthly-user-account-1083 - title: Export Monthly User Account (it) - description: Standard workflow to export monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and export the monthly user account. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly user account targets before running. -- name: it-export-urgent-user-account-1084 - title: Export Urgent User Account (it) - description: Standard workflow to export urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to export the user account. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent user account targets before running. -- name: it-export-secure-user-account-1085 - title: Export Secure User Account (it) - description: Standard workflow to export secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute export procedure on the designated user account. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure user account targets before running. -- name: it-export-weekly-device-1086 - title: Export Weekly Device (it) - description: Standard workflow to export weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and export the weekly device. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly device targets before running. -- name: it-export-monthly-device-1087 - title: Export Monthly Device (it) - description: Standard workflow to export monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to export the device. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly device targets before running. -- name: it-export-urgent-device-1088 - title: Export Urgent Device (it) - description: Standard workflow to export urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute export procedure on the designated device. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent device targets before running. -- name: it-export-secure-device-1089 - title: Export Secure Device (it) - description: Standard workflow to export secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and export the secure device. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure device targets before running. -- name: it-export-weekly-license-1090 - title: Export Weekly License (it) - description: Standard workflow to export weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to export the license. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly license targets before running. -- name: it-export-monthly-license-1091 - title: Export Monthly License (it) - description: Standard workflow to export monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute export procedure on the designated license. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly license targets before running. -- name: it-export-urgent-license-1092 - title: Export Urgent License (it) - description: Standard workflow to export urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and export the urgent license. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent license targets before running. -- name: it-export-secure-license-1093 - title: Export Secure License (it) - description: Standard workflow to export secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to export the license. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure license targets before running. -- name: it-export-weekly-security-policy-1094 - title: Export Weekly Security Policy (it) - description: Standard workflow to export weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute export procedure on the designated security policy. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly security policy targets before running. -- name: it-export-monthly-security-policy-1095 - title: Export Monthly Security Policy (it) - description: Standard workflow to export monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and export the monthly security policy. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly security policy targets before running. -- name: it-export-urgent-security-policy-1096 - title: Export Urgent Security Policy (it) - description: Standard workflow to export urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to export the security policy. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent security policy targets before running. -- name: it-export-secure-security-policy-1097 - title: Export Secure Security Policy (it) - description: Standard workflow to export secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute export procedure on the designated security policy. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure security policy targets before running. -- name: it-export-weekly-audit-log-1098 - title: Export Weekly Audit Log (it) - description: Standard workflow to export weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and export the weekly audit log. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly audit log targets before running. -- name: it-export-monthly-audit-log-1099 - title: Export Monthly Audit Log (it) - description: Standard workflow to export monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to export the audit log. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly audit log targets before running. -- name: it-export-urgent-audit-log-1100 - title: Export Urgent Audit Log (it) - description: Standard workflow to export urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute export procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent audit log targets before running. -- name: it-export-secure-audit-log-1101 - title: Export Secure Audit Log (it) - description: Standard workflow to export secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and export the secure audit log. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure audit log targets before running. -- name: it-export-weekly-network-config-1102 - title: Export Weekly Network Config (it) - description: Standard workflow to export weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to export the network config. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly network config targets before running. -- name: it-export-monthly-network-config-1103 - title: Export Monthly Network Config (it) - description: Standard workflow to export monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute export procedure on the designated network config. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly network config targets before running. -- name: it-export-urgent-network-config-1104 - title: Export Urgent Network Config (it) - description: Standard workflow to export urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and export the urgent network config. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent network config targets before running. -- name: it-export-secure-network-config-1105 - title: Export Secure Network Config (it) - description: Standard workflow to export secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to export the network config. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure network config targets before running. -- name: it-import-weekly-user-account-1106 - title: Import Weekly User Account (it) - description: Standard workflow to import weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute import procedure on the designated user account. - - Notify stakeholders via email. -- name: it-import-monthly-user-account-1107 - title: Import Monthly User Account (it) - description: Standard workflow to import monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and import the monthly user account. - - Send a status update to the it team chat space. -- name: it-import-urgent-user-account-1108 - title: Import Urgent User Account (it) - description: Standard workflow to import urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to import the user account. - - Log completion in the master tracking spreadsheet. -- name: it-import-secure-user-account-1109 - title: Import Secure User Account (it) - description: Standard workflow to import secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute import procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-import-weekly-device-1110 - title: Import Weekly Device (it) - description: Standard workflow to import weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and import the weekly device. - - Notify stakeholders via email. -- name: it-import-monthly-device-1111 - title: Import Monthly Device (it) - description: Standard workflow to import monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to import the device. - - Send a status update to the it team chat space. -- name: it-import-urgent-device-1112 - title: Import Urgent Device (it) - description: Standard workflow to import urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute import procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-import-secure-device-1113 - title: Import Secure Device (it) - description: Standard workflow to import secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and import the secure device. - - Archive results in a secure Drive folder. -- name: it-import-weekly-license-1114 - title: Import Weekly License (it) - description: Standard workflow to import weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to import the license. - - Notify stakeholders via email. -- name: it-import-monthly-license-1115 - title: Import Monthly License (it) - description: Standard workflow to import monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute import procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-import-urgent-license-1116 - title: Import Urgent License (it) - description: Standard workflow to import urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and import the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-import-secure-license-1117 - title: Import Secure License (it) - description: Standard workflow to import secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to import the license. - - Archive results in a secure Drive folder. -- name: it-import-weekly-security-policy-1118 - title: Import Weekly Security Policy (it) - description: Standard workflow to import weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute import procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-import-monthly-security-policy-1119 - title: Import Monthly Security Policy (it) - description: Standard workflow to import monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and import the monthly security policy. - - Send a status update to the it team chat space. -- name: it-import-urgent-security-policy-1120 - title: Import Urgent Security Policy (it) - description: Standard workflow to import urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to import the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-import-secure-security-policy-1121 - title: Import Secure Security Policy (it) - description: Standard workflow to import secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute import procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-import-weekly-audit-log-1122 - title: Import Weekly Audit Log (it) - description: Standard workflow to import weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and import the weekly audit log. - - Notify stakeholders via email. -- name: it-import-monthly-audit-log-1123 - title: Import Monthly Audit Log (it) - description: Standard workflow to import monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to import the audit log. - - Send a status update to the it team chat space. -- name: it-import-urgent-audit-log-1124 - title: Import Urgent Audit Log (it) - description: Standard workflow to import urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute import procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-import-secure-audit-log-1125 - title: Import Secure Audit Log (it) - description: Standard workflow to import secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and import the secure audit log. - - Archive results in a secure Drive folder. -- name: it-import-weekly-network-config-1126 - title: Import Weekly Network Config (it) - description: Standard workflow to import weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to import the network config. - - Notify stakeholders via email. -- name: it-import-monthly-network-config-1127 - title: Import Monthly Network Config (it) - description: Standard workflow to import monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute import procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-import-urgent-network-config-1128 - title: Import Urgent Network Config (it) - description: Standard workflow to import urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and import the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-import-secure-network-config-1129 - title: Import Secure Network Config (it) - description: Standard workflow to import secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to import the network config. - - Archive results in a secure Drive folder. -- name: it-sync-weekly-user-account-1130 - title: Sync Weekly User Account (it) - description: Standard workflow to sync weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute sync procedure on the designated user account. - - Notify stakeholders via email. -- name: it-sync-monthly-user-account-1131 - title: Sync Monthly User Account (it) - description: Standard workflow to sync monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and sync the monthly user account. - - Send a status update to the it team chat space. -- name: it-sync-urgent-user-account-1132 - title: Sync Urgent User Account (it) - description: Standard workflow to sync urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to sync the user account. - - Log completion in the master tracking spreadsheet. -- name: it-sync-secure-user-account-1133 - title: Sync Secure User Account (it) - description: Standard workflow to sync secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute sync procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-sync-weekly-device-1134 - title: Sync Weekly Device (it) - description: Standard workflow to sync weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and sync the weekly device. - - Notify stakeholders via email. -- name: it-sync-monthly-device-1135 - title: Sync Monthly Device (it) - description: Standard workflow to sync monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to sync the device. - - Send a status update to the it team chat space. -- name: it-sync-urgent-device-1136 - title: Sync Urgent Device (it) - description: Standard workflow to sync urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute sync procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-sync-secure-device-1137 - title: Sync Secure Device (it) - description: Standard workflow to sync secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and sync the secure device. - - Archive results in a secure Drive folder. -- name: it-sync-weekly-license-1138 - title: Sync Weekly License (it) - description: Standard workflow to sync weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to sync the license. - - Notify stakeholders via email. -- name: it-sync-monthly-license-1139 - title: Sync Monthly License (it) - description: Standard workflow to sync monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute sync procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-sync-urgent-license-1140 - title: Sync Urgent License (it) - description: Standard workflow to sync urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and sync the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-sync-secure-license-1141 - title: Sync Secure License (it) - description: Standard workflow to sync secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to sync the license. - - Archive results in a secure Drive folder. -- name: it-sync-weekly-security-policy-1142 - title: Sync Weekly Security Policy (it) - description: Standard workflow to sync weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute sync procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-sync-monthly-security-policy-1143 - title: Sync Monthly Security Policy (it) - description: Standard workflow to sync monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and sync the monthly security policy. - - Send a status update to the it team chat space. -- name: it-sync-urgent-security-policy-1144 - title: Sync Urgent Security Policy (it) - description: Standard workflow to sync urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to sync the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-sync-secure-security-policy-1145 - title: Sync Secure Security Policy (it) - description: Standard workflow to sync secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute sync procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-sync-weekly-audit-log-1146 - title: Sync Weekly Audit Log (it) - description: Standard workflow to sync weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and sync the weekly audit log. - - Notify stakeholders via email. -- name: it-sync-monthly-audit-log-1147 - title: Sync Monthly Audit Log (it) - description: Standard workflow to sync monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to sync the audit log. - - Send a status update to the it team chat space. -- name: it-sync-urgent-audit-log-1148 - title: Sync Urgent Audit Log (it) - description: Standard workflow to sync urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute sync procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-sync-secure-audit-log-1149 - title: Sync Secure Audit Log (it) - description: Standard workflow to sync secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and sync the secure audit log. - - Archive results in a secure Drive folder. -- name: it-sync-weekly-network-config-1150 - title: Sync Weekly Network Config (it) - description: Standard workflow to sync weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to sync the network config. - - Notify stakeholders via email. -- name: it-sync-monthly-network-config-1151 - title: Sync Monthly Network Config (it) - description: Standard workflow to sync monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute sync procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-sync-urgent-network-config-1152 - title: Sync Urgent Network Config (it) - description: Standard workflow to sync urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and sync the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-sync-secure-network-config-1153 - title: Sync Secure Network Config (it) - description: Standard workflow to sync secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to sync the network config. - - Archive results in a secure Drive folder. -- name: it-migrate-weekly-user-account-1154 - title: Migrate Weekly User Account (it) - description: Standard workflow to migrate weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute migrate procedure on the designated user account. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly user account targets before running. -- name: it-migrate-monthly-user-account-1155 - title: Migrate Monthly User Account (it) - description: Standard workflow to migrate monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and migrate the monthly user account. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly user account targets before running. -- name: it-migrate-urgent-user-account-1156 - title: Migrate Urgent User Account (it) - description: Standard workflow to migrate urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to migrate the user account. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent user account targets before running. -- name: it-migrate-secure-user-account-1157 - title: Migrate Secure User Account (it) - description: Standard workflow to migrate secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute migrate procedure on the designated user account. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure user account targets before running. -- name: it-migrate-weekly-device-1158 - title: Migrate Weekly Device (it) - description: Standard workflow to migrate weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and migrate the weekly device. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly device targets before running. -- name: it-migrate-monthly-device-1159 - title: Migrate Monthly Device (it) - description: Standard workflow to migrate monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to migrate the device. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly device targets before running. -- name: it-migrate-urgent-device-1160 - title: Migrate Urgent Device (it) - description: Standard workflow to migrate urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute migrate procedure on the designated device. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent device targets before running. -- name: it-migrate-secure-device-1161 - title: Migrate Secure Device (it) - description: Standard workflow to migrate secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and migrate the secure device. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure device targets before running. -- name: it-migrate-weekly-license-1162 - title: Migrate Weekly License (it) - description: Standard workflow to migrate weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to migrate the license. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly license targets before running. -- name: it-migrate-monthly-license-1163 - title: Migrate Monthly License (it) - description: Standard workflow to migrate monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute migrate procedure on the designated license. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly license targets before running. -- name: it-migrate-urgent-license-1164 - title: Migrate Urgent License (it) - description: Standard workflow to migrate urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and migrate the urgent license. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent license targets before running. -- name: it-migrate-secure-license-1165 - title: Migrate Secure License (it) - description: Standard workflow to migrate secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to migrate the license. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure license targets before running. -- name: it-migrate-weekly-security-policy-1166 - title: Migrate Weekly Security Policy (it) - description: Standard workflow to migrate weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute migrate procedure on the designated security policy. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly security policy targets before running. -- name: it-migrate-monthly-security-policy-1167 - title: Migrate Monthly Security Policy (it) - description: Standard workflow to migrate monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and migrate the monthly security policy. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly security policy targets before running. -- name: it-migrate-urgent-security-policy-1168 - title: Migrate Urgent Security Policy (it) - description: Standard workflow to migrate urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to migrate the security policy. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent security policy targets before running. -- name: it-migrate-secure-security-policy-1169 - title: Migrate Secure Security Policy (it) - description: Standard workflow to migrate secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute migrate procedure on the designated security policy. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure security policy targets before running. -- name: it-migrate-weekly-audit-log-1170 - title: Migrate Weekly Audit Log (it) - description: Standard workflow to migrate weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and migrate the weekly audit log. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly audit log targets before running. -- name: it-migrate-monthly-audit-log-1171 - title: Migrate Monthly Audit Log (it) - description: Standard workflow to migrate monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to migrate the audit log. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly audit log targets before running. -- name: it-migrate-urgent-audit-log-1172 - title: Migrate Urgent Audit Log (it) - description: Standard workflow to migrate urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute migrate procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent audit log targets before running. -- name: it-migrate-secure-audit-log-1173 - title: Migrate Secure Audit Log (it) - description: Standard workflow to migrate secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and migrate the secure audit log. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure audit log targets before running. -- name: it-migrate-weekly-network-config-1174 - title: Migrate Weekly Network Config (it) - description: Standard workflow to migrate weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to migrate the network config. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly network config targets before running. -- name: it-migrate-monthly-network-config-1175 - title: Migrate Monthly Network Config (it) - description: Standard workflow to migrate monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute migrate procedure on the designated network config. - - Send a status update to the it team chat space. - caution: Action involves bulk data manipulation. Confirm monthly network config targets before running. -- name: it-migrate-urgent-network-config-1176 - title: Migrate Urgent Network Config (it) - description: Standard workflow to migrate urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and migrate the urgent network config. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent network config targets before running. -- name: it-migrate-secure-network-config-1177 - title: Migrate Secure Network Config (it) - description: Standard workflow to migrate secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to migrate the network config. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure network config targets before running. -- name: it-backup-weekly-user-account-1178 - title: Backup Weekly User Account (it) - description: Standard workflow to backup weekly user account within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly user account requests. - - Execute backup procedure on the designated user account. - - Notify stakeholders via email. -- name: it-backup-monthly-user-account-1179 - title: Backup Monthly User Account (it) - description: Standard workflow to backup monthly user account within the it department. - category: it - services: - - vault - steps: - - Search for monthly user account records. - - Review and backup the monthly user account. - - Send a status update to the it team chat space. -- name: it-backup-urgent-user-account-1180 - title: Backup Urgent User Account (it) - description: Standard workflow to backup urgent user account within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent user account data. - - Apply it policies to backup the user account. - - Log completion in the master tracking spreadsheet. -- name: it-backup-secure-user-account-1181 - title: Backup Secure User Account (it) - description: Standard workflow to backup secure user account within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure user account requests. - - Execute backup procedure on the designated user account. - - Archive results in a secure Drive folder. -- name: it-backup-weekly-device-1182 - title: Backup Weekly Device (it) - description: Standard workflow to backup weekly device within the it department. - category: it - services: - - drive - steps: - - Search for weekly device records. - - Review and backup the weekly device. - - Notify stakeholders via email. -- name: it-backup-monthly-device-1183 - title: Backup Monthly Device (it) - description: Standard workflow to backup monthly device within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly device data. - - Apply it policies to backup the device. - - Send a status update to the it team chat space. -- name: it-backup-urgent-device-1184 - title: Backup Urgent Device (it) - description: Standard workflow to backup urgent device within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent device requests. - - Execute backup procedure on the designated device. - - Log completion in the master tracking spreadsheet. -- name: it-backup-secure-device-1185 - title: Backup Secure Device (it) - description: Standard workflow to backup secure device within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure device records. - - Review and backup the secure device. - - Archive results in a secure Drive folder. -- name: it-backup-weekly-license-1186 - title: Backup Weekly License (it) - description: Standard workflow to backup weekly license within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly license data. - - Apply it policies to backup the license. - - Notify stakeholders via email. -- name: it-backup-monthly-license-1187 - title: Backup Monthly License (it) - description: Standard workflow to backup monthly license within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly license requests. - - Execute backup procedure on the designated license. - - Send a status update to the it team chat space. -- name: it-backup-urgent-license-1188 - title: Backup Urgent License (it) - description: Standard workflow to backup urgent license within the it department. - category: it - services: - - admin - steps: - - Search for urgent license records. - - Review and backup the urgent license. - - Log completion in the master tracking spreadsheet. -- name: it-backup-secure-license-1189 - title: Backup Secure License (it) - description: Standard workflow to backup secure license within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure license data. - - Apply it policies to backup the license. - - Archive results in a secure Drive folder. -- name: it-backup-weekly-security-policy-1190 - title: Backup Weekly Security Policy (it) - description: Standard workflow to backup weekly security policy within the it department. - category: it - services: - - drive - - vault - - admin - steps: - - Check system for pending weekly security policy requests. - - Execute backup procedure on the designated security policy. - - Notify stakeholders via email. -- name: it-backup-monthly-security-policy-1191 - title: Backup Monthly Security Policy (it) - description: Standard workflow to backup monthly security policy within the it department. - category: it - services: - - vault - steps: - - Search for monthly security policy records. - - Review and backup the monthly security policy. - - Send a status update to the it team chat space. -- name: it-backup-urgent-security-policy-1192 - title: Backup Urgent Security Policy (it) - description: Standard workflow to backup urgent security policy within the it department. - category: it - services: - - admin - - alertcenter - steps: - - Fetch latest urgent security policy data. - - Apply it policies to backup the security policy. - - Log completion in the master tracking spreadsheet. -- name: it-backup-secure-security-policy-1193 - title: Backup Secure Security Policy (it) - description: Standard workflow to backup secure security policy within the it department. - category: it - services: - - alertcenter - - drive - - vault - steps: - - Check system for pending secure security policy requests. - - Execute backup procedure on the designated security policy. - - Archive results in a secure Drive folder. -- name: it-backup-weekly-audit-log-1194 - title: Backup Weekly Audit Log (it) - description: Standard workflow to backup weekly audit log within the it department. - category: it - services: - - drive - steps: - - Search for weekly audit log records. - - Review and backup the weekly audit log. - - Notify stakeholders via email. -- name: it-backup-monthly-audit-log-1195 - title: Backup Monthly Audit Log (it) - description: Standard workflow to backup monthly audit log within the it department. - category: it - services: - - vault - - admin - steps: - - Fetch latest monthly audit log data. - - Apply it policies to backup the audit log. - - Send a status update to the it team chat space. -- name: it-backup-urgent-audit-log-1196 - title: Backup Urgent Audit Log (it) - description: Standard workflow to backup urgent audit log within the it department. - category: it - services: - - admin - - alertcenter - - drive - steps: - - Check system for pending urgent audit log requests. - - Execute backup procedure on the designated audit log. - - Log completion in the master tracking spreadsheet. -- name: it-backup-secure-audit-log-1197 - title: Backup Secure Audit Log (it) - description: Standard workflow to backup secure audit log within the it department. - category: it - services: - - alertcenter - steps: - - Search for secure audit log records. - - Review and backup the secure audit log. - - Archive results in a secure Drive folder. -- name: it-backup-weekly-network-config-1198 - title: Backup Weekly Network Config (it) - description: Standard workflow to backup weekly network config within the it department. - category: it - services: - - drive - - vault - steps: - - Fetch latest weekly network config data. - - Apply it policies to backup the network config. - - Notify stakeholders via email. -- name: it-backup-monthly-network-config-1199 - title: Backup Monthly Network Config (it) - description: Standard workflow to backup monthly network config within the it department. - category: it - services: - - vault - - admin - - alertcenter - steps: - - Check system for pending monthly network config requests. - - Execute backup procedure on the designated network config. - - Send a status update to the it team chat space. -- name: it-backup-urgent-network-config-1200 - title: Backup Urgent Network Config (it) - description: Standard workflow to backup urgent network config within the it department. - category: it - services: - - admin - steps: - - Search for urgent network config records. - - Review and backup the urgent network config. - - Log completion in the master tracking spreadsheet. -- name: it-backup-secure-network-config-1201 - title: Backup Secure Network Config (it) - description: Standard workflow to backup secure network config within the it department. - category: it - services: - - alertcenter - - drive - steps: - - Fetch latest secure network config data. - - Apply it policies to backup the network config. - - Archive results in a secure Drive folder. -- name: engineering-audit-weekly-repository-1202 - title: Audit Weekly Repository (engineering) - description: Standard workflow to audit weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute audit procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-audit-monthly-repository-1203 - title: Audit Monthly Repository (engineering) - description: Standard workflow to audit monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and audit the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-audit-urgent-repository-1204 - title: Audit Urgent Repository (engineering) - description: Standard workflow to audit urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to audit the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-audit-secure-repository-1205 - title: Audit Secure Repository (engineering) - description: Standard workflow to audit secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute audit procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-audit-weekly-deployment-1206 - title: Audit Weekly Deployment (engineering) - description: Standard workflow to audit weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and audit the weekly deployment. - - Notify stakeholders via email. -- name: engineering-audit-monthly-deployment-1207 - title: Audit Monthly Deployment (engineering) - description: Standard workflow to audit monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to audit the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-audit-urgent-deployment-1208 - title: Audit Urgent Deployment (engineering) - description: Standard workflow to audit urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute audit procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-audit-secure-deployment-1209 - title: Audit Secure Deployment (engineering) - description: Standard workflow to audit secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and audit the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-audit-weekly-incident-1210 - title: Audit Weekly Incident (engineering) - description: Standard workflow to audit weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to audit the incident. - - Notify stakeholders via email. -- name: engineering-audit-monthly-incident-1211 - title: Audit Monthly Incident (engineering) - description: Standard workflow to audit monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute audit procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-audit-urgent-incident-1212 - title: Audit Urgent Incident (engineering) - description: Standard workflow to audit urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and audit the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-audit-secure-incident-1213 - title: Audit Secure Incident (engineering) - description: Standard workflow to audit secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to audit the incident. - - Archive results in a secure Drive folder. -- name: engineering-audit-weekly-design-doc-1214 - title: Audit Weekly Design Doc (engineering) - description: Standard workflow to audit weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute audit procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-audit-monthly-design-doc-1215 - title: Audit Monthly Design Doc (engineering) - description: Standard workflow to audit monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and audit the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-audit-urgent-design-doc-1216 - title: Audit Urgent Design Doc (engineering) - description: Standard workflow to audit urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to audit the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-audit-secure-design-doc-1217 - title: Audit Secure Design Doc (engineering) - description: Standard workflow to audit secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute audit procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-audit-weekly-sprint-plan-1218 - title: Audit Weekly Sprint Plan (engineering) - description: Standard workflow to audit weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and audit the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-audit-monthly-sprint-plan-1219 - title: Audit Monthly Sprint Plan (engineering) - description: Standard workflow to audit monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to audit the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-audit-urgent-sprint-plan-1220 - title: Audit Urgent Sprint Plan (engineering) - description: Standard workflow to audit urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute audit procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-audit-secure-sprint-plan-1221 - title: Audit Secure Sprint Plan (engineering) - description: Standard workflow to audit secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and audit the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-audit-weekly-post-mortem-1222 - title: Audit Weekly Post-mortem (engineering) - description: Standard workflow to audit weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to audit the post-mortem. - - Notify stakeholders via email. -- name: engineering-audit-monthly-post-mortem-1223 - title: Audit Monthly Post-mortem (engineering) - description: Standard workflow to audit monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute audit procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-audit-urgent-post-mortem-1224 - title: Audit Urgent Post-mortem (engineering) - description: Standard workflow to audit urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and audit the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-audit-secure-post-mortem-1225 - title: Audit Secure Post-mortem (engineering) - description: Standard workflow to audit secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to audit the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-onboard-weekly-repository-1226 - title: Onboard Weekly Repository (engineering) - description: Standard workflow to onboard weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute onboard procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-onboard-monthly-repository-1227 - title: Onboard Monthly Repository (engineering) - description: Standard workflow to onboard monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and onboard the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-onboard-urgent-repository-1228 - title: Onboard Urgent Repository (engineering) - description: Standard workflow to onboard urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to onboard the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-onboard-secure-repository-1229 - title: Onboard Secure Repository (engineering) - description: Standard workflow to onboard secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute onboard procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-onboard-weekly-deployment-1230 - title: Onboard Weekly Deployment (engineering) - description: Standard workflow to onboard weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and onboard the weekly deployment. - - Notify stakeholders via email. -- name: engineering-onboard-monthly-deployment-1231 - title: Onboard Monthly Deployment (engineering) - description: Standard workflow to onboard monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to onboard the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-onboard-urgent-deployment-1232 - title: Onboard Urgent Deployment (engineering) - description: Standard workflow to onboard urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute onboard procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-onboard-secure-deployment-1233 - title: Onboard Secure Deployment (engineering) - description: Standard workflow to onboard secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and onboard the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-onboard-weekly-incident-1234 - title: Onboard Weekly Incident (engineering) - description: Standard workflow to onboard weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to onboard the incident. - - Notify stakeholders via email. -- name: engineering-onboard-monthly-incident-1235 - title: Onboard Monthly Incident (engineering) - description: Standard workflow to onboard monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute onboard procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-onboard-urgent-incident-1236 - title: Onboard Urgent Incident (engineering) - description: Standard workflow to onboard urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and onboard the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-onboard-secure-incident-1237 - title: Onboard Secure Incident (engineering) - description: Standard workflow to onboard secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to onboard the incident. - - Archive results in a secure Drive folder. -- name: engineering-onboard-weekly-design-doc-1238 - title: Onboard Weekly Design Doc (engineering) - description: Standard workflow to onboard weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute onboard procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-onboard-monthly-design-doc-1239 - title: Onboard Monthly Design Doc (engineering) - description: Standard workflow to onboard monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and onboard the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-onboard-urgent-design-doc-1240 - title: Onboard Urgent Design Doc (engineering) - description: Standard workflow to onboard urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to onboard the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-onboard-secure-design-doc-1241 - title: Onboard Secure Design Doc (engineering) - description: Standard workflow to onboard secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute onboard procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-onboard-weekly-sprint-plan-1242 - title: Onboard Weekly Sprint Plan (engineering) - description: Standard workflow to onboard weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and onboard the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-onboard-monthly-sprint-plan-1243 - title: Onboard Monthly Sprint Plan (engineering) - description: Standard workflow to onboard monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to onboard the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-onboard-urgent-sprint-plan-1244 - title: Onboard Urgent Sprint Plan (engineering) - description: Standard workflow to onboard urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute onboard procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-onboard-secure-sprint-plan-1245 - title: Onboard Secure Sprint Plan (engineering) - description: Standard workflow to onboard secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and onboard the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-onboard-weekly-post-mortem-1246 - title: Onboard Weekly Post-mortem (engineering) - description: Standard workflow to onboard weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to onboard the post-mortem. - - Notify stakeholders via email. -- name: engineering-onboard-monthly-post-mortem-1247 - title: Onboard Monthly Post-mortem (engineering) - description: Standard workflow to onboard monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute onboard procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-onboard-urgent-post-mortem-1248 - title: Onboard Urgent Post-mortem (engineering) - description: Standard workflow to onboard urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and onboard the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-onboard-secure-post-mortem-1249 - title: Onboard Secure Post-mortem (engineering) - description: Standard workflow to onboard secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to onboard the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-review-weekly-repository-1250 - title: Review Weekly Repository (engineering) - description: Standard workflow to review weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute review procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-review-monthly-repository-1251 - title: Review Monthly Repository (engineering) - description: Standard workflow to review monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and review the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-review-urgent-repository-1252 - title: Review Urgent Repository (engineering) - description: Standard workflow to review urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to review the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-review-secure-repository-1253 - title: Review Secure Repository (engineering) - description: Standard workflow to review secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute review procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-review-weekly-deployment-1254 - title: Review Weekly Deployment (engineering) - description: Standard workflow to review weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and review the weekly deployment. - - Notify stakeholders via email. -- name: engineering-review-monthly-deployment-1255 - title: Review Monthly Deployment (engineering) - description: Standard workflow to review monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to review the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-review-urgent-deployment-1256 - title: Review Urgent Deployment (engineering) - description: Standard workflow to review urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute review procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-review-secure-deployment-1257 - title: Review Secure Deployment (engineering) - description: Standard workflow to review secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and review the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-review-weekly-incident-1258 - title: Review Weekly Incident (engineering) - description: Standard workflow to review weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to review the incident. - - Notify stakeholders via email. -- name: engineering-review-monthly-incident-1259 - title: Review Monthly Incident (engineering) - description: Standard workflow to review monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute review procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-review-urgent-incident-1260 - title: Review Urgent Incident (engineering) - description: Standard workflow to review urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and review the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-review-secure-incident-1261 - title: Review Secure Incident (engineering) - description: Standard workflow to review secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to review the incident. - - Archive results in a secure Drive folder. -- name: engineering-review-weekly-design-doc-1262 - title: Review Weekly Design Doc (engineering) - description: Standard workflow to review weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute review procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-review-monthly-design-doc-1263 - title: Review Monthly Design Doc (engineering) - description: Standard workflow to review monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and review the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-review-urgent-design-doc-1264 - title: Review Urgent Design Doc (engineering) - description: Standard workflow to review urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to review the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-review-secure-design-doc-1265 - title: Review Secure Design Doc (engineering) - description: Standard workflow to review secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute review procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-review-weekly-sprint-plan-1266 - title: Review Weekly Sprint Plan (engineering) - description: Standard workflow to review weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and review the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-review-monthly-sprint-plan-1267 - title: Review Monthly Sprint Plan (engineering) - description: Standard workflow to review monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to review the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-review-urgent-sprint-plan-1268 - title: Review Urgent Sprint Plan (engineering) - description: Standard workflow to review urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute review procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-review-secure-sprint-plan-1269 - title: Review Secure Sprint Plan (engineering) - description: Standard workflow to review secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and review the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-review-weekly-post-mortem-1270 - title: Review Weekly Post-mortem (engineering) - description: Standard workflow to review weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to review the post-mortem. - - Notify stakeholders via email. -- name: engineering-review-monthly-post-mortem-1271 - title: Review Monthly Post-mortem (engineering) - description: Standard workflow to review monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute review procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-review-urgent-post-mortem-1272 - title: Review Urgent Post-mortem (engineering) - description: Standard workflow to review urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and review the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-review-secure-post-mortem-1273 - title: Review Secure Post-mortem (engineering) - description: Standard workflow to review secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to review the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-approve-weekly-repository-1274 - title: Approve Weekly Repository (engineering) - description: Standard workflow to approve weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute approve procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-approve-monthly-repository-1275 - title: Approve Monthly Repository (engineering) - description: Standard workflow to approve monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and approve the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-approve-urgent-repository-1276 - title: Approve Urgent Repository (engineering) - description: Standard workflow to approve urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to approve the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-approve-secure-repository-1277 - title: Approve Secure Repository (engineering) - description: Standard workflow to approve secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute approve procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-approve-weekly-deployment-1278 - title: Approve Weekly Deployment (engineering) - description: Standard workflow to approve weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and approve the weekly deployment. - - Notify stakeholders via email. -- name: engineering-approve-monthly-deployment-1279 - title: Approve Monthly Deployment (engineering) - description: Standard workflow to approve monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to approve the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-approve-urgent-deployment-1280 - title: Approve Urgent Deployment (engineering) - description: Standard workflow to approve urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute approve procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-approve-secure-deployment-1281 - title: Approve Secure Deployment (engineering) - description: Standard workflow to approve secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and approve the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-approve-weekly-incident-1282 - title: Approve Weekly Incident (engineering) - description: Standard workflow to approve weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to approve the incident. - - Notify stakeholders via email. -- name: engineering-approve-monthly-incident-1283 - title: Approve Monthly Incident (engineering) - description: Standard workflow to approve monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute approve procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-approve-urgent-incident-1284 - title: Approve Urgent Incident (engineering) - description: Standard workflow to approve urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and approve the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-approve-secure-incident-1285 - title: Approve Secure Incident (engineering) - description: Standard workflow to approve secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to approve the incident. - - Archive results in a secure Drive folder. -- name: engineering-approve-weekly-design-doc-1286 - title: Approve Weekly Design Doc (engineering) - description: Standard workflow to approve weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute approve procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-approve-monthly-design-doc-1287 - title: Approve Monthly Design Doc (engineering) - description: Standard workflow to approve monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and approve the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-approve-urgent-design-doc-1288 - title: Approve Urgent Design Doc (engineering) - description: Standard workflow to approve urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to approve the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-approve-secure-design-doc-1289 - title: Approve Secure Design Doc (engineering) - description: Standard workflow to approve secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute approve procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-approve-weekly-sprint-plan-1290 - title: Approve Weekly Sprint Plan (engineering) - description: Standard workflow to approve weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and approve the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-approve-monthly-sprint-plan-1291 - title: Approve Monthly Sprint Plan (engineering) - description: Standard workflow to approve monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to approve the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-approve-urgent-sprint-plan-1292 - title: Approve Urgent Sprint Plan (engineering) - description: Standard workflow to approve urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute approve procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-approve-secure-sprint-plan-1293 - title: Approve Secure Sprint Plan (engineering) - description: Standard workflow to approve secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and approve the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-approve-weekly-post-mortem-1294 - title: Approve Weekly Post-mortem (engineering) - description: Standard workflow to approve weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to approve the post-mortem. - - Notify stakeholders via email. -- name: engineering-approve-monthly-post-mortem-1295 - title: Approve Monthly Post-mortem (engineering) - description: Standard workflow to approve monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute approve procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-approve-urgent-post-mortem-1296 - title: Approve Urgent Post-mortem (engineering) - description: Standard workflow to approve urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and approve the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-approve-secure-post-mortem-1297 - title: Approve Secure Post-mortem (engineering) - description: Standard workflow to approve secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to approve the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-share-weekly-repository-1298 - title: Share Weekly Repository (engineering) - description: Standard workflow to share weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute share procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-share-monthly-repository-1299 - title: Share Monthly Repository (engineering) - description: Standard workflow to share monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and share the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-share-urgent-repository-1300 - title: Share Urgent Repository (engineering) - description: Standard workflow to share urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to share the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-share-secure-repository-1301 - title: Share Secure Repository (engineering) - description: Standard workflow to share secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute share procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-share-weekly-deployment-1302 - title: Share Weekly Deployment (engineering) - description: Standard workflow to share weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and share the weekly deployment. - - Notify stakeholders via email. -- name: engineering-share-monthly-deployment-1303 - title: Share Monthly Deployment (engineering) - description: Standard workflow to share monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to share the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-share-urgent-deployment-1304 - title: Share Urgent Deployment (engineering) - description: Standard workflow to share urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute share procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-share-secure-deployment-1305 - title: Share Secure Deployment (engineering) - description: Standard workflow to share secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and share the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-share-weekly-incident-1306 - title: Share Weekly Incident (engineering) - description: Standard workflow to share weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to share the incident. - - Notify stakeholders via email. -- name: engineering-share-monthly-incident-1307 - title: Share Monthly Incident (engineering) - description: Standard workflow to share monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute share procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-share-urgent-incident-1308 - title: Share Urgent Incident (engineering) - description: Standard workflow to share urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and share the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-share-secure-incident-1309 - title: Share Secure Incident (engineering) - description: Standard workflow to share secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to share the incident. - - Archive results in a secure Drive folder. -- name: engineering-share-weekly-design-doc-1310 - title: Share Weekly Design Doc (engineering) - description: Standard workflow to share weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute share procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-share-monthly-design-doc-1311 - title: Share Monthly Design Doc (engineering) - description: Standard workflow to share monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and share the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-share-urgent-design-doc-1312 - title: Share Urgent Design Doc (engineering) - description: Standard workflow to share urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to share the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-share-secure-design-doc-1313 - title: Share Secure Design Doc (engineering) - description: Standard workflow to share secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute share procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-share-weekly-sprint-plan-1314 - title: Share Weekly Sprint Plan (engineering) - description: Standard workflow to share weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and share the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-share-monthly-sprint-plan-1315 - title: Share Monthly Sprint Plan (engineering) - description: Standard workflow to share monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to share the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-share-urgent-sprint-plan-1316 - title: Share Urgent Sprint Plan (engineering) - description: Standard workflow to share urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute share procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-share-secure-sprint-plan-1317 - title: Share Secure Sprint Plan (engineering) - description: Standard workflow to share secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and share the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-share-weekly-post-mortem-1318 - title: Share Weekly Post-mortem (engineering) - description: Standard workflow to share weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to share the post-mortem. - - Notify stakeholders via email. -- name: engineering-share-monthly-post-mortem-1319 - title: Share Monthly Post-mortem (engineering) - description: Standard workflow to share monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute share procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-share-urgent-post-mortem-1320 - title: Share Urgent Post-mortem (engineering) - description: Standard workflow to share urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and share the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-share-secure-post-mortem-1321 - title: Share Secure Post-mortem (engineering) - description: Standard workflow to share secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to share the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-publish-weekly-repository-1322 - title: Publish Weekly Repository (engineering) - description: Standard workflow to publish weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute publish procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-publish-monthly-repository-1323 - title: Publish Monthly Repository (engineering) - description: Standard workflow to publish monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and publish the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-publish-urgent-repository-1324 - title: Publish Urgent Repository (engineering) - description: Standard workflow to publish urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to publish the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-publish-secure-repository-1325 - title: Publish Secure Repository (engineering) - description: Standard workflow to publish secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute publish procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-publish-weekly-deployment-1326 - title: Publish Weekly Deployment (engineering) - description: Standard workflow to publish weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and publish the weekly deployment. - - Notify stakeholders via email. -- name: engineering-publish-monthly-deployment-1327 - title: Publish Monthly Deployment (engineering) - description: Standard workflow to publish monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to publish the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-publish-urgent-deployment-1328 - title: Publish Urgent Deployment (engineering) - description: Standard workflow to publish urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute publish procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-publish-secure-deployment-1329 - title: Publish Secure Deployment (engineering) - description: Standard workflow to publish secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and publish the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-publish-weekly-incident-1330 - title: Publish Weekly Incident (engineering) - description: Standard workflow to publish weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to publish the incident. - - Notify stakeholders via email. -- name: engineering-publish-monthly-incident-1331 - title: Publish Monthly Incident (engineering) - description: Standard workflow to publish monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute publish procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-publish-urgent-incident-1332 - title: Publish Urgent Incident (engineering) - description: Standard workflow to publish urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and publish the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-publish-secure-incident-1333 - title: Publish Secure Incident (engineering) - description: Standard workflow to publish secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to publish the incident. - - Archive results in a secure Drive folder. -- name: engineering-publish-weekly-design-doc-1334 - title: Publish Weekly Design Doc (engineering) - description: Standard workflow to publish weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute publish procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-publish-monthly-design-doc-1335 - title: Publish Monthly Design Doc (engineering) - description: Standard workflow to publish monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and publish the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-publish-urgent-design-doc-1336 - title: Publish Urgent Design Doc (engineering) - description: Standard workflow to publish urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to publish the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-publish-secure-design-doc-1337 - title: Publish Secure Design Doc (engineering) - description: Standard workflow to publish secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute publish procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-publish-weekly-sprint-plan-1338 - title: Publish Weekly Sprint Plan (engineering) - description: Standard workflow to publish weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and publish the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-publish-monthly-sprint-plan-1339 - title: Publish Monthly Sprint Plan (engineering) - description: Standard workflow to publish monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to publish the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-publish-urgent-sprint-plan-1340 - title: Publish Urgent Sprint Plan (engineering) - description: Standard workflow to publish urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute publish procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-publish-secure-sprint-plan-1341 - title: Publish Secure Sprint Plan (engineering) - description: Standard workflow to publish secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and publish the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-publish-weekly-post-mortem-1342 - title: Publish Weekly Post-mortem (engineering) - description: Standard workflow to publish weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to publish the post-mortem. - - Notify stakeholders via email. -- name: engineering-publish-monthly-post-mortem-1343 - title: Publish Monthly Post-mortem (engineering) - description: Standard workflow to publish monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute publish procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-publish-urgent-post-mortem-1344 - title: Publish Urgent Post-mortem (engineering) - description: Standard workflow to publish urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and publish the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-publish-secure-post-mortem-1345 - title: Publish Secure Post-mortem (engineering) - description: Standard workflow to publish secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to publish the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-archive-weekly-repository-1346 - title: Archive Weekly Repository (engineering) - description: Standard workflow to archive weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute archive procedure on the designated repository. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly repository targets before running. -- name: engineering-archive-monthly-repository-1347 - title: Archive Monthly Repository (engineering) - description: Standard workflow to archive monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and archive the monthly repository. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly repository targets before running. -- name: engineering-archive-urgent-repository-1348 - title: Archive Urgent Repository (engineering) - description: Standard workflow to archive urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to archive the repository. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent repository targets before running. -- name: engineering-archive-secure-repository-1349 - title: Archive Secure Repository (engineering) - description: Standard workflow to archive secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute archive procedure on the designated repository. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure repository targets before running. -- name: engineering-archive-weekly-deployment-1350 - title: Archive Weekly Deployment (engineering) - description: Standard workflow to archive weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and archive the weekly deployment. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly deployment targets before running. -- name: engineering-archive-monthly-deployment-1351 - title: Archive Monthly Deployment (engineering) - description: Standard workflow to archive monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to archive the deployment. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly deployment targets before running. -- name: engineering-archive-urgent-deployment-1352 - title: Archive Urgent Deployment (engineering) - description: Standard workflow to archive urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute archive procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent deployment targets before running. -- name: engineering-archive-secure-deployment-1353 - title: Archive Secure Deployment (engineering) - description: Standard workflow to archive secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and archive the secure deployment. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure deployment targets before running. -- name: engineering-archive-weekly-incident-1354 - title: Archive Weekly Incident (engineering) - description: Standard workflow to archive weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to archive the incident. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly incident targets before running. -- name: engineering-archive-monthly-incident-1355 - title: Archive Monthly Incident (engineering) - description: Standard workflow to archive monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute archive procedure on the designated incident. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly incident targets before running. -- name: engineering-archive-urgent-incident-1356 - title: Archive Urgent Incident (engineering) - description: Standard workflow to archive urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and archive the urgent incident. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent incident targets before running. -- name: engineering-archive-secure-incident-1357 - title: Archive Secure Incident (engineering) - description: Standard workflow to archive secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to archive the incident. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure incident targets before running. -- name: engineering-archive-weekly-design-doc-1358 - title: Archive Weekly Design Doc (engineering) - description: Standard workflow to archive weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute archive procedure on the designated design doc. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly design doc targets before running. -- name: engineering-archive-monthly-design-doc-1359 - title: Archive Monthly Design Doc (engineering) - description: Standard workflow to archive monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and archive the monthly design doc. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly design doc targets before running. -- name: engineering-archive-urgent-design-doc-1360 - title: Archive Urgent Design Doc (engineering) - description: Standard workflow to archive urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to archive the design doc. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent design doc targets before running. -- name: engineering-archive-secure-design-doc-1361 - title: Archive Secure Design Doc (engineering) - description: Standard workflow to archive secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute archive procedure on the designated design doc. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure design doc targets before running. -- name: engineering-archive-weekly-sprint-plan-1362 - title: Archive Weekly Sprint Plan (engineering) - description: Standard workflow to archive weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and archive the weekly sprint plan. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly sprint plan targets before running. -- name: engineering-archive-monthly-sprint-plan-1363 - title: Archive Monthly Sprint Plan (engineering) - description: Standard workflow to archive monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to archive the sprint plan. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly sprint plan targets before running. -- name: engineering-archive-urgent-sprint-plan-1364 - title: Archive Urgent Sprint Plan (engineering) - description: Standard workflow to archive urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute archive procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent sprint plan targets before running. -- name: engineering-archive-secure-sprint-plan-1365 - title: Archive Secure Sprint Plan (engineering) - description: Standard workflow to archive secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and archive the secure sprint plan. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure sprint plan targets before running. -- name: engineering-archive-weekly-post-mortem-1366 - title: Archive Weekly Post-mortem (engineering) - description: Standard workflow to archive weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to archive the post-mortem. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly post-mortem targets before running. -- name: engineering-archive-monthly-post-mortem-1367 - title: Archive Monthly Post-mortem (engineering) - description: Standard workflow to archive monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute archive procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly post-mortem targets before running. -- name: engineering-archive-urgent-post-mortem-1368 - title: Archive Urgent Post-mortem (engineering) - description: Standard workflow to archive urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and archive the urgent post-mortem. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent post-mortem targets before running. -- name: engineering-archive-secure-post-mortem-1369 - title: Archive Secure Post-mortem (engineering) - description: Standard workflow to archive secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to archive the post-mortem. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure post-mortem targets before running. -- name: engineering-export-weekly-repository-1370 - title: Export Weekly Repository (engineering) - description: Standard workflow to export weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute export procedure on the designated repository. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly repository targets before running. -- name: engineering-export-monthly-repository-1371 - title: Export Monthly Repository (engineering) - description: Standard workflow to export monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and export the monthly repository. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly repository targets before running. -- name: engineering-export-urgent-repository-1372 - title: Export Urgent Repository (engineering) - description: Standard workflow to export urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to export the repository. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent repository targets before running. -- name: engineering-export-secure-repository-1373 - title: Export Secure Repository (engineering) - description: Standard workflow to export secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute export procedure on the designated repository. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure repository targets before running. -- name: engineering-export-weekly-deployment-1374 - title: Export Weekly Deployment (engineering) - description: Standard workflow to export weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and export the weekly deployment. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly deployment targets before running. -- name: engineering-export-monthly-deployment-1375 - title: Export Monthly Deployment (engineering) - description: Standard workflow to export monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to export the deployment. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly deployment targets before running. -- name: engineering-export-urgent-deployment-1376 - title: Export Urgent Deployment (engineering) - description: Standard workflow to export urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute export procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent deployment targets before running. -- name: engineering-export-secure-deployment-1377 - title: Export Secure Deployment (engineering) - description: Standard workflow to export secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and export the secure deployment. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure deployment targets before running. -- name: engineering-export-weekly-incident-1378 - title: Export Weekly Incident (engineering) - description: Standard workflow to export weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to export the incident. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly incident targets before running. -- name: engineering-export-monthly-incident-1379 - title: Export Monthly Incident (engineering) - description: Standard workflow to export monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute export procedure on the designated incident. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly incident targets before running. -- name: engineering-export-urgent-incident-1380 - title: Export Urgent Incident (engineering) - description: Standard workflow to export urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and export the urgent incident. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent incident targets before running. -- name: engineering-export-secure-incident-1381 - title: Export Secure Incident (engineering) - description: Standard workflow to export secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to export the incident. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure incident targets before running. -- name: engineering-export-weekly-design-doc-1382 - title: Export Weekly Design Doc (engineering) - description: Standard workflow to export weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute export procedure on the designated design doc. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly design doc targets before running. -- name: engineering-export-monthly-design-doc-1383 - title: Export Monthly Design Doc (engineering) - description: Standard workflow to export monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and export the monthly design doc. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly design doc targets before running. -- name: engineering-export-urgent-design-doc-1384 - title: Export Urgent Design Doc (engineering) - description: Standard workflow to export urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to export the design doc. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent design doc targets before running. -- name: engineering-export-secure-design-doc-1385 - title: Export Secure Design Doc (engineering) - description: Standard workflow to export secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute export procedure on the designated design doc. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure design doc targets before running. -- name: engineering-export-weekly-sprint-plan-1386 - title: Export Weekly Sprint Plan (engineering) - description: Standard workflow to export weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and export the weekly sprint plan. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly sprint plan targets before running. -- name: engineering-export-monthly-sprint-plan-1387 - title: Export Monthly Sprint Plan (engineering) - description: Standard workflow to export monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to export the sprint plan. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly sprint plan targets before running. -- name: engineering-export-urgent-sprint-plan-1388 - title: Export Urgent Sprint Plan (engineering) - description: Standard workflow to export urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute export procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent sprint plan targets before running. -- name: engineering-export-secure-sprint-plan-1389 - title: Export Secure Sprint Plan (engineering) - description: Standard workflow to export secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and export the secure sprint plan. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure sprint plan targets before running. -- name: engineering-export-weekly-post-mortem-1390 - title: Export Weekly Post-mortem (engineering) - description: Standard workflow to export weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to export the post-mortem. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly post-mortem targets before running. -- name: engineering-export-monthly-post-mortem-1391 - title: Export Monthly Post-mortem (engineering) - description: Standard workflow to export monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute export procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly post-mortem targets before running. -- name: engineering-export-urgent-post-mortem-1392 - title: Export Urgent Post-mortem (engineering) - description: Standard workflow to export urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and export the urgent post-mortem. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent post-mortem targets before running. -- name: engineering-export-secure-post-mortem-1393 - title: Export Secure Post-mortem (engineering) - description: Standard workflow to export secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to export the post-mortem. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure post-mortem targets before running. -- name: engineering-import-weekly-repository-1394 - title: Import Weekly Repository (engineering) - description: Standard workflow to import weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute import procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-import-monthly-repository-1395 - title: Import Monthly Repository (engineering) - description: Standard workflow to import monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and import the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-import-urgent-repository-1396 - title: Import Urgent Repository (engineering) - description: Standard workflow to import urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to import the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-import-secure-repository-1397 - title: Import Secure Repository (engineering) - description: Standard workflow to import secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute import procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-import-weekly-deployment-1398 - title: Import Weekly Deployment (engineering) - description: Standard workflow to import weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and import the weekly deployment. - - Notify stakeholders via email. -- name: engineering-import-monthly-deployment-1399 - title: Import Monthly Deployment (engineering) - description: Standard workflow to import monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to import the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-import-urgent-deployment-1400 - title: Import Urgent Deployment (engineering) - description: Standard workflow to import urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute import procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-import-secure-deployment-1401 - title: Import Secure Deployment (engineering) - description: Standard workflow to import secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and import the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-import-weekly-incident-1402 - title: Import Weekly Incident (engineering) - description: Standard workflow to import weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to import the incident. - - Notify stakeholders via email. -- name: engineering-import-monthly-incident-1403 - title: Import Monthly Incident (engineering) - description: Standard workflow to import monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute import procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-import-urgent-incident-1404 - title: Import Urgent Incident (engineering) - description: Standard workflow to import urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and import the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-import-secure-incident-1405 - title: Import Secure Incident (engineering) - description: Standard workflow to import secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to import the incident. - - Archive results in a secure Drive folder. -- name: engineering-import-weekly-design-doc-1406 - title: Import Weekly Design Doc (engineering) - description: Standard workflow to import weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute import procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-import-monthly-design-doc-1407 - title: Import Monthly Design Doc (engineering) - description: Standard workflow to import monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and import the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-import-urgent-design-doc-1408 - title: Import Urgent Design Doc (engineering) - description: Standard workflow to import urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to import the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-import-secure-design-doc-1409 - title: Import Secure Design Doc (engineering) - description: Standard workflow to import secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute import procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-import-weekly-sprint-plan-1410 - title: Import Weekly Sprint Plan (engineering) - description: Standard workflow to import weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and import the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-import-monthly-sprint-plan-1411 - title: Import Monthly Sprint Plan (engineering) - description: Standard workflow to import monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to import the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-import-urgent-sprint-plan-1412 - title: Import Urgent Sprint Plan (engineering) - description: Standard workflow to import urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute import procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-import-secure-sprint-plan-1413 - title: Import Secure Sprint Plan (engineering) - description: Standard workflow to import secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and import the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-import-weekly-post-mortem-1414 - title: Import Weekly Post-mortem (engineering) - description: Standard workflow to import weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to import the post-mortem. - - Notify stakeholders via email. -- name: engineering-import-monthly-post-mortem-1415 - title: Import Monthly Post-mortem (engineering) - description: Standard workflow to import monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute import procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-import-urgent-post-mortem-1416 - title: Import Urgent Post-mortem (engineering) - description: Standard workflow to import urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and import the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-import-secure-post-mortem-1417 - title: Import Secure Post-mortem (engineering) - description: Standard workflow to import secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to import the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-sync-weekly-repository-1418 - title: Sync Weekly Repository (engineering) - description: Standard workflow to sync weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute sync procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-sync-monthly-repository-1419 - title: Sync Monthly Repository (engineering) - description: Standard workflow to sync monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and sync the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-sync-urgent-repository-1420 - title: Sync Urgent Repository (engineering) - description: Standard workflow to sync urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to sync the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-sync-secure-repository-1421 - title: Sync Secure Repository (engineering) - description: Standard workflow to sync secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute sync procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-sync-weekly-deployment-1422 - title: Sync Weekly Deployment (engineering) - description: Standard workflow to sync weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and sync the weekly deployment. - - Notify stakeholders via email. -- name: engineering-sync-monthly-deployment-1423 - title: Sync Monthly Deployment (engineering) - description: Standard workflow to sync monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to sync the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-sync-urgent-deployment-1424 - title: Sync Urgent Deployment (engineering) - description: Standard workflow to sync urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute sync procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-sync-secure-deployment-1425 - title: Sync Secure Deployment (engineering) - description: Standard workflow to sync secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and sync the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-sync-weekly-incident-1426 - title: Sync Weekly Incident (engineering) - description: Standard workflow to sync weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to sync the incident. - - Notify stakeholders via email. -- name: engineering-sync-monthly-incident-1427 - title: Sync Monthly Incident (engineering) - description: Standard workflow to sync monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute sync procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-sync-urgent-incident-1428 - title: Sync Urgent Incident (engineering) - description: Standard workflow to sync urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and sync the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-sync-secure-incident-1429 - title: Sync Secure Incident (engineering) - description: Standard workflow to sync secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to sync the incident. - - Archive results in a secure Drive folder. -- name: engineering-sync-weekly-design-doc-1430 - title: Sync Weekly Design Doc (engineering) - description: Standard workflow to sync weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute sync procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-sync-monthly-design-doc-1431 - title: Sync Monthly Design Doc (engineering) - description: Standard workflow to sync monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and sync the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-sync-urgent-design-doc-1432 - title: Sync Urgent Design Doc (engineering) - description: Standard workflow to sync urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to sync the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-sync-secure-design-doc-1433 - title: Sync Secure Design Doc (engineering) - description: Standard workflow to sync secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute sync procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-sync-weekly-sprint-plan-1434 - title: Sync Weekly Sprint Plan (engineering) - description: Standard workflow to sync weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and sync the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-sync-monthly-sprint-plan-1435 - title: Sync Monthly Sprint Plan (engineering) - description: Standard workflow to sync monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to sync the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-sync-urgent-sprint-plan-1436 - title: Sync Urgent Sprint Plan (engineering) - description: Standard workflow to sync urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute sync procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-sync-secure-sprint-plan-1437 - title: Sync Secure Sprint Plan (engineering) - description: Standard workflow to sync secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and sync the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-sync-weekly-post-mortem-1438 - title: Sync Weekly Post-mortem (engineering) - description: Standard workflow to sync weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to sync the post-mortem. - - Notify stakeholders via email. -- name: engineering-sync-monthly-post-mortem-1439 - title: Sync Monthly Post-mortem (engineering) - description: Standard workflow to sync monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute sync procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-sync-urgent-post-mortem-1440 - title: Sync Urgent Post-mortem (engineering) - description: Standard workflow to sync urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and sync the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-sync-secure-post-mortem-1441 - title: Sync Secure Post-mortem (engineering) - description: Standard workflow to sync secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to sync the post-mortem. - - Archive results in a secure Drive folder. -- name: engineering-migrate-weekly-repository-1442 - title: Migrate Weekly Repository (engineering) - description: Standard workflow to migrate weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute migrate procedure on the designated repository. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly repository targets before running. -- name: engineering-migrate-monthly-repository-1443 - title: Migrate Monthly Repository (engineering) - description: Standard workflow to migrate monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and migrate the monthly repository. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly repository targets before running. -- name: engineering-migrate-urgent-repository-1444 - title: Migrate Urgent Repository (engineering) - description: Standard workflow to migrate urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to migrate the repository. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent repository targets before running. -- name: engineering-migrate-secure-repository-1445 - title: Migrate Secure Repository (engineering) - description: Standard workflow to migrate secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute migrate procedure on the designated repository. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure repository targets before running. -- name: engineering-migrate-weekly-deployment-1446 - title: Migrate Weekly Deployment (engineering) - description: Standard workflow to migrate weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and migrate the weekly deployment. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly deployment targets before running. -- name: engineering-migrate-monthly-deployment-1447 - title: Migrate Monthly Deployment (engineering) - description: Standard workflow to migrate monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to migrate the deployment. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly deployment targets before running. -- name: engineering-migrate-urgent-deployment-1448 - title: Migrate Urgent Deployment (engineering) - description: Standard workflow to migrate urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute migrate procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent deployment targets before running. -- name: engineering-migrate-secure-deployment-1449 - title: Migrate Secure Deployment (engineering) - description: Standard workflow to migrate secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and migrate the secure deployment. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure deployment targets before running. -- name: engineering-migrate-weekly-incident-1450 - title: Migrate Weekly Incident (engineering) - description: Standard workflow to migrate weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to migrate the incident. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly incident targets before running. -- name: engineering-migrate-monthly-incident-1451 - title: Migrate Monthly Incident (engineering) - description: Standard workflow to migrate monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute migrate procedure on the designated incident. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly incident targets before running. -- name: engineering-migrate-urgent-incident-1452 - title: Migrate Urgent Incident (engineering) - description: Standard workflow to migrate urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and migrate the urgent incident. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent incident targets before running. -- name: engineering-migrate-secure-incident-1453 - title: Migrate Secure Incident (engineering) - description: Standard workflow to migrate secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to migrate the incident. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure incident targets before running. -- name: engineering-migrate-weekly-design-doc-1454 - title: Migrate Weekly Design Doc (engineering) - description: Standard workflow to migrate weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute migrate procedure on the designated design doc. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly design doc targets before running. -- name: engineering-migrate-monthly-design-doc-1455 - title: Migrate Monthly Design Doc (engineering) - description: Standard workflow to migrate monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and migrate the monthly design doc. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly design doc targets before running. -- name: engineering-migrate-urgent-design-doc-1456 - title: Migrate Urgent Design Doc (engineering) - description: Standard workflow to migrate urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to migrate the design doc. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent design doc targets before running. -- name: engineering-migrate-secure-design-doc-1457 - title: Migrate Secure Design Doc (engineering) - description: Standard workflow to migrate secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute migrate procedure on the designated design doc. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure design doc targets before running. -- name: engineering-migrate-weekly-sprint-plan-1458 - title: Migrate Weekly Sprint Plan (engineering) - description: Standard workflow to migrate weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and migrate the weekly sprint plan. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly sprint plan targets before running. -- name: engineering-migrate-monthly-sprint-plan-1459 - title: Migrate Monthly Sprint Plan (engineering) - description: Standard workflow to migrate monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to migrate the sprint plan. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly sprint plan targets before running. -- name: engineering-migrate-urgent-sprint-plan-1460 - title: Migrate Urgent Sprint Plan (engineering) - description: Standard workflow to migrate urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute migrate procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent sprint plan targets before running. -- name: engineering-migrate-secure-sprint-plan-1461 - title: Migrate Secure Sprint Plan (engineering) - description: Standard workflow to migrate secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and migrate the secure sprint plan. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure sprint plan targets before running. -- name: engineering-migrate-weekly-post-mortem-1462 - title: Migrate Weekly Post-mortem (engineering) - description: Standard workflow to migrate weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to migrate the post-mortem. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly post-mortem targets before running. -- name: engineering-migrate-monthly-post-mortem-1463 - title: Migrate Monthly Post-mortem (engineering) - description: Standard workflow to migrate monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute migrate procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. - caution: Action involves bulk data manipulation. Confirm monthly post-mortem targets before running. -- name: engineering-migrate-urgent-post-mortem-1464 - title: Migrate Urgent Post-mortem (engineering) - description: Standard workflow to migrate urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and migrate the urgent post-mortem. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent post-mortem targets before running. -- name: engineering-migrate-secure-post-mortem-1465 - title: Migrate Secure Post-mortem (engineering) - description: Standard workflow to migrate secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to migrate the post-mortem. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure post-mortem targets before running. -- name: engineering-backup-weekly-repository-1466 - title: Backup Weekly Repository (engineering) - description: Standard workflow to backup weekly repository within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly repository requests. - - Execute backup procedure on the designated repository. - - Notify stakeholders via email. -- name: engineering-backup-monthly-repository-1467 - title: Backup Monthly Repository (engineering) - description: Standard workflow to backup monthly repository within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly repository records. - - Review and backup the monthly repository. - - Send a status update to the engineering team chat space. -- name: engineering-backup-urgent-repository-1468 - title: Backup Urgent Repository (engineering) - description: Standard workflow to backup urgent repository within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent repository data. - - Apply engineering policies to backup the repository. - - Log completion in the master tracking spreadsheet. -- name: engineering-backup-secure-repository-1469 - title: Backup Secure Repository (engineering) - description: Standard workflow to backup secure repository within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure repository requests. - - Execute backup procedure on the designated repository. - - Archive results in a secure Drive folder. -- name: engineering-backup-weekly-deployment-1470 - title: Backup Weekly Deployment (engineering) - description: Standard workflow to backup weekly deployment within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly deployment records. - - Review and backup the weekly deployment. - - Notify stakeholders via email. -- name: engineering-backup-monthly-deployment-1471 - title: Backup Monthly Deployment (engineering) - description: Standard workflow to backup monthly deployment within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly deployment data. - - Apply engineering policies to backup the deployment. - - Send a status update to the engineering team chat space. -- name: engineering-backup-urgent-deployment-1472 - title: Backup Urgent Deployment (engineering) - description: Standard workflow to backup urgent deployment within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent deployment requests. - - Execute backup procedure on the designated deployment. - - Log completion in the master tracking spreadsheet. -- name: engineering-backup-secure-deployment-1473 - title: Backup Secure Deployment (engineering) - description: Standard workflow to backup secure deployment within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure deployment records. - - Review and backup the secure deployment. - - Archive results in a secure Drive folder. -- name: engineering-backup-weekly-incident-1474 - title: Backup Weekly Incident (engineering) - description: Standard workflow to backup weekly incident within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly incident data. - - Apply engineering policies to backup the incident. - - Notify stakeholders via email. -- name: engineering-backup-monthly-incident-1475 - title: Backup Monthly Incident (engineering) - description: Standard workflow to backup monthly incident within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly incident requests. - - Execute backup procedure on the designated incident. - - Send a status update to the engineering team chat space. -- name: engineering-backup-urgent-incident-1476 - title: Backup Urgent Incident (engineering) - description: Standard workflow to backup urgent incident within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent incident records. - - Review and backup the urgent incident. - - Log completion in the master tracking spreadsheet. -- name: engineering-backup-secure-incident-1477 - title: Backup Secure Incident (engineering) - description: Standard workflow to backup secure incident within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure incident data. - - Apply engineering policies to backup the incident. - - Archive results in a secure Drive folder. -- name: engineering-backup-weekly-design-doc-1478 - title: Backup Weekly Design Doc (engineering) - description: Standard workflow to backup weekly design doc within the engineering department. - category: engineering - services: - - drive - - sheets - - chat - steps: - - Check system for pending weekly design doc requests. - - Execute backup procedure on the designated design doc. - - Notify stakeholders via email. -- name: engineering-backup-monthly-design-doc-1479 - title: Backup Monthly Design Doc (engineering) - description: Standard workflow to backup monthly design doc within the engineering department. - category: engineering - services: - - sheets - steps: - - Search for monthly design doc records. - - Review and backup the monthly design doc. - - Send a status update to the engineering team chat space. -- name: engineering-backup-urgent-design-doc-1480 - title: Backup Urgent Design Doc (engineering) - description: Standard workflow to backup urgent design doc within the engineering department. - category: engineering - services: - - chat - - docs - steps: - - Fetch latest urgent design doc data. - - Apply engineering policies to backup the design doc. - - Log completion in the master tracking spreadsheet. -- name: engineering-backup-secure-design-doc-1481 - title: Backup Secure Design Doc (engineering) - description: Standard workflow to backup secure design doc within the engineering department. - category: engineering - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure design doc requests. - - Execute backup procedure on the designated design doc. - - Archive results in a secure Drive folder. -- name: engineering-backup-weekly-sprint-plan-1482 - title: Backup Weekly Sprint Plan (engineering) - description: Standard workflow to backup weekly sprint plan within the engineering department. - category: engineering - services: - - drive - steps: - - Search for weekly sprint plan records. - - Review and backup the weekly sprint plan. - - Notify stakeholders via email. -- name: engineering-backup-monthly-sprint-plan-1483 - title: Backup Monthly Sprint Plan (engineering) - description: Standard workflow to backup monthly sprint plan within the engineering department. - category: engineering - services: - - sheets - - chat - steps: - - Fetch latest monthly sprint plan data. - - Apply engineering policies to backup the sprint plan. - - Send a status update to the engineering team chat space. -- name: engineering-backup-urgent-sprint-plan-1484 - title: Backup Urgent Sprint Plan (engineering) - description: Standard workflow to backup urgent sprint plan within the engineering department. - category: engineering - services: - - chat - - docs - - drive - steps: - - Check system for pending urgent sprint plan requests. - - Execute backup procedure on the designated sprint plan. - - Log completion in the master tracking spreadsheet. -- name: engineering-backup-secure-sprint-plan-1485 - title: Backup Secure Sprint Plan (engineering) - description: Standard workflow to backup secure sprint plan within the engineering department. - category: engineering - services: - - docs - steps: - - Search for secure sprint plan records. - - Review and backup the secure sprint plan. - - Archive results in a secure Drive folder. -- name: engineering-backup-weekly-post-mortem-1486 - title: Backup Weekly Post-mortem (engineering) - description: Standard workflow to backup weekly post-mortem within the engineering department. - category: engineering - services: - - drive - - sheets - steps: - - Fetch latest weekly post-mortem data. - - Apply engineering policies to backup the post-mortem. - - Notify stakeholders via email. -- name: engineering-backup-monthly-post-mortem-1487 - title: Backup Monthly Post-mortem (engineering) - description: Standard workflow to backup monthly post-mortem within the engineering department. - category: engineering - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly post-mortem requests. - - Execute backup procedure on the designated post-mortem. - - Send a status update to the engineering team chat space. -- name: engineering-backup-urgent-post-mortem-1488 - title: Backup Urgent Post-mortem (engineering) - description: Standard workflow to backup urgent post-mortem within the engineering department. - category: engineering - services: - - chat - steps: - - Search for urgent post-mortem records. - - Review and backup the urgent post-mortem. - - Log completion in the master tracking spreadsheet. -- name: engineering-backup-secure-post-mortem-1489 - title: Backup Secure Post-mortem (engineering) - description: Standard workflow to backup secure post-mortem within the engineering department. - category: engineering - services: - - docs - - drive - steps: - - Fetch latest secure post-mortem data. - - Apply engineering policies to backup the post-mortem. - - Archive results in a secure Drive folder. -- name: finance-audit-weekly-invoice-1490 - title: Audit Weekly Invoice (finance) - description: Standard workflow to audit weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute audit procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-audit-monthly-invoice-1491 - title: Audit Monthly Invoice (finance) - description: Standard workflow to audit monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and audit the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-audit-urgent-invoice-1492 - title: Audit Urgent Invoice (finance) - description: Standard workflow to audit urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to audit the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-audit-secure-invoice-1493 - title: Audit Secure Invoice (finance) - description: Standard workflow to audit secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute audit procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-audit-weekly-expense-report-1494 - title: Audit Weekly Expense Report (finance) - description: Standard workflow to audit weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and audit the weekly expense report. - - Notify stakeholders via email. -- name: finance-audit-monthly-expense-report-1495 - title: Audit Monthly Expense Report (finance) - description: Standard workflow to audit monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to audit the expense report. - - Send a status update to the finance team chat space. -- name: finance-audit-urgent-expense-report-1496 - title: Audit Urgent Expense Report (finance) - description: Standard workflow to audit urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute audit procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-audit-secure-expense-report-1497 - title: Audit Secure Expense Report (finance) - description: Standard workflow to audit secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and audit the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-audit-weekly-budget-1498 - title: Audit Weekly Budget (finance) - description: Standard workflow to audit weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to audit the budget. - - Notify stakeholders via email. -- name: finance-audit-monthly-budget-1499 - title: Audit Monthly Budget (finance) - description: Standard workflow to audit monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute audit procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-audit-urgent-budget-1500 - title: Audit Urgent Budget (finance) - description: Standard workflow to audit urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and audit the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-audit-secure-budget-1501 - title: Audit Secure Budget (finance) - description: Standard workflow to audit secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to audit the budget. - - Archive results in a secure Drive folder. -- name: finance-audit-weekly-forecast-1502 - title: Audit Weekly Forecast (finance) - description: Standard workflow to audit weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute audit procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-audit-monthly-forecast-1503 - title: Audit Monthly Forecast (finance) - description: Standard workflow to audit monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and audit the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-audit-urgent-forecast-1504 - title: Audit Urgent Forecast (finance) - description: Standard workflow to audit urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to audit the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-audit-secure-forecast-1505 - title: Audit Secure Forecast (finance) - description: Standard workflow to audit secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute audit procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-audit-weekly-tax-document-1506 - title: Audit Weekly Tax Document (finance) - description: Standard workflow to audit weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and audit the weekly tax document. - - Notify stakeholders via email. -- name: finance-audit-monthly-tax-document-1507 - title: Audit Monthly Tax Document (finance) - description: Standard workflow to audit monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to audit the tax document. - - Send a status update to the finance team chat space. -- name: finance-audit-urgent-tax-document-1508 - title: Audit Urgent Tax Document (finance) - description: Standard workflow to audit urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute audit procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-audit-secure-tax-document-1509 - title: Audit Secure Tax Document (finance) - description: Standard workflow to audit secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and audit the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-audit-weekly-vendor-payment-1510 - title: Audit Weekly Vendor Payment (finance) - description: Standard workflow to audit weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to audit the vendor payment. - - Notify stakeholders via email. -- name: finance-audit-monthly-vendor-payment-1511 - title: Audit Monthly Vendor Payment (finance) - description: Standard workflow to audit monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute audit procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-audit-urgent-vendor-payment-1512 - title: Audit Urgent Vendor Payment (finance) - description: Standard workflow to audit urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and audit the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-audit-secure-vendor-payment-1513 - title: Audit Secure Vendor Payment (finance) - description: Standard workflow to audit secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to audit the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-onboard-weekly-invoice-1514 - title: Onboard Weekly Invoice (finance) - description: Standard workflow to onboard weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute onboard procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-onboard-monthly-invoice-1515 - title: Onboard Monthly Invoice (finance) - description: Standard workflow to onboard monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and onboard the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-onboard-urgent-invoice-1516 - title: Onboard Urgent Invoice (finance) - description: Standard workflow to onboard urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to onboard the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-onboard-secure-invoice-1517 - title: Onboard Secure Invoice (finance) - description: Standard workflow to onboard secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute onboard procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-onboard-weekly-expense-report-1518 - title: Onboard Weekly Expense Report (finance) - description: Standard workflow to onboard weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and onboard the weekly expense report. - - Notify stakeholders via email. -- name: finance-onboard-monthly-expense-report-1519 - title: Onboard Monthly Expense Report (finance) - description: Standard workflow to onboard monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to onboard the expense report. - - Send a status update to the finance team chat space. -- name: finance-onboard-urgent-expense-report-1520 - title: Onboard Urgent Expense Report (finance) - description: Standard workflow to onboard urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute onboard procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-onboard-secure-expense-report-1521 - title: Onboard Secure Expense Report (finance) - description: Standard workflow to onboard secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and onboard the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-onboard-weekly-budget-1522 - title: Onboard Weekly Budget (finance) - description: Standard workflow to onboard weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to onboard the budget. - - Notify stakeholders via email. -- name: finance-onboard-monthly-budget-1523 - title: Onboard Monthly Budget (finance) - description: Standard workflow to onboard monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute onboard procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-onboard-urgent-budget-1524 - title: Onboard Urgent Budget (finance) - description: Standard workflow to onboard urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and onboard the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-onboard-secure-budget-1525 - title: Onboard Secure Budget (finance) - description: Standard workflow to onboard secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to onboard the budget. - - Archive results in a secure Drive folder. -- name: finance-onboard-weekly-forecast-1526 - title: Onboard Weekly Forecast (finance) - description: Standard workflow to onboard weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute onboard procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-onboard-monthly-forecast-1527 - title: Onboard Monthly Forecast (finance) - description: Standard workflow to onboard monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and onboard the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-onboard-urgent-forecast-1528 - title: Onboard Urgent Forecast (finance) - description: Standard workflow to onboard urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to onboard the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-onboard-secure-forecast-1529 - title: Onboard Secure Forecast (finance) - description: Standard workflow to onboard secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute onboard procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-onboard-weekly-tax-document-1530 - title: Onboard Weekly Tax Document (finance) - description: Standard workflow to onboard weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and onboard the weekly tax document. - - Notify stakeholders via email. -- name: finance-onboard-monthly-tax-document-1531 - title: Onboard Monthly Tax Document (finance) - description: Standard workflow to onboard monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to onboard the tax document. - - Send a status update to the finance team chat space. -- name: finance-onboard-urgent-tax-document-1532 - title: Onboard Urgent Tax Document (finance) - description: Standard workflow to onboard urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute onboard procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-onboard-secure-tax-document-1533 - title: Onboard Secure Tax Document (finance) - description: Standard workflow to onboard secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and onboard the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-onboard-weekly-vendor-payment-1534 - title: Onboard Weekly Vendor Payment (finance) - description: Standard workflow to onboard weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to onboard the vendor payment. - - Notify stakeholders via email. -- name: finance-onboard-monthly-vendor-payment-1535 - title: Onboard Monthly Vendor Payment (finance) - description: Standard workflow to onboard monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute onboard procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-onboard-urgent-vendor-payment-1536 - title: Onboard Urgent Vendor Payment (finance) - description: Standard workflow to onboard urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and onboard the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-onboard-secure-vendor-payment-1537 - title: Onboard Secure Vendor Payment (finance) - description: Standard workflow to onboard secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to onboard the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-review-weekly-invoice-1538 - title: Review Weekly Invoice (finance) - description: Standard workflow to review weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute review procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-review-monthly-invoice-1539 - title: Review Monthly Invoice (finance) - description: Standard workflow to review monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and review the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-review-urgent-invoice-1540 - title: Review Urgent Invoice (finance) - description: Standard workflow to review urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to review the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-review-secure-invoice-1541 - title: Review Secure Invoice (finance) - description: Standard workflow to review secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute review procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-review-weekly-expense-report-1542 - title: Review Weekly Expense Report (finance) - description: Standard workflow to review weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and review the weekly expense report. - - Notify stakeholders via email. -- name: finance-review-monthly-expense-report-1543 - title: Review Monthly Expense Report (finance) - description: Standard workflow to review monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to review the expense report. - - Send a status update to the finance team chat space. -- name: finance-review-urgent-expense-report-1544 - title: Review Urgent Expense Report (finance) - description: Standard workflow to review urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute review procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-review-secure-expense-report-1545 - title: Review Secure Expense Report (finance) - description: Standard workflow to review secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and review the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-review-weekly-budget-1546 - title: Review Weekly Budget (finance) - description: Standard workflow to review weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to review the budget. - - Notify stakeholders via email. -- name: finance-review-monthly-budget-1547 - title: Review Monthly Budget (finance) - description: Standard workflow to review monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute review procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-review-urgent-budget-1548 - title: Review Urgent Budget (finance) - description: Standard workflow to review urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and review the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-review-secure-budget-1549 - title: Review Secure Budget (finance) - description: Standard workflow to review secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to review the budget. - - Archive results in a secure Drive folder. -- name: finance-review-weekly-forecast-1550 - title: Review Weekly Forecast (finance) - description: Standard workflow to review weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute review procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-review-monthly-forecast-1551 - title: Review Monthly Forecast (finance) - description: Standard workflow to review monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and review the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-review-urgent-forecast-1552 - title: Review Urgent Forecast (finance) - description: Standard workflow to review urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to review the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-review-secure-forecast-1553 - title: Review Secure Forecast (finance) - description: Standard workflow to review secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute review procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-review-weekly-tax-document-1554 - title: Review Weekly Tax Document (finance) - description: Standard workflow to review weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and review the weekly tax document. - - Notify stakeholders via email. -- name: finance-review-monthly-tax-document-1555 - title: Review Monthly Tax Document (finance) - description: Standard workflow to review monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to review the tax document. - - Send a status update to the finance team chat space. -- name: finance-review-urgent-tax-document-1556 - title: Review Urgent Tax Document (finance) - description: Standard workflow to review urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute review procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-review-secure-tax-document-1557 - title: Review Secure Tax Document (finance) - description: Standard workflow to review secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and review the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-review-weekly-vendor-payment-1558 - title: Review Weekly Vendor Payment (finance) - description: Standard workflow to review weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to review the vendor payment. - - Notify stakeholders via email. -- name: finance-review-monthly-vendor-payment-1559 - title: Review Monthly Vendor Payment (finance) - description: Standard workflow to review monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute review procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-review-urgent-vendor-payment-1560 - title: Review Urgent Vendor Payment (finance) - description: Standard workflow to review urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and review the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-review-secure-vendor-payment-1561 - title: Review Secure Vendor Payment (finance) - description: Standard workflow to review secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to review the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-approve-weekly-invoice-1562 - title: Approve Weekly Invoice (finance) - description: Standard workflow to approve weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute approve procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-approve-monthly-invoice-1563 - title: Approve Monthly Invoice (finance) - description: Standard workflow to approve monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and approve the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-approve-urgent-invoice-1564 - title: Approve Urgent Invoice (finance) - description: Standard workflow to approve urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to approve the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-approve-secure-invoice-1565 - title: Approve Secure Invoice (finance) - description: Standard workflow to approve secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute approve procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-approve-weekly-expense-report-1566 - title: Approve Weekly Expense Report (finance) - description: Standard workflow to approve weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and approve the weekly expense report. - - Notify stakeholders via email. -- name: finance-approve-monthly-expense-report-1567 - title: Approve Monthly Expense Report (finance) - description: Standard workflow to approve monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to approve the expense report. - - Send a status update to the finance team chat space. -- name: finance-approve-urgent-expense-report-1568 - title: Approve Urgent Expense Report (finance) - description: Standard workflow to approve urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute approve procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-approve-secure-expense-report-1569 - title: Approve Secure Expense Report (finance) - description: Standard workflow to approve secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and approve the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-approve-weekly-budget-1570 - title: Approve Weekly Budget (finance) - description: Standard workflow to approve weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to approve the budget. - - Notify stakeholders via email. -- name: finance-approve-monthly-budget-1571 - title: Approve Monthly Budget (finance) - description: Standard workflow to approve monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute approve procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-approve-urgent-budget-1572 - title: Approve Urgent Budget (finance) - description: Standard workflow to approve urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and approve the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-approve-secure-budget-1573 - title: Approve Secure Budget (finance) - description: Standard workflow to approve secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to approve the budget. - - Archive results in a secure Drive folder. -- name: finance-approve-weekly-forecast-1574 - title: Approve Weekly Forecast (finance) - description: Standard workflow to approve weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute approve procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-approve-monthly-forecast-1575 - title: Approve Monthly Forecast (finance) - description: Standard workflow to approve monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and approve the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-approve-urgent-forecast-1576 - title: Approve Urgent Forecast (finance) - description: Standard workflow to approve urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to approve the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-approve-secure-forecast-1577 - title: Approve Secure Forecast (finance) - description: Standard workflow to approve secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute approve procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-approve-weekly-tax-document-1578 - title: Approve Weekly Tax Document (finance) - description: Standard workflow to approve weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and approve the weekly tax document. - - Notify stakeholders via email. -- name: finance-approve-monthly-tax-document-1579 - title: Approve Monthly Tax Document (finance) - description: Standard workflow to approve monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to approve the tax document. - - Send a status update to the finance team chat space. -- name: finance-approve-urgent-tax-document-1580 - title: Approve Urgent Tax Document (finance) - description: Standard workflow to approve urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute approve procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-approve-secure-tax-document-1581 - title: Approve Secure Tax Document (finance) - description: Standard workflow to approve secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and approve the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-approve-weekly-vendor-payment-1582 - title: Approve Weekly Vendor Payment (finance) - description: Standard workflow to approve weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to approve the vendor payment. - - Notify stakeholders via email. -- name: finance-approve-monthly-vendor-payment-1583 - title: Approve Monthly Vendor Payment (finance) - description: Standard workflow to approve monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute approve procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-approve-urgent-vendor-payment-1584 - title: Approve Urgent Vendor Payment (finance) - description: Standard workflow to approve urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and approve the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-approve-secure-vendor-payment-1585 - title: Approve Secure Vendor Payment (finance) - description: Standard workflow to approve secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to approve the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-share-weekly-invoice-1586 - title: Share Weekly Invoice (finance) - description: Standard workflow to share weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute share procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-share-monthly-invoice-1587 - title: Share Monthly Invoice (finance) - description: Standard workflow to share monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and share the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-share-urgent-invoice-1588 - title: Share Urgent Invoice (finance) - description: Standard workflow to share urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to share the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-share-secure-invoice-1589 - title: Share Secure Invoice (finance) - description: Standard workflow to share secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute share procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-share-weekly-expense-report-1590 - title: Share Weekly Expense Report (finance) - description: Standard workflow to share weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and share the weekly expense report. - - Notify stakeholders via email. -- name: finance-share-monthly-expense-report-1591 - title: Share Monthly Expense Report (finance) - description: Standard workflow to share monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to share the expense report. - - Send a status update to the finance team chat space. -- name: finance-share-urgent-expense-report-1592 - title: Share Urgent Expense Report (finance) - description: Standard workflow to share urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute share procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-share-secure-expense-report-1593 - title: Share Secure Expense Report (finance) - description: Standard workflow to share secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and share the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-share-weekly-budget-1594 - title: Share Weekly Budget (finance) - description: Standard workflow to share weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to share the budget. - - Notify stakeholders via email. -- name: finance-share-monthly-budget-1595 - title: Share Monthly Budget (finance) - description: Standard workflow to share monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute share procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-share-urgent-budget-1596 - title: Share Urgent Budget (finance) - description: Standard workflow to share urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and share the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-share-secure-budget-1597 - title: Share Secure Budget (finance) - description: Standard workflow to share secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to share the budget. - - Archive results in a secure Drive folder. -- name: finance-share-weekly-forecast-1598 - title: Share Weekly Forecast (finance) - description: Standard workflow to share weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute share procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-share-monthly-forecast-1599 - title: Share Monthly Forecast (finance) - description: Standard workflow to share monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and share the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-share-urgent-forecast-1600 - title: Share Urgent Forecast (finance) - description: Standard workflow to share urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to share the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-share-secure-forecast-1601 - title: Share Secure Forecast (finance) - description: Standard workflow to share secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute share procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-share-weekly-tax-document-1602 - title: Share Weekly Tax Document (finance) - description: Standard workflow to share weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and share the weekly tax document. - - Notify stakeholders via email. -- name: finance-share-monthly-tax-document-1603 - title: Share Monthly Tax Document (finance) - description: Standard workflow to share monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to share the tax document. - - Send a status update to the finance team chat space. -- name: finance-share-urgent-tax-document-1604 - title: Share Urgent Tax Document (finance) - description: Standard workflow to share urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute share procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-share-secure-tax-document-1605 - title: Share Secure Tax Document (finance) - description: Standard workflow to share secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and share the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-share-weekly-vendor-payment-1606 - title: Share Weekly Vendor Payment (finance) - description: Standard workflow to share weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to share the vendor payment. - - Notify stakeholders via email. -- name: finance-share-monthly-vendor-payment-1607 - title: Share Monthly Vendor Payment (finance) - description: Standard workflow to share monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute share procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-share-urgent-vendor-payment-1608 - title: Share Urgent Vendor Payment (finance) - description: Standard workflow to share urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and share the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-share-secure-vendor-payment-1609 - title: Share Secure Vendor Payment (finance) - description: Standard workflow to share secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to share the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-publish-weekly-invoice-1610 - title: Publish Weekly Invoice (finance) - description: Standard workflow to publish weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute publish procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-publish-monthly-invoice-1611 - title: Publish Monthly Invoice (finance) - description: Standard workflow to publish monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and publish the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-publish-urgent-invoice-1612 - title: Publish Urgent Invoice (finance) - description: Standard workflow to publish urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to publish the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-publish-secure-invoice-1613 - title: Publish Secure Invoice (finance) - description: Standard workflow to publish secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute publish procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-publish-weekly-expense-report-1614 - title: Publish Weekly Expense Report (finance) - description: Standard workflow to publish weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and publish the weekly expense report. - - Notify stakeholders via email. -- name: finance-publish-monthly-expense-report-1615 - title: Publish Monthly Expense Report (finance) - description: Standard workflow to publish monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to publish the expense report. - - Send a status update to the finance team chat space. -- name: finance-publish-urgent-expense-report-1616 - title: Publish Urgent Expense Report (finance) - description: Standard workflow to publish urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute publish procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-publish-secure-expense-report-1617 - title: Publish Secure Expense Report (finance) - description: Standard workflow to publish secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and publish the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-publish-weekly-budget-1618 - title: Publish Weekly Budget (finance) - description: Standard workflow to publish weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to publish the budget. - - Notify stakeholders via email. -- name: finance-publish-monthly-budget-1619 - title: Publish Monthly Budget (finance) - description: Standard workflow to publish monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute publish procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-publish-urgent-budget-1620 - title: Publish Urgent Budget (finance) - description: Standard workflow to publish urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and publish the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-publish-secure-budget-1621 - title: Publish Secure Budget (finance) - description: Standard workflow to publish secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to publish the budget. - - Archive results in a secure Drive folder. -- name: finance-publish-weekly-forecast-1622 - title: Publish Weekly Forecast (finance) - description: Standard workflow to publish weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute publish procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-publish-monthly-forecast-1623 - title: Publish Monthly Forecast (finance) - description: Standard workflow to publish monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and publish the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-publish-urgent-forecast-1624 - title: Publish Urgent Forecast (finance) - description: Standard workflow to publish urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to publish the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-publish-secure-forecast-1625 - title: Publish Secure Forecast (finance) - description: Standard workflow to publish secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute publish procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-publish-weekly-tax-document-1626 - title: Publish Weekly Tax Document (finance) - description: Standard workflow to publish weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and publish the weekly tax document. - - Notify stakeholders via email. -- name: finance-publish-monthly-tax-document-1627 - title: Publish Monthly Tax Document (finance) - description: Standard workflow to publish monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to publish the tax document. - - Send a status update to the finance team chat space. -- name: finance-publish-urgent-tax-document-1628 - title: Publish Urgent Tax Document (finance) - description: Standard workflow to publish urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute publish procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-publish-secure-tax-document-1629 - title: Publish Secure Tax Document (finance) - description: Standard workflow to publish secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and publish the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-publish-weekly-vendor-payment-1630 - title: Publish Weekly Vendor Payment (finance) - description: Standard workflow to publish weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to publish the vendor payment. - - Notify stakeholders via email. -- name: finance-publish-monthly-vendor-payment-1631 - title: Publish Monthly Vendor Payment (finance) - description: Standard workflow to publish monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute publish procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-publish-urgent-vendor-payment-1632 - title: Publish Urgent Vendor Payment (finance) - description: Standard workflow to publish urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and publish the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-publish-secure-vendor-payment-1633 - title: Publish Secure Vendor Payment (finance) - description: Standard workflow to publish secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to publish the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-archive-weekly-invoice-1634 - title: Archive Weekly Invoice (finance) - description: Standard workflow to archive weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute archive procedure on the designated invoice. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly invoice targets before running. -- name: finance-archive-monthly-invoice-1635 - title: Archive Monthly Invoice (finance) - description: Standard workflow to archive monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and archive the monthly invoice. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly invoice targets before running. -- name: finance-archive-urgent-invoice-1636 - title: Archive Urgent Invoice (finance) - description: Standard workflow to archive urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to archive the invoice. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent invoice targets before running. -- name: finance-archive-secure-invoice-1637 - title: Archive Secure Invoice (finance) - description: Standard workflow to archive secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute archive procedure on the designated invoice. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure invoice targets before running. -- name: finance-archive-weekly-expense-report-1638 - title: Archive Weekly Expense Report (finance) - description: Standard workflow to archive weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and archive the weekly expense report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly expense report targets before running. -- name: finance-archive-monthly-expense-report-1639 - title: Archive Monthly Expense Report (finance) - description: Standard workflow to archive monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to archive the expense report. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly expense report targets before running. -- name: finance-archive-urgent-expense-report-1640 - title: Archive Urgent Expense Report (finance) - description: Standard workflow to archive urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute archive procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent expense report targets before running. -- name: finance-archive-secure-expense-report-1641 - title: Archive Secure Expense Report (finance) - description: Standard workflow to archive secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and archive the secure expense report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure expense report targets before running. -- name: finance-archive-weekly-budget-1642 - title: Archive Weekly Budget (finance) - description: Standard workflow to archive weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to archive the budget. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly budget targets before running. -- name: finance-archive-monthly-budget-1643 - title: Archive Monthly Budget (finance) - description: Standard workflow to archive monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute archive procedure on the designated budget. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly budget targets before running. -- name: finance-archive-urgent-budget-1644 - title: Archive Urgent Budget (finance) - description: Standard workflow to archive urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and archive the urgent budget. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent budget targets before running. -- name: finance-archive-secure-budget-1645 - title: Archive Secure Budget (finance) - description: Standard workflow to archive secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to archive the budget. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure budget targets before running. -- name: finance-archive-weekly-forecast-1646 - title: Archive Weekly Forecast (finance) - description: Standard workflow to archive weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute archive procedure on the designated forecast. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly forecast targets before running. -- name: finance-archive-monthly-forecast-1647 - title: Archive Monthly Forecast (finance) - description: Standard workflow to archive monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and archive the monthly forecast. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly forecast targets before running. -- name: finance-archive-urgent-forecast-1648 - title: Archive Urgent Forecast (finance) - description: Standard workflow to archive urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to archive the forecast. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent forecast targets before running. -- name: finance-archive-secure-forecast-1649 - title: Archive Secure Forecast (finance) - description: Standard workflow to archive secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute archive procedure on the designated forecast. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure forecast targets before running. -- name: finance-archive-weekly-tax-document-1650 - title: Archive Weekly Tax Document (finance) - description: Standard workflow to archive weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and archive the weekly tax document. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly tax document targets before running. -- name: finance-archive-monthly-tax-document-1651 - title: Archive Monthly Tax Document (finance) - description: Standard workflow to archive monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to archive the tax document. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly tax document targets before running. -- name: finance-archive-urgent-tax-document-1652 - title: Archive Urgent Tax Document (finance) - description: Standard workflow to archive urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute archive procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent tax document targets before running. -- name: finance-archive-secure-tax-document-1653 - title: Archive Secure Tax Document (finance) - description: Standard workflow to archive secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and archive the secure tax document. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure tax document targets before running. -- name: finance-archive-weekly-vendor-payment-1654 - title: Archive Weekly Vendor Payment (finance) - description: Standard workflow to archive weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to archive the vendor payment. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly vendor payment targets before running. -- name: finance-archive-monthly-vendor-payment-1655 - title: Archive Monthly Vendor Payment (finance) - description: Standard workflow to archive monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute archive procedure on the designated vendor payment. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly vendor payment targets before running. -- name: finance-archive-urgent-vendor-payment-1656 - title: Archive Urgent Vendor Payment (finance) - description: Standard workflow to archive urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and archive the urgent vendor payment. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent vendor payment targets before running. -- name: finance-archive-secure-vendor-payment-1657 - title: Archive Secure Vendor Payment (finance) - description: Standard workflow to archive secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to archive the vendor payment. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure vendor payment targets before running. -- name: finance-export-weekly-invoice-1658 - title: Export Weekly Invoice (finance) - description: Standard workflow to export weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute export procedure on the designated invoice. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly invoice targets before running. -- name: finance-export-monthly-invoice-1659 - title: Export Monthly Invoice (finance) - description: Standard workflow to export monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and export the monthly invoice. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly invoice targets before running. -- name: finance-export-urgent-invoice-1660 - title: Export Urgent Invoice (finance) - description: Standard workflow to export urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to export the invoice. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent invoice targets before running. -- name: finance-export-secure-invoice-1661 - title: Export Secure Invoice (finance) - description: Standard workflow to export secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute export procedure on the designated invoice. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure invoice targets before running. -- name: finance-export-weekly-expense-report-1662 - title: Export Weekly Expense Report (finance) - description: Standard workflow to export weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and export the weekly expense report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly expense report targets before running. -- name: finance-export-monthly-expense-report-1663 - title: Export Monthly Expense Report (finance) - description: Standard workflow to export monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to export the expense report. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly expense report targets before running. -- name: finance-export-urgent-expense-report-1664 - title: Export Urgent Expense Report (finance) - description: Standard workflow to export urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute export procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent expense report targets before running. -- name: finance-export-secure-expense-report-1665 - title: Export Secure Expense Report (finance) - description: Standard workflow to export secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and export the secure expense report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure expense report targets before running. -- name: finance-export-weekly-budget-1666 - title: Export Weekly Budget (finance) - description: Standard workflow to export weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to export the budget. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly budget targets before running. -- name: finance-export-monthly-budget-1667 - title: Export Monthly Budget (finance) - description: Standard workflow to export monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute export procedure on the designated budget. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly budget targets before running. -- name: finance-export-urgent-budget-1668 - title: Export Urgent Budget (finance) - description: Standard workflow to export urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and export the urgent budget. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent budget targets before running. -- name: finance-export-secure-budget-1669 - title: Export Secure Budget (finance) - description: Standard workflow to export secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to export the budget. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure budget targets before running. -- name: finance-export-weekly-forecast-1670 - title: Export Weekly Forecast (finance) - description: Standard workflow to export weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute export procedure on the designated forecast. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly forecast targets before running. -- name: finance-export-monthly-forecast-1671 - title: Export Monthly Forecast (finance) - description: Standard workflow to export monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and export the monthly forecast. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly forecast targets before running. -- name: finance-export-urgent-forecast-1672 - title: Export Urgent Forecast (finance) - description: Standard workflow to export urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to export the forecast. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent forecast targets before running. -- name: finance-export-secure-forecast-1673 - title: Export Secure Forecast (finance) - description: Standard workflow to export secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute export procedure on the designated forecast. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure forecast targets before running. -- name: finance-export-weekly-tax-document-1674 - title: Export Weekly Tax Document (finance) - description: Standard workflow to export weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and export the weekly tax document. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly tax document targets before running. -- name: finance-export-monthly-tax-document-1675 - title: Export Monthly Tax Document (finance) - description: Standard workflow to export monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to export the tax document. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly tax document targets before running. -- name: finance-export-urgent-tax-document-1676 - title: Export Urgent Tax Document (finance) - description: Standard workflow to export urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute export procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent tax document targets before running. -- name: finance-export-secure-tax-document-1677 - title: Export Secure Tax Document (finance) - description: Standard workflow to export secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and export the secure tax document. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure tax document targets before running. -- name: finance-export-weekly-vendor-payment-1678 - title: Export Weekly Vendor Payment (finance) - description: Standard workflow to export weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to export the vendor payment. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly vendor payment targets before running. -- name: finance-export-monthly-vendor-payment-1679 - title: Export Monthly Vendor Payment (finance) - description: Standard workflow to export monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute export procedure on the designated vendor payment. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly vendor payment targets before running. -- name: finance-export-urgent-vendor-payment-1680 - title: Export Urgent Vendor Payment (finance) - description: Standard workflow to export urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and export the urgent vendor payment. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent vendor payment targets before running. -- name: finance-export-secure-vendor-payment-1681 - title: Export Secure Vendor Payment (finance) - description: Standard workflow to export secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to export the vendor payment. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure vendor payment targets before running. -- name: finance-import-weekly-invoice-1682 - title: Import Weekly Invoice (finance) - description: Standard workflow to import weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute import procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-import-monthly-invoice-1683 - title: Import Monthly Invoice (finance) - description: Standard workflow to import monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and import the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-import-urgent-invoice-1684 - title: Import Urgent Invoice (finance) - description: Standard workflow to import urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to import the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-import-secure-invoice-1685 - title: Import Secure Invoice (finance) - description: Standard workflow to import secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute import procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-import-weekly-expense-report-1686 - title: Import Weekly Expense Report (finance) - description: Standard workflow to import weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and import the weekly expense report. - - Notify stakeholders via email. -- name: finance-import-monthly-expense-report-1687 - title: Import Monthly Expense Report (finance) - description: Standard workflow to import monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to import the expense report. - - Send a status update to the finance team chat space. -- name: finance-import-urgent-expense-report-1688 - title: Import Urgent Expense Report (finance) - description: Standard workflow to import urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute import procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-import-secure-expense-report-1689 - title: Import Secure Expense Report (finance) - description: Standard workflow to import secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and import the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-import-weekly-budget-1690 - title: Import Weekly Budget (finance) - description: Standard workflow to import weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to import the budget. - - Notify stakeholders via email. -- name: finance-import-monthly-budget-1691 - title: Import Monthly Budget (finance) - description: Standard workflow to import monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute import procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-import-urgent-budget-1692 - title: Import Urgent Budget (finance) - description: Standard workflow to import urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and import the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-import-secure-budget-1693 - title: Import Secure Budget (finance) - description: Standard workflow to import secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to import the budget. - - Archive results in a secure Drive folder. -- name: finance-import-weekly-forecast-1694 - title: Import Weekly Forecast (finance) - description: Standard workflow to import weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute import procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-import-monthly-forecast-1695 - title: Import Monthly Forecast (finance) - description: Standard workflow to import monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and import the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-import-urgent-forecast-1696 - title: Import Urgent Forecast (finance) - description: Standard workflow to import urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to import the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-import-secure-forecast-1697 - title: Import Secure Forecast (finance) - description: Standard workflow to import secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute import procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-import-weekly-tax-document-1698 - title: Import Weekly Tax Document (finance) - description: Standard workflow to import weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and import the weekly tax document. - - Notify stakeholders via email. -- name: finance-import-monthly-tax-document-1699 - title: Import Monthly Tax Document (finance) - description: Standard workflow to import monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to import the tax document. - - Send a status update to the finance team chat space. -- name: finance-import-urgent-tax-document-1700 - title: Import Urgent Tax Document (finance) - description: Standard workflow to import urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute import procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-import-secure-tax-document-1701 - title: Import Secure Tax Document (finance) - description: Standard workflow to import secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and import the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-import-weekly-vendor-payment-1702 - title: Import Weekly Vendor Payment (finance) - description: Standard workflow to import weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to import the vendor payment. - - Notify stakeholders via email. -- name: finance-import-monthly-vendor-payment-1703 - title: Import Monthly Vendor Payment (finance) - description: Standard workflow to import monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute import procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-import-urgent-vendor-payment-1704 - title: Import Urgent Vendor Payment (finance) - description: Standard workflow to import urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and import the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-import-secure-vendor-payment-1705 - title: Import Secure Vendor Payment (finance) - description: Standard workflow to import secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to import the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-sync-weekly-invoice-1706 - title: Sync Weekly Invoice (finance) - description: Standard workflow to sync weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute sync procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-sync-monthly-invoice-1707 - title: Sync Monthly Invoice (finance) - description: Standard workflow to sync monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and sync the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-sync-urgent-invoice-1708 - title: Sync Urgent Invoice (finance) - description: Standard workflow to sync urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to sync the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-sync-secure-invoice-1709 - title: Sync Secure Invoice (finance) - description: Standard workflow to sync secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute sync procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-sync-weekly-expense-report-1710 - title: Sync Weekly Expense Report (finance) - description: Standard workflow to sync weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and sync the weekly expense report. - - Notify stakeholders via email. -- name: finance-sync-monthly-expense-report-1711 - title: Sync Monthly Expense Report (finance) - description: Standard workflow to sync monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to sync the expense report. - - Send a status update to the finance team chat space. -- name: finance-sync-urgent-expense-report-1712 - title: Sync Urgent Expense Report (finance) - description: Standard workflow to sync urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute sync procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-sync-secure-expense-report-1713 - title: Sync Secure Expense Report (finance) - description: Standard workflow to sync secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and sync the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-sync-weekly-budget-1714 - title: Sync Weekly Budget (finance) - description: Standard workflow to sync weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to sync the budget. - - Notify stakeholders via email. -- name: finance-sync-monthly-budget-1715 - title: Sync Monthly Budget (finance) - description: Standard workflow to sync monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute sync procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-sync-urgent-budget-1716 - title: Sync Urgent Budget (finance) - description: Standard workflow to sync urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and sync the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-sync-secure-budget-1717 - title: Sync Secure Budget (finance) - description: Standard workflow to sync secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to sync the budget. - - Archive results in a secure Drive folder. -- name: finance-sync-weekly-forecast-1718 - title: Sync Weekly Forecast (finance) - description: Standard workflow to sync weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute sync procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-sync-monthly-forecast-1719 - title: Sync Monthly Forecast (finance) - description: Standard workflow to sync monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and sync the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-sync-urgent-forecast-1720 - title: Sync Urgent Forecast (finance) - description: Standard workflow to sync urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to sync the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-sync-secure-forecast-1721 - title: Sync Secure Forecast (finance) - description: Standard workflow to sync secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute sync procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-sync-weekly-tax-document-1722 - title: Sync Weekly Tax Document (finance) - description: Standard workflow to sync weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and sync the weekly tax document. - - Notify stakeholders via email. -- name: finance-sync-monthly-tax-document-1723 - title: Sync Monthly Tax Document (finance) - description: Standard workflow to sync monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to sync the tax document. - - Send a status update to the finance team chat space. -- name: finance-sync-urgent-tax-document-1724 - title: Sync Urgent Tax Document (finance) - description: Standard workflow to sync urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute sync procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-sync-secure-tax-document-1725 - title: Sync Secure Tax Document (finance) - description: Standard workflow to sync secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and sync the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-sync-weekly-vendor-payment-1726 - title: Sync Weekly Vendor Payment (finance) - description: Standard workflow to sync weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to sync the vendor payment. - - Notify stakeholders via email. -- name: finance-sync-monthly-vendor-payment-1727 - title: Sync Monthly Vendor Payment (finance) - description: Standard workflow to sync monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute sync procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-sync-urgent-vendor-payment-1728 - title: Sync Urgent Vendor Payment (finance) - description: Standard workflow to sync urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and sync the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-sync-secure-vendor-payment-1729 - title: Sync Secure Vendor Payment (finance) - description: Standard workflow to sync secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to sync the vendor payment. - - Archive results in a secure Drive folder. -- name: finance-migrate-weekly-invoice-1730 - title: Migrate Weekly Invoice (finance) - description: Standard workflow to migrate weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute migrate procedure on the designated invoice. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly invoice targets before running. -- name: finance-migrate-monthly-invoice-1731 - title: Migrate Monthly Invoice (finance) - description: Standard workflow to migrate monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and migrate the monthly invoice. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly invoice targets before running. -- name: finance-migrate-urgent-invoice-1732 - title: Migrate Urgent Invoice (finance) - description: Standard workflow to migrate urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to migrate the invoice. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent invoice targets before running. -- name: finance-migrate-secure-invoice-1733 - title: Migrate Secure Invoice (finance) - description: Standard workflow to migrate secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute migrate procedure on the designated invoice. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure invoice targets before running. -- name: finance-migrate-weekly-expense-report-1734 - title: Migrate Weekly Expense Report (finance) - description: Standard workflow to migrate weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and migrate the weekly expense report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly expense report targets before running. -- name: finance-migrate-monthly-expense-report-1735 - title: Migrate Monthly Expense Report (finance) - description: Standard workflow to migrate monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to migrate the expense report. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly expense report targets before running. -- name: finance-migrate-urgent-expense-report-1736 - title: Migrate Urgent Expense Report (finance) - description: Standard workflow to migrate urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute migrate procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent expense report targets before running. -- name: finance-migrate-secure-expense-report-1737 - title: Migrate Secure Expense Report (finance) - description: Standard workflow to migrate secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and migrate the secure expense report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure expense report targets before running. -- name: finance-migrate-weekly-budget-1738 - title: Migrate Weekly Budget (finance) - description: Standard workflow to migrate weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to migrate the budget. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly budget targets before running. -- name: finance-migrate-monthly-budget-1739 - title: Migrate Monthly Budget (finance) - description: Standard workflow to migrate monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute migrate procedure on the designated budget. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly budget targets before running. -- name: finance-migrate-urgent-budget-1740 - title: Migrate Urgent Budget (finance) - description: Standard workflow to migrate urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and migrate the urgent budget. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent budget targets before running. -- name: finance-migrate-secure-budget-1741 - title: Migrate Secure Budget (finance) - description: Standard workflow to migrate secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to migrate the budget. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure budget targets before running. -- name: finance-migrate-weekly-forecast-1742 - title: Migrate Weekly Forecast (finance) - description: Standard workflow to migrate weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute migrate procedure on the designated forecast. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly forecast targets before running. -- name: finance-migrate-monthly-forecast-1743 - title: Migrate Monthly Forecast (finance) - description: Standard workflow to migrate monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and migrate the monthly forecast. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly forecast targets before running. -- name: finance-migrate-urgent-forecast-1744 - title: Migrate Urgent Forecast (finance) - description: Standard workflow to migrate urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to migrate the forecast. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent forecast targets before running. -- name: finance-migrate-secure-forecast-1745 - title: Migrate Secure Forecast (finance) - description: Standard workflow to migrate secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute migrate procedure on the designated forecast. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure forecast targets before running. -- name: finance-migrate-weekly-tax-document-1746 - title: Migrate Weekly Tax Document (finance) - description: Standard workflow to migrate weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and migrate the weekly tax document. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly tax document targets before running. -- name: finance-migrate-monthly-tax-document-1747 - title: Migrate Monthly Tax Document (finance) - description: Standard workflow to migrate monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to migrate the tax document. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly tax document targets before running. -- name: finance-migrate-urgent-tax-document-1748 - title: Migrate Urgent Tax Document (finance) - description: Standard workflow to migrate urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute migrate procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent tax document targets before running. -- name: finance-migrate-secure-tax-document-1749 - title: Migrate Secure Tax Document (finance) - description: Standard workflow to migrate secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and migrate the secure tax document. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure tax document targets before running. -- name: finance-migrate-weekly-vendor-payment-1750 - title: Migrate Weekly Vendor Payment (finance) - description: Standard workflow to migrate weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to migrate the vendor payment. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly vendor payment targets before running. -- name: finance-migrate-monthly-vendor-payment-1751 - title: Migrate Monthly Vendor Payment (finance) - description: Standard workflow to migrate monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute migrate procedure on the designated vendor payment. - - Send a status update to the finance team chat space. - caution: Action involves bulk data manipulation. Confirm monthly vendor payment targets before running. -- name: finance-migrate-urgent-vendor-payment-1752 - title: Migrate Urgent Vendor Payment (finance) - description: Standard workflow to migrate urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and migrate the urgent vendor payment. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent vendor payment targets before running. -- name: finance-migrate-secure-vendor-payment-1753 - title: Migrate Secure Vendor Payment (finance) - description: Standard workflow to migrate secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to migrate the vendor payment. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure vendor payment targets before running. -- name: finance-backup-weekly-invoice-1754 - title: Backup Weekly Invoice (finance) - description: Standard workflow to backup weekly invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly invoice requests. - - Execute backup procedure on the designated invoice. - - Notify stakeholders via email. -- name: finance-backup-monthly-invoice-1755 - title: Backup Monthly Invoice (finance) - description: Standard workflow to backup monthly invoice within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly invoice records. - - Review and backup the monthly invoice. - - Send a status update to the finance team chat space. -- name: finance-backup-urgent-invoice-1756 - title: Backup Urgent Invoice (finance) - description: Standard workflow to backup urgent invoice within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent invoice data. - - Apply finance policies to backup the invoice. - - Log completion in the master tracking spreadsheet. -- name: finance-backup-secure-invoice-1757 - title: Backup Secure Invoice (finance) - description: Standard workflow to backup secure invoice within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure invoice requests. - - Execute backup procedure on the designated invoice. - - Archive results in a secure Drive folder. -- name: finance-backup-weekly-expense-report-1758 - title: Backup Weekly Expense Report (finance) - description: Standard workflow to backup weekly expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly expense report records. - - Review and backup the weekly expense report. - - Notify stakeholders via email. -- name: finance-backup-monthly-expense-report-1759 - title: Backup Monthly Expense Report (finance) - description: Standard workflow to backup monthly expense report within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly expense report data. - - Apply finance policies to backup the expense report. - - Send a status update to the finance team chat space. -- name: finance-backup-urgent-expense-report-1760 - title: Backup Urgent Expense Report (finance) - description: Standard workflow to backup urgent expense report within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent expense report requests. - - Execute backup procedure on the designated expense report. - - Log completion in the master tracking spreadsheet. -- name: finance-backup-secure-expense-report-1761 - title: Backup Secure Expense Report (finance) - description: Standard workflow to backup secure expense report within the finance department. - category: finance - services: - - drive - steps: - - Search for secure expense report records. - - Review and backup the secure expense report. - - Archive results in a secure Drive folder. -- name: finance-backup-weekly-budget-1762 - title: Backup Weekly Budget (finance) - description: Standard workflow to backup weekly budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly budget data. - - Apply finance policies to backup the budget. - - Notify stakeholders via email. -- name: finance-backup-monthly-budget-1763 - title: Backup Monthly Budget (finance) - description: Standard workflow to backup monthly budget within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly budget requests. - - Execute backup procedure on the designated budget. - - Send a status update to the finance team chat space. -- name: finance-backup-urgent-budget-1764 - title: Backup Urgent Budget (finance) - description: Standard workflow to backup urgent budget within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent budget records. - - Review and backup the urgent budget. - - Log completion in the master tracking spreadsheet. -- name: finance-backup-secure-budget-1765 - title: Backup Secure Budget (finance) - description: Standard workflow to backup secure budget within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure budget data. - - Apply finance policies to backup the budget. - - Archive results in a secure Drive folder. -- name: finance-backup-weekly-forecast-1766 - title: Backup Weekly Forecast (finance) - description: Standard workflow to backup weekly forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending weekly forecast requests. - - Execute backup procedure on the designated forecast. - - Notify stakeholders via email. -- name: finance-backup-monthly-forecast-1767 - title: Backup Monthly Forecast (finance) - description: Standard workflow to backup monthly forecast within the finance department. - category: finance - services: - - drive - steps: - - Search for monthly forecast records. - - Review and backup the monthly forecast. - - Send a status update to the finance team chat space. -- name: finance-backup-urgent-forecast-1768 - title: Backup Urgent Forecast (finance) - description: Standard workflow to backup urgent forecast within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest urgent forecast data. - - Apply finance policies to backup the forecast. - - Log completion in the master tracking spreadsheet. -- name: finance-backup-secure-forecast-1769 - title: Backup Secure Forecast (finance) - description: Standard workflow to backup secure forecast within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending secure forecast requests. - - Execute backup procedure on the designated forecast. - - Archive results in a secure Drive folder. -- name: finance-backup-weekly-tax-document-1770 - title: Backup Weekly Tax Document (finance) - description: Standard workflow to backup weekly tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for weekly tax document records. - - Review and backup the weekly tax document. - - Notify stakeholders via email. -- name: finance-backup-monthly-tax-document-1771 - title: Backup Monthly Tax Document (finance) - description: Standard workflow to backup monthly tax document within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest monthly tax document data. - - Apply finance policies to backup the tax document. - - Send a status update to the finance team chat space. -- name: finance-backup-urgent-tax-document-1772 - title: Backup Urgent Tax Document (finance) - description: Standard workflow to backup urgent tax document within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending urgent tax document requests. - - Execute backup procedure on the designated tax document. - - Log completion in the master tracking spreadsheet. -- name: finance-backup-secure-tax-document-1773 - title: Backup Secure Tax Document (finance) - description: Standard workflow to backup secure tax document within the finance department. - category: finance - services: - - drive - steps: - - Search for secure tax document records. - - Review and backup the secure tax document. - - Archive results in a secure Drive folder. -- name: finance-backup-weekly-vendor-payment-1774 - title: Backup Weekly Vendor Payment (finance) - description: Standard workflow to backup weekly vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest weekly vendor payment data. - - Apply finance policies to backup the vendor payment. - - Notify stakeholders via email. -- name: finance-backup-monthly-vendor-payment-1775 - title: Backup Monthly Vendor Payment (finance) - description: Standard workflow to backup monthly vendor payment within the finance department. - category: finance - services: - - sheets - - drive - - gmail - steps: - - Check system for pending monthly vendor payment requests. - - Execute backup procedure on the designated vendor payment. - - Send a status update to the finance team chat space. -- name: finance-backup-urgent-vendor-payment-1776 - title: Backup Urgent Vendor Payment (finance) - description: Standard workflow to backup urgent vendor payment within the finance department. - category: finance - services: - - drive - steps: - - Search for urgent vendor payment records. - - Review and backup the urgent vendor payment. - - Log completion in the master tracking spreadsheet. -- name: finance-backup-secure-vendor-payment-1777 - title: Backup Secure Vendor Payment (finance) - description: Standard workflow to backup secure vendor payment within the finance department. - category: finance - services: - - gmail - - sheets - steps: - - Fetch latest secure vendor payment data. - - Apply finance policies to backup the vendor payment. - - Archive results in a secure Drive folder. -- name: legal-audit-weekly-nda-1778 - title: Audit Weekly Nda (legal) - description: Standard workflow to audit weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute audit procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-audit-monthly-nda-1779 - title: Audit Monthly Nda (legal) - description: Standard workflow to audit monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and audit the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-audit-urgent-nda-1780 - title: Audit Urgent Nda (legal) - description: Standard workflow to audit urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to audit the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-audit-secure-nda-1781 - title: Audit Secure Nda (legal) - description: Standard workflow to audit secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute audit procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-audit-weekly-contract-1782 - title: Audit Weekly Contract (legal) - description: Standard workflow to audit weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and audit the weekly contract. - - Notify stakeholders via email. -- name: legal-audit-monthly-contract-1783 - title: Audit Monthly Contract (legal) - description: Standard workflow to audit monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to audit the contract. - - Send a status update to the legal team chat space. -- name: legal-audit-urgent-contract-1784 - title: Audit Urgent Contract (legal) - description: Standard workflow to audit urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute audit procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-audit-secure-contract-1785 - title: Audit Secure Contract (legal) - description: Standard workflow to audit secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and audit the secure contract. - - Archive results in a secure Drive folder. -- name: legal-audit-weekly-compliance-report-1786 - title: Audit Weekly Compliance Report (legal) - description: Standard workflow to audit weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to audit the compliance report. - - Notify stakeholders via email. -- name: legal-audit-monthly-compliance-report-1787 - title: Audit Monthly Compliance Report (legal) - description: Standard workflow to audit monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute audit procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-audit-urgent-compliance-report-1788 - title: Audit Urgent Compliance Report (legal) - description: Standard workflow to audit urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and audit the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-audit-secure-compliance-report-1789 - title: Audit Secure Compliance Report (legal) - description: Standard workflow to audit secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to audit the compliance report. - - Archive results in a secure Drive folder. -- name: legal-audit-weekly-policy-1790 - title: Audit Weekly Policy (legal) - description: Standard workflow to audit weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute audit procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-audit-monthly-policy-1791 - title: Audit Monthly Policy (legal) - description: Standard workflow to audit monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and audit the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-audit-urgent-policy-1792 - title: Audit Urgent Policy (legal) - description: Standard workflow to audit urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to audit the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-audit-secure-policy-1793 - title: Audit Secure Policy (legal) - description: Standard workflow to audit secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute audit procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-audit-weekly-litigation-hold-1794 - title: Audit Weekly Litigation Hold (legal) - description: Standard workflow to audit weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and audit the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-audit-monthly-litigation-hold-1795 - title: Audit Monthly Litigation Hold (legal) - description: Standard workflow to audit monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to audit the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-audit-urgent-litigation-hold-1796 - title: Audit Urgent Litigation Hold (legal) - description: Standard workflow to audit urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute audit procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-audit-secure-litigation-hold-1797 - title: Audit Secure Litigation Hold (legal) - description: Standard workflow to audit secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and audit the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-audit-weekly-terms-of-service-1798 - title: Audit Weekly Terms Of Service (legal) - description: Standard workflow to audit weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to audit the terms of service. - - Notify stakeholders via email. -- name: legal-audit-monthly-terms-of-service-1799 - title: Audit Monthly Terms Of Service (legal) - description: Standard workflow to audit monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute audit procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-audit-urgent-terms-of-service-1800 - title: Audit Urgent Terms Of Service (legal) - description: Standard workflow to audit urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and audit the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-audit-secure-terms-of-service-1801 - title: Audit Secure Terms Of Service (legal) - description: Standard workflow to audit secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to audit the terms of service. - - Archive results in a secure Drive folder. -- name: legal-onboard-weekly-nda-1802 - title: Onboard Weekly Nda (legal) - description: Standard workflow to onboard weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute onboard procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-onboard-monthly-nda-1803 - title: Onboard Monthly Nda (legal) - description: Standard workflow to onboard monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and onboard the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-onboard-urgent-nda-1804 - title: Onboard Urgent Nda (legal) - description: Standard workflow to onboard urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to onboard the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-onboard-secure-nda-1805 - title: Onboard Secure Nda (legal) - description: Standard workflow to onboard secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute onboard procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-onboard-weekly-contract-1806 - title: Onboard Weekly Contract (legal) - description: Standard workflow to onboard weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and onboard the weekly contract. - - Notify stakeholders via email. -- name: legal-onboard-monthly-contract-1807 - title: Onboard Monthly Contract (legal) - description: Standard workflow to onboard monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to onboard the contract. - - Send a status update to the legal team chat space. -- name: legal-onboard-urgent-contract-1808 - title: Onboard Urgent Contract (legal) - description: Standard workflow to onboard urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute onboard procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-onboard-secure-contract-1809 - title: Onboard Secure Contract (legal) - description: Standard workflow to onboard secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and onboard the secure contract. - - Archive results in a secure Drive folder. -- name: legal-onboard-weekly-compliance-report-1810 - title: Onboard Weekly Compliance Report (legal) - description: Standard workflow to onboard weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to onboard the compliance report. - - Notify stakeholders via email. -- name: legal-onboard-monthly-compliance-report-1811 - title: Onboard Monthly Compliance Report (legal) - description: Standard workflow to onboard monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute onboard procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-onboard-urgent-compliance-report-1812 - title: Onboard Urgent Compliance Report (legal) - description: Standard workflow to onboard urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and onboard the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-onboard-secure-compliance-report-1813 - title: Onboard Secure Compliance Report (legal) - description: Standard workflow to onboard secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to onboard the compliance report. - - Archive results in a secure Drive folder. -- name: legal-onboard-weekly-policy-1814 - title: Onboard Weekly Policy (legal) - description: Standard workflow to onboard weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute onboard procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-onboard-monthly-policy-1815 - title: Onboard Monthly Policy (legal) - description: Standard workflow to onboard monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and onboard the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-onboard-urgent-policy-1816 - title: Onboard Urgent Policy (legal) - description: Standard workflow to onboard urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to onboard the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-onboard-secure-policy-1817 - title: Onboard Secure Policy (legal) - description: Standard workflow to onboard secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute onboard procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-onboard-weekly-litigation-hold-1818 - title: Onboard Weekly Litigation Hold (legal) - description: Standard workflow to onboard weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and onboard the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-onboard-monthly-litigation-hold-1819 - title: Onboard Monthly Litigation Hold (legal) - description: Standard workflow to onboard monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to onboard the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-onboard-urgent-litigation-hold-1820 - title: Onboard Urgent Litigation Hold (legal) - description: Standard workflow to onboard urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute onboard procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-onboard-secure-litigation-hold-1821 - title: Onboard Secure Litigation Hold (legal) - description: Standard workflow to onboard secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and onboard the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-onboard-weekly-terms-of-service-1822 - title: Onboard Weekly Terms Of Service (legal) - description: Standard workflow to onboard weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to onboard the terms of service. - - Notify stakeholders via email. -- name: legal-onboard-monthly-terms-of-service-1823 - title: Onboard Monthly Terms Of Service (legal) - description: Standard workflow to onboard monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute onboard procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-onboard-urgent-terms-of-service-1824 - title: Onboard Urgent Terms Of Service (legal) - description: Standard workflow to onboard urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and onboard the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-onboard-secure-terms-of-service-1825 - title: Onboard Secure Terms Of Service (legal) - description: Standard workflow to onboard secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to onboard the terms of service. - - Archive results in a secure Drive folder. -- name: legal-review-weekly-nda-1826 - title: Review Weekly Nda (legal) - description: Standard workflow to review weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute review procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-review-monthly-nda-1827 - title: Review Monthly Nda (legal) - description: Standard workflow to review monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and review the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-review-urgent-nda-1828 - title: Review Urgent Nda (legal) - description: Standard workflow to review urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to review the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-review-secure-nda-1829 - title: Review Secure Nda (legal) - description: Standard workflow to review secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute review procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-review-weekly-contract-1830 - title: Review Weekly Contract (legal) - description: Standard workflow to review weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and review the weekly contract. - - Notify stakeholders via email. -- name: legal-review-monthly-contract-1831 - title: Review Monthly Contract (legal) - description: Standard workflow to review monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to review the contract. - - Send a status update to the legal team chat space. -- name: legal-review-urgent-contract-1832 - title: Review Urgent Contract (legal) - description: Standard workflow to review urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute review procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-review-secure-contract-1833 - title: Review Secure Contract (legal) - description: Standard workflow to review secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and review the secure contract. - - Archive results in a secure Drive folder. -- name: legal-review-weekly-compliance-report-1834 - title: Review Weekly Compliance Report (legal) - description: Standard workflow to review weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to review the compliance report. - - Notify stakeholders via email. -- name: legal-review-monthly-compliance-report-1835 - title: Review Monthly Compliance Report (legal) - description: Standard workflow to review monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute review procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-review-urgent-compliance-report-1836 - title: Review Urgent Compliance Report (legal) - description: Standard workflow to review urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and review the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-review-secure-compliance-report-1837 - title: Review Secure Compliance Report (legal) - description: Standard workflow to review secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to review the compliance report. - - Archive results in a secure Drive folder. -- name: legal-review-weekly-policy-1838 - title: Review Weekly Policy (legal) - description: Standard workflow to review weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute review procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-review-monthly-policy-1839 - title: Review Monthly Policy (legal) - description: Standard workflow to review monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and review the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-review-urgent-policy-1840 - title: Review Urgent Policy (legal) - description: Standard workflow to review urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to review the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-review-secure-policy-1841 - title: Review Secure Policy (legal) - description: Standard workflow to review secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute review procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-review-weekly-litigation-hold-1842 - title: Review Weekly Litigation Hold (legal) - description: Standard workflow to review weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and review the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-review-monthly-litigation-hold-1843 - title: Review Monthly Litigation Hold (legal) - description: Standard workflow to review monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to review the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-review-urgent-litigation-hold-1844 - title: Review Urgent Litigation Hold (legal) - description: Standard workflow to review urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute review procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-review-secure-litigation-hold-1845 - title: Review Secure Litigation Hold (legal) - description: Standard workflow to review secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and review the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-review-weekly-terms-of-service-1846 - title: Review Weekly Terms Of Service (legal) - description: Standard workflow to review weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to review the terms of service. - - Notify stakeholders via email. -- name: legal-review-monthly-terms-of-service-1847 - title: Review Monthly Terms Of Service (legal) - description: Standard workflow to review monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute review procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-review-urgent-terms-of-service-1848 - title: Review Urgent Terms Of Service (legal) - description: Standard workflow to review urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and review the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-review-secure-terms-of-service-1849 - title: Review Secure Terms Of Service (legal) - description: Standard workflow to review secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to review the terms of service. - - Archive results in a secure Drive folder. -- name: legal-approve-weekly-nda-1850 - title: Approve Weekly Nda (legal) - description: Standard workflow to approve weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute approve procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-approve-monthly-nda-1851 - title: Approve Monthly Nda (legal) - description: Standard workflow to approve monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and approve the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-approve-urgent-nda-1852 - title: Approve Urgent Nda (legal) - description: Standard workflow to approve urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to approve the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-approve-secure-nda-1853 - title: Approve Secure Nda (legal) - description: Standard workflow to approve secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute approve procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-approve-weekly-contract-1854 - title: Approve Weekly Contract (legal) - description: Standard workflow to approve weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and approve the weekly contract. - - Notify stakeholders via email. -- name: legal-approve-monthly-contract-1855 - title: Approve Monthly Contract (legal) - description: Standard workflow to approve monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to approve the contract. - - Send a status update to the legal team chat space. -- name: legal-approve-urgent-contract-1856 - title: Approve Urgent Contract (legal) - description: Standard workflow to approve urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute approve procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-approve-secure-contract-1857 - title: Approve Secure Contract (legal) - description: Standard workflow to approve secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and approve the secure contract. - - Archive results in a secure Drive folder. -- name: legal-approve-weekly-compliance-report-1858 - title: Approve Weekly Compliance Report (legal) - description: Standard workflow to approve weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to approve the compliance report. - - Notify stakeholders via email. -- name: legal-approve-monthly-compliance-report-1859 - title: Approve Monthly Compliance Report (legal) - description: Standard workflow to approve monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute approve procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-approve-urgent-compliance-report-1860 - title: Approve Urgent Compliance Report (legal) - description: Standard workflow to approve urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and approve the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-approve-secure-compliance-report-1861 - title: Approve Secure Compliance Report (legal) - description: Standard workflow to approve secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to approve the compliance report. - - Archive results in a secure Drive folder. -- name: legal-approve-weekly-policy-1862 - title: Approve Weekly Policy (legal) - description: Standard workflow to approve weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute approve procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-approve-monthly-policy-1863 - title: Approve Monthly Policy (legal) - description: Standard workflow to approve monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and approve the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-approve-urgent-policy-1864 - title: Approve Urgent Policy (legal) - description: Standard workflow to approve urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to approve the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-approve-secure-policy-1865 - title: Approve Secure Policy (legal) - description: Standard workflow to approve secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute approve procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-approve-weekly-litigation-hold-1866 - title: Approve Weekly Litigation Hold (legal) - description: Standard workflow to approve weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and approve the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-approve-monthly-litigation-hold-1867 - title: Approve Monthly Litigation Hold (legal) - description: Standard workflow to approve monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to approve the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-approve-urgent-litigation-hold-1868 - title: Approve Urgent Litigation Hold (legal) - description: Standard workflow to approve urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute approve procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-approve-secure-litigation-hold-1869 - title: Approve Secure Litigation Hold (legal) - description: Standard workflow to approve secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and approve the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-approve-weekly-terms-of-service-1870 - title: Approve Weekly Terms Of Service (legal) - description: Standard workflow to approve weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to approve the terms of service. - - Notify stakeholders via email. -- name: legal-approve-monthly-terms-of-service-1871 - title: Approve Monthly Terms Of Service (legal) - description: Standard workflow to approve monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute approve procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-approve-urgent-terms-of-service-1872 - title: Approve Urgent Terms Of Service (legal) - description: Standard workflow to approve urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and approve the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-approve-secure-terms-of-service-1873 - title: Approve Secure Terms Of Service (legal) - description: Standard workflow to approve secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to approve the terms of service. - - Archive results in a secure Drive folder. -- name: legal-share-weekly-nda-1874 - title: Share Weekly Nda (legal) - description: Standard workflow to share weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute share procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-share-monthly-nda-1875 - title: Share Monthly Nda (legal) - description: Standard workflow to share monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and share the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-share-urgent-nda-1876 - title: Share Urgent Nda (legal) - description: Standard workflow to share urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to share the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-share-secure-nda-1877 - title: Share Secure Nda (legal) - description: Standard workflow to share secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute share procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-share-weekly-contract-1878 - title: Share Weekly Contract (legal) - description: Standard workflow to share weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and share the weekly contract. - - Notify stakeholders via email. -- name: legal-share-monthly-contract-1879 - title: Share Monthly Contract (legal) - description: Standard workflow to share monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to share the contract. - - Send a status update to the legal team chat space. -- name: legal-share-urgent-contract-1880 - title: Share Urgent Contract (legal) - description: Standard workflow to share urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute share procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-share-secure-contract-1881 - title: Share Secure Contract (legal) - description: Standard workflow to share secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and share the secure contract. - - Archive results in a secure Drive folder. -- name: legal-share-weekly-compliance-report-1882 - title: Share Weekly Compliance Report (legal) - description: Standard workflow to share weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to share the compliance report. - - Notify stakeholders via email. -- name: legal-share-monthly-compliance-report-1883 - title: Share Monthly Compliance Report (legal) - description: Standard workflow to share monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute share procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-share-urgent-compliance-report-1884 - title: Share Urgent Compliance Report (legal) - description: Standard workflow to share urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and share the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-share-secure-compliance-report-1885 - title: Share Secure Compliance Report (legal) - description: Standard workflow to share secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to share the compliance report. - - Archive results in a secure Drive folder. -- name: legal-share-weekly-policy-1886 - title: Share Weekly Policy (legal) - description: Standard workflow to share weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute share procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-share-monthly-policy-1887 - title: Share Monthly Policy (legal) - description: Standard workflow to share monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and share the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-share-urgent-policy-1888 - title: Share Urgent Policy (legal) - description: Standard workflow to share urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to share the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-share-secure-policy-1889 - title: Share Secure Policy (legal) - description: Standard workflow to share secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute share procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-share-weekly-litigation-hold-1890 - title: Share Weekly Litigation Hold (legal) - description: Standard workflow to share weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and share the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-share-monthly-litigation-hold-1891 - title: Share Monthly Litigation Hold (legal) - description: Standard workflow to share monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to share the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-share-urgent-litigation-hold-1892 - title: Share Urgent Litigation Hold (legal) - description: Standard workflow to share urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute share procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-share-secure-litigation-hold-1893 - title: Share Secure Litigation Hold (legal) - description: Standard workflow to share secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and share the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-share-weekly-terms-of-service-1894 - title: Share Weekly Terms Of Service (legal) - description: Standard workflow to share weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to share the terms of service. - - Notify stakeholders via email. -- name: legal-share-monthly-terms-of-service-1895 - title: Share Monthly Terms Of Service (legal) - description: Standard workflow to share monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute share procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-share-urgent-terms-of-service-1896 - title: Share Urgent Terms Of Service (legal) - description: Standard workflow to share urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and share the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-share-secure-terms-of-service-1897 - title: Share Secure Terms Of Service (legal) - description: Standard workflow to share secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to share the terms of service. - - Archive results in a secure Drive folder. -- name: legal-publish-weekly-nda-1898 - title: Publish Weekly Nda (legal) - description: Standard workflow to publish weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute publish procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-publish-monthly-nda-1899 - title: Publish Monthly Nda (legal) - description: Standard workflow to publish monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and publish the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-publish-urgent-nda-1900 - title: Publish Urgent Nda (legal) - description: Standard workflow to publish urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to publish the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-publish-secure-nda-1901 - title: Publish Secure Nda (legal) - description: Standard workflow to publish secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute publish procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-publish-weekly-contract-1902 - title: Publish Weekly Contract (legal) - description: Standard workflow to publish weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and publish the weekly contract. - - Notify stakeholders via email. -- name: legal-publish-monthly-contract-1903 - title: Publish Monthly Contract (legal) - description: Standard workflow to publish monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to publish the contract. - - Send a status update to the legal team chat space. -- name: legal-publish-urgent-contract-1904 - title: Publish Urgent Contract (legal) - description: Standard workflow to publish urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute publish procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-publish-secure-contract-1905 - title: Publish Secure Contract (legal) - description: Standard workflow to publish secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and publish the secure contract. - - Archive results in a secure Drive folder. -- name: legal-publish-weekly-compliance-report-1906 - title: Publish Weekly Compliance Report (legal) - description: Standard workflow to publish weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to publish the compliance report. - - Notify stakeholders via email. -- name: legal-publish-monthly-compliance-report-1907 - title: Publish Monthly Compliance Report (legal) - description: Standard workflow to publish monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute publish procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-publish-urgent-compliance-report-1908 - title: Publish Urgent Compliance Report (legal) - description: Standard workflow to publish urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and publish the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-publish-secure-compliance-report-1909 - title: Publish Secure Compliance Report (legal) - description: Standard workflow to publish secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to publish the compliance report. - - Archive results in a secure Drive folder. -- name: legal-publish-weekly-policy-1910 - title: Publish Weekly Policy (legal) - description: Standard workflow to publish weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute publish procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-publish-monthly-policy-1911 - title: Publish Monthly Policy (legal) - description: Standard workflow to publish monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and publish the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-publish-urgent-policy-1912 - title: Publish Urgent Policy (legal) - description: Standard workflow to publish urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to publish the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-publish-secure-policy-1913 - title: Publish Secure Policy (legal) - description: Standard workflow to publish secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute publish procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-publish-weekly-litigation-hold-1914 - title: Publish Weekly Litigation Hold (legal) - description: Standard workflow to publish weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and publish the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-publish-monthly-litigation-hold-1915 - title: Publish Monthly Litigation Hold (legal) - description: Standard workflow to publish monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to publish the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-publish-urgent-litigation-hold-1916 - title: Publish Urgent Litigation Hold (legal) - description: Standard workflow to publish urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute publish procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-publish-secure-litigation-hold-1917 - title: Publish Secure Litigation Hold (legal) - description: Standard workflow to publish secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and publish the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-publish-weekly-terms-of-service-1918 - title: Publish Weekly Terms Of Service (legal) - description: Standard workflow to publish weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to publish the terms of service. - - Notify stakeholders via email. -- name: legal-publish-monthly-terms-of-service-1919 - title: Publish Monthly Terms Of Service (legal) - description: Standard workflow to publish monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute publish procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-publish-urgent-terms-of-service-1920 - title: Publish Urgent Terms Of Service (legal) - description: Standard workflow to publish urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and publish the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-publish-secure-terms-of-service-1921 - title: Publish Secure Terms Of Service (legal) - description: Standard workflow to publish secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to publish the terms of service. - - Archive results in a secure Drive folder. -- name: legal-archive-weekly-nda-1922 - title: Archive Weekly Nda (legal) - description: Standard workflow to archive weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute archive procedure on the designated nda. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly nda targets before running. -- name: legal-archive-monthly-nda-1923 - title: Archive Monthly Nda (legal) - description: Standard workflow to archive monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and archive the monthly nda. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly nda targets before running. -- name: legal-archive-urgent-nda-1924 - title: Archive Urgent Nda (legal) - description: Standard workflow to archive urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to archive the nda. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent nda targets before running. -- name: legal-archive-secure-nda-1925 - title: Archive Secure Nda (legal) - description: Standard workflow to archive secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute archive procedure on the designated nda. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure nda targets before running. -- name: legal-archive-weekly-contract-1926 - title: Archive Weekly Contract (legal) - description: Standard workflow to archive weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and archive the weekly contract. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. -- name: legal-archive-monthly-contract-1927 - title: Archive Monthly Contract (legal) - description: Standard workflow to archive monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to archive the contract. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. -- name: legal-archive-urgent-contract-1928 - title: Archive Urgent Contract (legal) - description: Standard workflow to archive urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute archive procedure on the designated contract. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. -- name: legal-archive-secure-contract-1929 - title: Archive Secure Contract (legal) - description: Standard workflow to archive secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and archive the secure contract. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure contract targets before running. -- name: legal-archive-weekly-compliance-report-1930 - title: Archive Weekly Compliance Report (legal) - description: Standard workflow to archive weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to archive the compliance report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly compliance report targets before running. -- name: legal-archive-monthly-compliance-report-1931 - title: Archive Monthly Compliance Report (legal) - description: Standard workflow to archive monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute archive procedure on the designated compliance report. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly compliance report targets before running. -- name: legal-archive-urgent-compliance-report-1932 - title: Archive Urgent Compliance Report (legal) - description: Standard workflow to archive urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and archive the urgent compliance report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent compliance report targets before running. -- name: legal-archive-secure-compliance-report-1933 - title: Archive Secure Compliance Report (legal) - description: Standard workflow to archive secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to archive the compliance report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure compliance report targets before running. -- name: legal-archive-weekly-policy-1934 - title: Archive Weekly Policy (legal) - description: Standard workflow to archive weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute archive procedure on the designated policy. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly policy targets before running. -- name: legal-archive-monthly-policy-1935 - title: Archive Monthly Policy (legal) - description: Standard workflow to archive monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and archive the monthly policy. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly policy targets before running. -- name: legal-archive-urgent-policy-1936 - title: Archive Urgent Policy (legal) - description: Standard workflow to archive urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to archive the policy. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent policy targets before running. -- name: legal-archive-secure-policy-1937 - title: Archive Secure Policy (legal) - description: Standard workflow to archive secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute archive procedure on the designated policy. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure policy targets before running. -- name: legal-archive-weekly-litigation-hold-1938 - title: Archive Weekly Litigation Hold (legal) - description: Standard workflow to archive weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and archive the weekly litigation hold. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly litigation hold targets before running. -- name: legal-archive-monthly-litigation-hold-1939 - title: Archive Monthly Litigation Hold (legal) - description: Standard workflow to archive monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to archive the litigation hold. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly litigation hold targets before running. -- name: legal-archive-urgent-litigation-hold-1940 - title: Archive Urgent Litigation Hold (legal) - description: Standard workflow to archive urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute archive procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent litigation hold targets before running. -- name: legal-archive-secure-litigation-hold-1941 - title: Archive Secure Litigation Hold (legal) - description: Standard workflow to archive secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and archive the secure litigation hold. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure litigation hold targets before running. -- name: legal-archive-weekly-terms-of-service-1942 - title: Archive Weekly Terms Of Service (legal) - description: Standard workflow to archive weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to archive the terms of service. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly terms of service targets before running. -- name: legal-archive-monthly-terms-of-service-1943 - title: Archive Monthly Terms Of Service (legal) - description: Standard workflow to archive monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute archive procedure on the designated terms of service. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly terms of service targets before running. -- name: legal-archive-urgent-terms-of-service-1944 - title: Archive Urgent Terms Of Service (legal) - description: Standard workflow to archive urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and archive the urgent terms of service. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent terms of service targets before running. -- name: legal-archive-secure-terms-of-service-1945 - title: Archive Secure Terms Of Service (legal) - description: Standard workflow to archive secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to archive the terms of service. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure terms of service targets before running. -- name: legal-export-weekly-nda-1946 - title: Export Weekly Nda (legal) - description: Standard workflow to export weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute export procedure on the designated nda. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly nda targets before running. -- name: legal-export-monthly-nda-1947 - title: Export Monthly Nda (legal) - description: Standard workflow to export monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and export the monthly nda. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly nda targets before running. -- name: legal-export-urgent-nda-1948 - title: Export Urgent Nda (legal) - description: Standard workflow to export urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to export the nda. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent nda targets before running. -- name: legal-export-secure-nda-1949 - title: Export Secure Nda (legal) - description: Standard workflow to export secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute export procedure on the designated nda. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure nda targets before running. -- name: legal-export-weekly-contract-1950 - title: Export Weekly Contract (legal) - description: Standard workflow to export weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and export the weekly contract. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. -- name: legal-export-monthly-contract-1951 - title: Export Monthly Contract (legal) - description: Standard workflow to export monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to export the contract. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. -- name: legal-export-urgent-contract-1952 - title: Export Urgent Contract (legal) - description: Standard workflow to export urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute export procedure on the designated contract. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. -- name: legal-export-secure-contract-1953 - title: Export Secure Contract (legal) - description: Standard workflow to export secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and export the secure contract. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure contract targets before running. -- name: legal-export-weekly-compliance-report-1954 - title: Export Weekly Compliance Report (legal) - description: Standard workflow to export weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to export the compliance report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly compliance report targets before running. -- name: legal-export-monthly-compliance-report-1955 - title: Export Monthly Compliance Report (legal) - description: Standard workflow to export monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute export procedure on the designated compliance report. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly compliance report targets before running. -- name: legal-export-urgent-compliance-report-1956 - title: Export Urgent Compliance Report (legal) - description: Standard workflow to export urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and export the urgent compliance report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent compliance report targets before running. -- name: legal-export-secure-compliance-report-1957 - title: Export Secure Compliance Report (legal) - description: Standard workflow to export secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to export the compliance report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure compliance report targets before running. -- name: legal-export-weekly-policy-1958 - title: Export Weekly Policy (legal) - description: Standard workflow to export weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute export procedure on the designated policy. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly policy targets before running. -- name: legal-export-monthly-policy-1959 - title: Export Monthly Policy (legal) - description: Standard workflow to export monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and export the monthly policy. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly policy targets before running. -- name: legal-export-urgent-policy-1960 - title: Export Urgent Policy (legal) - description: Standard workflow to export urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to export the policy. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent policy targets before running. -- name: legal-export-secure-policy-1961 - title: Export Secure Policy (legal) - description: Standard workflow to export secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute export procedure on the designated policy. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure policy targets before running. -- name: legal-export-weekly-litigation-hold-1962 - title: Export Weekly Litigation Hold (legal) - description: Standard workflow to export weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and export the weekly litigation hold. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly litigation hold targets before running. -- name: legal-export-monthly-litigation-hold-1963 - title: Export Monthly Litigation Hold (legal) - description: Standard workflow to export monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to export the litigation hold. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly litigation hold targets before running. -- name: legal-export-urgent-litigation-hold-1964 - title: Export Urgent Litigation Hold (legal) - description: Standard workflow to export urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute export procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent litigation hold targets before running. -- name: legal-export-secure-litigation-hold-1965 - title: Export Secure Litigation Hold (legal) - description: Standard workflow to export secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and export the secure litigation hold. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure litigation hold targets before running. -- name: legal-export-weekly-terms-of-service-1966 - title: Export Weekly Terms Of Service (legal) - description: Standard workflow to export weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to export the terms of service. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly terms of service targets before running. -- name: legal-export-monthly-terms-of-service-1967 - title: Export Monthly Terms Of Service (legal) - description: Standard workflow to export monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute export procedure on the designated terms of service. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly terms of service targets before running. -- name: legal-export-urgent-terms-of-service-1968 - title: Export Urgent Terms Of Service (legal) - description: Standard workflow to export urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and export the urgent terms of service. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent terms of service targets before running. -- name: legal-export-secure-terms-of-service-1969 - title: Export Secure Terms Of Service (legal) - description: Standard workflow to export secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to export the terms of service. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure terms of service targets before running. -- name: legal-import-weekly-nda-1970 - title: Import Weekly Nda (legal) - description: Standard workflow to import weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute import procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-import-monthly-nda-1971 - title: Import Monthly Nda (legal) - description: Standard workflow to import monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and import the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-import-urgent-nda-1972 - title: Import Urgent Nda (legal) - description: Standard workflow to import urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to import the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-import-secure-nda-1973 - title: Import Secure Nda (legal) - description: Standard workflow to import secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute import procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-import-weekly-contract-1974 - title: Import Weekly Contract (legal) - description: Standard workflow to import weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and import the weekly contract. - - Notify stakeholders via email. -- name: legal-import-monthly-contract-1975 - title: Import Monthly Contract (legal) - description: Standard workflow to import monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to import the contract. - - Send a status update to the legal team chat space. -- name: legal-import-urgent-contract-1976 - title: Import Urgent Contract (legal) - description: Standard workflow to import urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute import procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-import-secure-contract-1977 - title: Import Secure Contract (legal) - description: Standard workflow to import secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and import the secure contract. - - Archive results in a secure Drive folder. -- name: legal-import-weekly-compliance-report-1978 - title: Import Weekly Compliance Report (legal) - description: Standard workflow to import weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to import the compliance report. - - Notify stakeholders via email. -- name: legal-import-monthly-compliance-report-1979 - title: Import Monthly Compliance Report (legal) - description: Standard workflow to import monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute import procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-import-urgent-compliance-report-1980 - title: Import Urgent Compliance Report (legal) - description: Standard workflow to import urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and import the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-import-secure-compliance-report-1981 - title: Import Secure Compliance Report (legal) - description: Standard workflow to import secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to import the compliance report. - - Archive results in a secure Drive folder. -- name: legal-import-weekly-policy-1982 - title: Import Weekly Policy (legal) - description: Standard workflow to import weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute import procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-import-monthly-policy-1983 - title: Import Monthly Policy (legal) - description: Standard workflow to import monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and import the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-import-urgent-policy-1984 - title: Import Urgent Policy (legal) - description: Standard workflow to import urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to import the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-import-secure-policy-1985 - title: Import Secure Policy (legal) - description: Standard workflow to import secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute import procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-import-weekly-litigation-hold-1986 - title: Import Weekly Litigation Hold (legal) - description: Standard workflow to import weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and import the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-import-monthly-litigation-hold-1987 - title: Import Monthly Litigation Hold (legal) - description: Standard workflow to import monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to import the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-import-urgent-litigation-hold-1988 - title: Import Urgent Litigation Hold (legal) - description: Standard workflow to import urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute import procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-import-secure-litigation-hold-1989 - title: Import Secure Litigation Hold (legal) - description: Standard workflow to import secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and import the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-import-weekly-terms-of-service-1990 - title: Import Weekly Terms Of Service (legal) - description: Standard workflow to import weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to import the terms of service. - - Notify stakeholders via email. -- name: legal-import-monthly-terms-of-service-1991 - title: Import Monthly Terms Of Service (legal) - description: Standard workflow to import monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute import procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-import-urgent-terms-of-service-1992 - title: Import Urgent Terms Of Service (legal) - description: Standard workflow to import urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and import the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-import-secure-terms-of-service-1993 - title: Import Secure Terms Of Service (legal) - description: Standard workflow to import secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to import the terms of service. - - Archive results in a secure Drive folder. -- name: legal-sync-weekly-nda-1994 - title: Sync Weekly Nda (legal) - description: Standard workflow to sync weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute sync procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-sync-monthly-nda-1995 - title: Sync Monthly Nda (legal) - description: Standard workflow to sync monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and sync the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-sync-urgent-nda-1996 - title: Sync Urgent Nda (legal) - description: Standard workflow to sync urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to sync the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-sync-secure-nda-1997 - title: Sync Secure Nda (legal) - description: Standard workflow to sync secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute sync procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-sync-weekly-contract-1998 - title: Sync Weekly Contract (legal) - description: Standard workflow to sync weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and sync the weekly contract. - - Notify stakeholders via email. -- name: legal-sync-monthly-contract-1999 - title: Sync Monthly Contract (legal) - description: Standard workflow to sync monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to sync the contract. - - Send a status update to the legal team chat space. -- name: legal-sync-urgent-contract-2000 - title: Sync Urgent Contract (legal) - description: Standard workflow to sync urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute sync procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-sync-secure-contract-2001 - title: Sync Secure Contract (legal) - description: Standard workflow to sync secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and sync the secure contract. - - Archive results in a secure Drive folder. -- name: legal-sync-weekly-compliance-report-2002 - title: Sync Weekly Compliance Report (legal) - description: Standard workflow to sync weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to sync the compliance report. - - Notify stakeholders via email. -- name: legal-sync-monthly-compliance-report-2003 - title: Sync Monthly Compliance Report (legal) - description: Standard workflow to sync monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute sync procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-sync-urgent-compliance-report-2004 - title: Sync Urgent Compliance Report (legal) - description: Standard workflow to sync urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and sync the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-sync-secure-compliance-report-2005 - title: Sync Secure Compliance Report (legal) - description: Standard workflow to sync secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to sync the compliance report. - - Archive results in a secure Drive folder. -- name: legal-sync-weekly-policy-2006 - title: Sync Weekly Policy (legal) - description: Standard workflow to sync weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute sync procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-sync-monthly-policy-2007 - title: Sync Monthly Policy (legal) - description: Standard workflow to sync monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and sync the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-sync-urgent-policy-2008 - title: Sync Urgent Policy (legal) - description: Standard workflow to sync urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to sync the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-sync-secure-policy-2009 - title: Sync Secure Policy (legal) - description: Standard workflow to sync secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute sync procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-sync-weekly-litigation-hold-2010 - title: Sync Weekly Litigation Hold (legal) - description: Standard workflow to sync weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and sync the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-sync-monthly-litigation-hold-2011 - title: Sync Monthly Litigation Hold (legal) - description: Standard workflow to sync monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to sync the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-sync-urgent-litigation-hold-2012 - title: Sync Urgent Litigation Hold (legal) - description: Standard workflow to sync urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute sync procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-sync-secure-litigation-hold-2013 - title: Sync Secure Litigation Hold (legal) - description: Standard workflow to sync secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and sync the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-sync-weekly-terms-of-service-2014 - title: Sync Weekly Terms Of Service (legal) - description: Standard workflow to sync weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to sync the terms of service. - - Notify stakeholders via email. -- name: legal-sync-monthly-terms-of-service-2015 - title: Sync Monthly Terms Of Service (legal) - description: Standard workflow to sync monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute sync procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-sync-urgent-terms-of-service-2016 - title: Sync Urgent Terms Of Service (legal) - description: Standard workflow to sync urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and sync the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-sync-secure-terms-of-service-2017 - title: Sync Secure Terms Of Service (legal) - description: Standard workflow to sync secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to sync the terms of service. - - Archive results in a secure Drive folder. -- name: legal-migrate-weekly-nda-2018 - title: Migrate Weekly Nda (legal) - description: Standard workflow to migrate weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute migrate procedure on the designated nda. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly nda targets before running. -- name: legal-migrate-monthly-nda-2019 - title: Migrate Monthly Nda (legal) - description: Standard workflow to migrate monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and migrate the monthly nda. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly nda targets before running. -- name: legal-migrate-urgent-nda-2020 - title: Migrate Urgent Nda (legal) - description: Standard workflow to migrate urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to migrate the nda. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent nda targets before running. -- name: legal-migrate-secure-nda-2021 - title: Migrate Secure Nda (legal) - description: Standard workflow to migrate secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute migrate procedure on the designated nda. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure nda targets before running. -- name: legal-migrate-weekly-contract-2022 - title: Migrate Weekly Contract (legal) - description: Standard workflow to migrate weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and migrate the weekly contract. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly contract targets before running. -- name: legal-migrate-monthly-contract-2023 - title: Migrate Monthly Contract (legal) - description: Standard workflow to migrate monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to migrate the contract. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly contract targets before running. -- name: legal-migrate-urgent-contract-2024 - title: Migrate Urgent Contract (legal) - description: Standard workflow to migrate urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute migrate procedure on the designated contract. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent contract targets before running. -- name: legal-migrate-secure-contract-2025 - title: Migrate Secure Contract (legal) - description: Standard workflow to migrate secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and migrate the secure contract. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure contract targets before running. -- name: legal-migrate-weekly-compliance-report-2026 - title: Migrate Weekly Compliance Report (legal) - description: Standard workflow to migrate weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to migrate the compliance report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly compliance report targets before running. -- name: legal-migrate-monthly-compliance-report-2027 - title: Migrate Monthly Compliance Report (legal) - description: Standard workflow to migrate monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute migrate procedure on the designated compliance report. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly compliance report targets before running. -- name: legal-migrate-urgent-compliance-report-2028 - title: Migrate Urgent Compliance Report (legal) - description: Standard workflow to migrate urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and migrate the urgent compliance report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent compliance report targets before running. -- name: legal-migrate-secure-compliance-report-2029 - title: Migrate Secure Compliance Report (legal) - description: Standard workflow to migrate secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to migrate the compliance report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure compliance report targets before running. -- name: legal-migrate-weekly-policy-2030 - title: Migrate Weekly Policy (legal) - description: Standard workflow to migrate weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute migrate procedure on the designated policy. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly policy targets before running. -- name: legal-migrate-monthly-policy-2031 - title: Migrate Monthly Policy (legal) - description: Standard workflow to migrate monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and migrate the monthly policy. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly policy targets before running. -- name: legal-migrate-urgent-policy-2032 - title: Migrate Urgent Policy (legal) - description: Standard workflow to migrate urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to migrate the policy. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent policy targets before running. -- name: legal-migrate-secure-policy-2033 - title: Migrate Secure Policy (legal) - description: Standard workflow to migrate secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute migrate procedure on the designated policy. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure policy targets before running. -- name: legal-migrate-weekly-litigation-hold-2034 - title: Migrate Weekly Litigation Hold (legal) - description: Standard workflow to migrate weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and migrate the weekly litigation hold. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly litigation hold targets before running. -- name: legal-migrate-monthly-litigation-hold-2035 - title: Migrate Monthly Litigation Hold (legal) - description: Standard workflow to migrate monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to migrate the litigation hold. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly litigation hold targets before running. -- name: legal-migrate-urgent-litigation-hold-2036 - title: Migrate Urgent Litigation Hold (legal) - description: Standard workflow to migrate urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute migrate procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent litigation hold targets before running. -- name: legal-migrate-secure-litigation-hold-2037 - title: Migrate Secure Litigation Hold (legal) - description: Standard workflow to migrate secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and migrate the secure litigation hold. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure litigation hold targets before running. -- name: legal-migrate-weekly-terms-of-service-2038 - title: Migrate Weekly Terms Of Service (legal) - description: Standard workflow to migrate weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to migrate the terms of service. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly terms of service targets before running. -- name: legal-migrate-monthly-terms-of-service-2039 - title: Migrate Monthly Terms Of Service (legal) - description: Standard workflow to migrate monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute migrate procedure on the designated terms of service. - - Send a status update to the legal team chat space. - caution: Action involves bulk data manipulation. Confirm monthly terms of service targets before running. -- name: legal-migrate-urgent-terms-of-service-2040 - title: Migrate Urgent Terms Of Service (legal) - description: Standard workflow to migrate urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and migrate the urgent terms of service. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent terms of service targets before running. -- name: legal-migrate-secure-terms-of-service-2041 - title: Migrate Secure Terms Of Service (legal) - description: Standard workflow to migrate secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to migrate the terms of service. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure terms of service targets before running. -- name: legal-backup-weekly-nda-2042 - title: Backup Weekly Nda (legal) - description: Standard workflow to backup weekly nda within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly nda requests. - - Execute backup procedure on the designated nda. - - Notify stakeholders via email. -- name: legal-backup-monthly-nda-2043 - title: Backup Monthly Nda (legal) - description: Standard workflow to backup monthly nda within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly nda records. - - Review and backup the monthly nda. - - Send a status update to the legal team chat space. -- name: legal-backup-urgent-nda-2044 - title: Backup Urgent Nda (legal) - description: Standard workflow to backup urgent nda within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent nda data. - - Apply legal policies to backup the nda. - - Log completion in the master tracking spreadsheet. -- name: legal-backup-secure-nda-2045 - title: Backup Secure Nda (legal) - description: Standard workflow to backup secure nda within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure nda requests. - - Execute backup procedure on the designated nda. - - Archive results in a secure Drive folder. -- name: legal-backup-weekly-contract-2046 - title: Backup Weekly Contract (legal) - description: Standard workflow to backup weekly contract within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly contract records. - - Review and backup the weekly contract. - - Notify stakeholders via email. -- name: legal-backup-monthly-contract-2047 - title: Backup Monthly Contract (legal) - description: Standard workflow to backup monthly contract within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly contract data. - - Apply legal policies to backup the contract. - - Send a status update to the legal team chat space. -- name: legal-backup-urgent-contract-2048 - title: Backup Urgent Contract (legal) - description: Standard workflow to backup urgent contract within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent contract requests. - - Execute backup procedure on the designated contract. - - Log completion in the master tracking spreadsheet. -- name: legal-backup-secure-contract-2049 - title: Backup Secure Contract (legal) - description: Standard workflow to backup secure contract within the legal department. - category: legal - services: - - drive - steps: - - Search for secure contract records. - - Review and backup the secure contract. - - Archive results in a secure Drive folder. -- name: legal-backup-weekly-compliance-report-2050 - title: Backup Weekly Compliance Report (legal) - description: Standard workflow to backup weekly compliance report within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly compliance report data. - - Apply legal policies to backup the compliance report. - - Notify stakeholders via email. -- name: legal-backup-monthly-compliance-report-2051 - title: Backup Monthly Compliance Report (legal) - description: Standard workflow to backup monthly compliance report within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly compliance report requests. - - Execute backup procedure on the designated compliance report. - - Send a status update to the legal team chat space. -- name: legal-backup-urgent-compliance-report-2052 - title: Backup Urgent Compliance Report (legal) - description: Standard workflow to backup urgent compliance report within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent compliance report records. - - Review and backup the urgent compliance report. - - Log completion in the master tracking spreadsheet. -- name: legal-backup-secure-compliance-report-2053 - title: Backup Secure Compliance Report (legal) - description: Standard workflow to backup secure compliance report within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure compliance report data. - - Apply legal policies to backup the compliance report. - - Archive results in a secure Drive folder. -- name: legal-backup-weekly-policy-2054 - title: Backup Weekly Policy (legal) - description: Standard workflow to backup weekly policy within the legal department. - category: legal - services: - - gmail - - vault - - docs - steps: - - Check system for pending weekly policy requests. - - Execute backup procedure on the designated policy. - - Notify stakeholders via email. -- name: legal-backup-monthly-policy-2055 - title: Backup Monthly Policy (legal) - description: Standard workflow to backup monthly policy within the legal department. - category: legal - services: - - vault - steps: - - Search for monthly policy records. - - Review and backup the monthly policy. - - Send a status update to the legal team chat space. -- name: legal-backup-urgent-policy-2056 - title: Backup Urgent Policy (legal) - description: Standard workflow to backup urgent policy within the legal department. - category: legal - services: - - docs - - drive - steps: - - Fetch latest urgent policy data. - - Apply legal policies to backup the policy. - - Log completion in the master tracking spreadsheet. -- name: legal-backup-secure-policy-2057 - title: Backup Secure Policy (legal) - description: Standard workflow to backup secure policy within the legal department. - category: legal - services: - - drive - - gmail - - vault - steps: - - Check system for pending secure policy requests. - - Execute backup procedure on the designated policy. - - Archive results in a secure Drive folder. -- name: legal-backup-weekly-litigation-hold-2058 - title: Backup Weekly Litigation Hold (legal) - description: Standard workflow to backup weekly litigation hold within the legal department. - category: legal - services: - - gmail - steps: - - Search for weekly litigation hold records. - - Review and backup the weekly litigation hold. - - Notify stakeholders via email. -- name: legal-backup-monthly-litigation-hold-2059 - title: Backup Monthly Litigation Hold (legal) - description: Standard workflow to backup monthly litigation hold within the legal department. - category: legal - services: - - vault - - docs - steps: - - Fetch latest monthly litigation hold data. - - Apply legal policies to backup the litigation hold. - - Send a status update to the legal team chat space. -- name: legal-backup-urgent-litigation-hold-2060 - title: Backup Urgent Litigation Hold (legal) - description: Standard workflow to backup urgent litigation hold within the legal department. - category: legal - services: - - docs - - drive - - gmail - steps: - - Check system for pending urgent litigation hold requests. - - Execute backup procedure on the designated litigation hold. - - Log completion in the master tracking spreadsheet. -- name: legal-backup-secure-litigation-hold-2061 - title: Backup Secure Litigation Hold (legal) - description: Standard workflow to backup secure litigation hold within the legal department. - category: legal - services: - - drive - steps: - - Search for secure litigation hold records. - - Review and backup the secure litigation hold. - - Archive results in a secure Drive folder. -- name: legal-backup-weekly-terms-of-service-2062 - title: Backup Weekly Terms Of Service (legal) - description: Standard workflow to backup weekly terms of service within the legal department. - category: legal - services: - - gmail - - vault - steps: - - Fetch latest weekly terms of service data. - - Apply legal policies to backup the terms of service. - - Notify stakeholders via email. -- name: legal-backup-monthly-terms-of-service-2063 - title: Backup Monthly Terms Of Service (legal) - description: Standard workflow to backup monthly terms of service within the legal department. - category: legal - services: - - vault - - docs - - drive - steps: - - Check system for pending monthly terms of service requests. - - Execute backup procedure on the designated terms of service. - - Send a status update to the legal team chat space. -- name: legal-backup-urgent-terms-of-service-2064 - title: Backup Urgent Terms Of Service (legal) - description: Standard workflow to backup urgent terms of service within the legal department. - category: legal - services: - - docs - steps: - - Search for urgent terms of service records. - - Review and backup the urgent terms of service. - - Log completion in the master tracking spreadsheet. -- name: legal-backup-secure-terms-of-service-2065 - title: Backup Secure Terms Of Service (legal) - description: Standard workflow to backup secure terms of service within the legal department. - category: legal - services: - - drive - - gmail - steps: - - Fetch latest secure terms of service data. - - Apply legal policies to backup the terms of service. - - Archive results in a secure Drive folder. -- name: support-audit-weekly-ticket-2066 - title: Audit Weekly Ticket (support) - description: Standard workflow to audit weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute audit procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-audit-monthly-ticket-2067 - title: Audit Monthly Ticket (support) - description: Standard workflow to audit monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and audit the monthly ticket. - - Send a status update to the support team chat space. -- name: support-audit-urgent-ticket-2068 - title: Audit Urgent Ticket (support) - description: Standard workflow to audit urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to audit the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-audit-secure-ticket-2069 - title: Audit Secure Ticket (support) - description: Standard workflow to audit secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute audit procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-audit-weekly-customer-record-2070 - title: Audit Weekly Customer Record (support) - description: Standard workflow to audit weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and audit the weekly customer record. - - Notify stakeholders via email. -- name: support-audit-monthly-customer-record-2071 - title: Audit Monthly Customer Record (support) - description: Standard workflow to audit monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to audit the customer record. - - Send a status update to the support team chat space. -- name: support-audit-urgent-customer-record-2072 - title: Audit Urgent Customer Record (support) - description: Standard workflow to audit urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute audit procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-audit-secure-customer-record-2073 - title: Audit Secure Customer Record (support) - description: Standard workflow to audit secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and audit the secure customer record. - - Archive results in a secure Drive folder. -- name: support-audit-weekly-kb-article-2074 - title: Audit Weekly Kb Article (support) - description: Standard workflow to audit weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to audit the kb article. - - Notify stakeholders via email. -- name: support-audit-monthly-kb-article-2075 - title: Audit Monthly Kb Article (support) - description: Standard workflow to audit monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute audit procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-audit-urgent-kb-article-2076 - title: Audit Urgent Kb Article (support) - description: Standard workflow to audit urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and audit the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-audit-secure-kb-article-2077 - title: Audit Secure Kb Article (support) - description: Standard workflow to audit secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to audit the kb article. - - Archive results in a secure Drive folder. -- name: support-audit-weekly-escalation-2078 - title: Audit Weekly Escalation (support) - description: Standard workflow to audit weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute audit procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-audit-monthly-escalation-2079 - title: Audit Monthly Escalation (support) - description: Standard workflow to audit monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and audit the monthly escalation. - - Send a status update to the support team chat space. -- name: support-audit-urgent-escalation-2080 - title: Audit Urgent Escalation (support) - description: Standard workflow to audit urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to audit the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-audit-secure-escalation-2081 - title: Audit Secure Escalation (support) - description: Standard workflow to audit secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute audit procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-audit-weekly-refund-request-2082 - title: Audit Weekly Refund Request (support) - description: Standard workflow to audit weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and audit the weekly refund request. - - Notify stakeholders via email. -- name: support-audit-monthly-refund-request-2083 - title: Audit Monthly Refund Request (support) - description: Standard workflow to audit monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to audit the refund request. - - Send a status update to the support team chat space. -- name: support-audit-urgent-refund-request-2084 - title: Audit Urgent Refund Request (support) - description: Standard workflow to audit urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute audit procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-audit-secure-refund-request-2085 - title: Audit Secure Refund Request (support) - description: Standard workflow to audit secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and audit the secure refund request. - - Archive results in a secure Drive folder. -- name: support-audit-weekly-bug-report-2086 - title: Audit Weekly Bug Report (support) - description: Standard workflow to audit weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to audit the bug report. - - Notify stakeholders via email. -- name: support-audit-monthly-bug-report-2087 - title: Audit Monthly Bug Report (support) - description: Standard workflow to audit monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute audit procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-audit-urgent-bug-report-2088 - title: Audit Urgent Bug Report (support) - description: Standard workflow to audit urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and audit the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-audit-secure-bug-report-2089 - title: Audit Secure Bug Report (support) - description: Standard workflow to audit secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to audit the bug report. - - Archive results in a secure Drive folder. -- name: support-onboard-weekly-ticket-2090 - title: Onboard Weekly Ticket (support) - description: Standard workflow to onboard weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute onboard procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-onboard-monthly-ticket-2091 - title: Onboard Monthly Ticket (support) - description: Standard workflow to onboard monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and onboard the monthly ticket. - - Send a status update to the support team chat space. -- name: support-onboard-urgent-ticket-2092 - title: Onboard Urgent Ticket (support) - description: Standard workflow to onboard urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to onboard the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-onboard-secure-ticket-2093 - title: Onboard Secure Ticket (support) - description: Standard workflow to onboard secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute onboard procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-onboard-weekly-customer-record-2094 - title: Onboard Weekly Customer Record (support) - description: Standard workflow to onboard weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and onboard the weekly customer record. - - Notify stakeholders via email. -- name: support-onboard-monthly-customer-record-2095 - title: Onboard Monthly Customer Record (support) - description: Standard workflow to onboard monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to onboard the customer record. - - Send a status update to the support team chat space. -- name: support-onboard-urgent-customer-record-2096 - title: Onboard Urgent Customer Record (support) - description: Standard workflow to onboard urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute onboard procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-onboard-secure-customer-record-2097 - title: Onboard Secure Customer Record (support) - description: Standard workflow to onboard secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and onboard the secure customer record. - - Archive results in a secure Drive folder. -- name: support-onboard-weekly-kb-article-2098 - title: Onboard Weekly Kb Article (support) - description: Standard workflow to onboard weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to onboard the kb article. - - Notify stakeholders via email. -- name: support-onboard-monthly-kb-article-2099 - title: Onboard Monthly Kb Article (support) - description: Standard workflow to onboard monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute onboard procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-onboard-urgent-kb-article-2100 - title: Onboard Urgent Kb Article (support) - description: Standard workflow to onboard urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and onboard the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-onboard-secure-kb-article-2101 - title: Onboard Secure Kb Article (support) - description: Standard workflow to onboard secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to onboard the kb article. - - Archive results in a secure Drive folder. -- name: support-onboard-weekly-escalation-2102 - title: Onboard Weekly Escalation (support) - description: Standard workflow to onboard weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute onboard procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-onboard-monthly-escalation-2103 - title: Onboard Monthly Escalation (support) - description: Standard workflow to onboard monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and onboard the monthly escalation. - - Send a status update to the support team chat space. -- name: support-onboard-urgent-escalation-2104 - title: Onboard Urgent Escalation (support) - description: Standard workflow to onboard urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to onboard the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-onboard-secure-escalation-2105 - title: Onboard Secure Escalation (support) - description: Standard workflow to onboard secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute onboard procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-onboard-weekly-refund-request-2106 - title: Onboard Weekly Refund Request (support) - description: Standard workflow to onboard weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and onboard the weekly refund request. - - Notify stakeholders via email. -- name: support-onboard-monthly-refund-request-2107 - title: Onboard Monthly Refund Request (support) - description: Standard workflow to onboard monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to onboard the refund request. - - Send a status update to the support team chat space. -- name: support-onboard-urgent-refund-request-2108 - title: Onboard Urgent Refund Request (support) - description: Standard workflow to onboard urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute onboard procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-onboard-secure-refund-request-2109 - title: Onboard Secure Refund Request (support) - description: Standard workflow to onboard secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and onboard the secure refund request. - - Archive results in a secure Drive folder. -- name: support-onboard-weekly-bug-report-2110 - title: Onboard Weekly Bug Report (support) - description: Standard workflow to onboard weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to onboard the bug report. - - Notify stakeholders via email. -- name: support-onboard-monthly-bug-report-2111 - title: Onboard Monthly Bug Report (support) - description: Standard workflow to onboard monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute onboard procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-onboard-urgent-bug-report-2112 - title: Onboard Urgent Bug Report (support) - description: Standard workflow to onboard urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and onboard the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-onboard-secure-bug-report-2113 - title: Onboard Secure Bug Report (support) - description: Standard workflow to onboard secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to onboard the bug report. - - Archive results in a secure Drive folder. -- name: support-review-weekly-ticket-2114 - title: Review Weekly Ticket (support) - description: Standard workflow to review weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute review procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-review-monthly-ticket-2115 - title: Review Monthly Ticket (support) - description: Standard workflow to review monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and review the monthly ticket. - - Send a status update to the support team chat space. -- name: support-review-urgent-ticket-2116 - title: Review Urgent Ticket (support) - description: Standard workflow to review urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to review the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-review-secure-ticket-2117 - title: Review Secure Ticket (support) - description: Standard workflow to review secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute review procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-review-weekly-customer-record-2118 - title: Review Weekly Customer Record (support) - description: Standard workflow to review weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and review the weekly customer record. - - Notify stakeholders via email. -- name: support-review-monthly-customer-record-2119 - title: Review Monthly Customer Record (support) - description: Standard workflow to review monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to review the customer record. - - Send a status update to the support team chat space. -- name: support-review-urgent-customer-record-2120 - title: Review Urgent Customer Record (support) - description: Standard workflow to review urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute review procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-review-secure-customer-record-2121 - title: Review Secure Customer Record (support) - description: Standard workflow to review secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and review the secure customer record. - - Archive results in a secure Drive folder. -- name: support-review-weekly-kb-article-2122 - title: Review Weekly Kb Article (support) - description: Standard workflow to review weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to review the kb article. - - Notify stakeholders via email. -- name: support-review-monthly-kb-article-2123 - title: Review Monthly Kb Article (support) - description: Standard workflow to review monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute review procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-review-urgent-kb-article-2124 - title: Review Urgent Kb Article (support) - description: Standard workflow to review urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and review the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-review-secure-kb-article-2125 - title: Review Secure Kb Article (support) - description: Standard workflow to review secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to review the kb article. - - Archive results in a secure Drive folder. -- name: support-review-weekly-escalation-2126 - title: Review Weekly Escalation (support) - description: Standard workflow to review weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute review procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-review-monthly-escalation-2127 - title: Review Monthly Escalation (support) - description: Standard workflow to review monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and review the monthly escalation. - - Send a status update to the support team chat space. -- name: support-review-urgent-escalation-2128 - title: Review Urgent Escalation (support) - description: Standard workflow to review urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to review the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-review-secure-escalation-2129 - title: Review Secure Escalation (support) - description: Standard workflow to review secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute review procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-review-weekly-refund-request-2130 - title: Review Weekly Refund Request (support) - description: Standard workflow to review weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and review the weekly refund request. - - Notify stakeholders via email. -- name: support-review-monthly-refund-request-2131 - title: Review Monthly Refund Request (support) - description: Standard workflow to review monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to review the refund request. - - Send a status update to the support team chat space. -- name: support-review-urgent-refund-request-2132 - title: Review Urgent Refund Request (support) - description: Standard workflow to review urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute review procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-review-secure-refund-request-2133 - title: Review Secure Refund Request (support) - description: Standard workflow to review secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and review the secure refund request. - - Archive results in a secure Drive folder. -- name: support-review-weekly-bug-report-2134 - title: Review Weekly Bug Report (support) - description: Standard workflow to review weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to review the bug report. - - Notify stakeholders via email. -- name: support-review-monthly-bug-report-2135 - title: Review Monthly Bug Report (support) - description: Standard workflow to review monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute review procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-review-urgent-bug-report-2136 - title: Review Urgent Bug Report (support) - description: Standard workflow to review urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and review the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-review-secure-bug-report-2137 - title: Review Secure Bug Report (support) - description: Standard workflow to review secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to review the bug report. - - Archive results in a secure Drive folder. -- name: support-approve-weekly-ticket-2138 - title: Approve Weekly Ticket (support) - description: Standard workflow to approve weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute approve procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-approve-monthly-ticket-2139 - title: Approve Monthly Ticket (support) - description: Standard workflow to approve monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and approve the monthly ticket. - - Send a status update to the support team chat space. -- name: support-approve-urgent-ticket-2140 - title: Approve Urgent Ticket (support) - description: Standard workflow to approve urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to approve the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-approve-secure-ticket-2141 - title: Approve Secure Ticket (support) - description: Standard workflow to approve secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute approve procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-approve-weekly-customer-record-2142 - title: Approve Weekly Customer Record (support) - description: Standard workflow to approve weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and approve the weekly customer record. - - Notify stakeholders via email. -- name: support-approve-monthly-customer-record-2143 - title: Approve Monthly Customer Record (support) - description: Standard workflow to approve monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to approve the customer record. - - Send a status update to the support team chat space. -- name: support-approve-urgent-customer-record-2144 - title: Approve Urgent Customer Record (support) - description: Standard workflow to approve urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute approve procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-approve-secure-customer-record-2145 - title: Approve Secure Customer Record (support) - description: Standard workflow to approve secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and approve the secure customer record. - - Archive results in a secure Drive folder. -- name: support-approve-weekly-kb-article-2146 - title: Approve Weekly Kb Article (support) - description: Standard workflow to approve weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to approve the kb article. - - Notify stakeholders via email. -- name: support-approve-monthly-kb-article-2147 - title: Approve Monthly Kb Article (support) - description: Standard workflow to approve monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute approve procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-approve-urgent-kb-article-2148 - title: Approve Urgent Kb Article (support) - description: Standard workflow to approve urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and approve the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-approve-secure-kb-article-2149 - title: Approve Secure Kb Article (support) - description: Standard workflow to approve secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to approve the kb article. - - Archive results in a secure Drive folder. -- name: support-approve-weekly-escalation-2150 - title: Approve Weekly Escalation (support) - description: Standard workflow to approve weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute approve procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-approve-monthly-escalation-2151 - title: Approve Monthly Escalation (support) - description: Standard workflow to approve monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and approve the monthly escalation. - - Send a status update to the support team chat space. -- name: support-approve-urgent-escalation-2152 - title: Approve Urgent Escalation (support) - description: Standard workflow to approve urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to approve the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-approve-secure-escalation-2153 - title: Approve Secure Escalation (support) - description: Standard workflow to approve secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute approve procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-approve-weekly-refund-request-2154 - title: Approve Weekly Refund Request (support) - description: Standard workflow to approve weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and approve the weekly refund request. - - Notify stakeholders via email. -- name: support-approve-monthly-refund-request-2155 - title: Approve Monthly Refund Request (support) - description: Standard workflow to approve monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to approve the refund request. - - Send a status update to the support team chat space. -- name: support-approve-urgent-refund-request-2156 - title: Approve Urgent Refund Request (support) - description: Standard workflow to approve urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute approve procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-approve-secure-refund-request-2157 - title: Approve Secure Refund Request (support) - description: Standard workflow to approve secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and approve the secure refund request. - - Archive results in a secure Drive folder. -- name: support-approve-weekly-bug-report-2158 - title: Approve Weekly Bug Report (support) - description: Standard workflow to approve weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to approve the bug report. - - Notify stakeholders via email. -- name: support-approve-monthly-bug-report-2159 - title: Approve Monthly Bug Report (support) - description: Standard workflow to approve monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute approve procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-approve-urgent-bug-report-2160 - title: Approve Urgent Bug Report (support) - description: Standard workflow to approve urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and approve the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-approve-secure-bug-report-2161 - title: Approve Secure Bug Report (support) - description: Standard workflow to approve secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to approve the bug report. - - Archive results in a secure Drive folder. -- name: support-share-weekly-ticket-2162 - title: Share Weekly Ticket (support) - description: Standard workflow to share weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute share procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-share-monthly-ticket-2163 - title: Share Monthly Ticket (support) - description: Standard workflow to share monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and share the monthly ticket. - - Send a status update to the support team chat space. -- name: support-share-urgent-ticket-2164 - title: Share Urgent Ticket (support) - description: Standard workflow to share urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to share the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-share-secure-ticket-2165 - title: Share Secure Ticket (support) - description: Standard workflow to share secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute share procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-share-weekly-customer-record-2166 - title: Share Weekly Customer Record (support) - description: Standard workflow to share weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and share the weekly customer record. - - Notify stakeholders via email. -- name: support-share-monthly-customer-record-2167 - title: Share Monthly Customer Record (support) - description: Standard workflow to share monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to share the customer record. - - Send a status update to the support team chat space. -- name: support-share-urgent-customer-record-2168 - title: Share Urgent Customer Record (support) - description: Standard workflow to share urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute share procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-share-secure-customer-record-2169 - title: Share Secure Customer Record (support) - description: Standard workflow to share secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and share the secure customer record. - - Archive results in a secure Drive folder. -- name: support-share-weekly-kb-article-2170 - title: Share Weekly Kb Article (support) - description: Standard workflow to share weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to share the kb article. - - Notify stakeholders via email. -- name: support-share-monthly-kb-article-2171 - title: Share Monthly Kb Article (support) - description: Standard workflow to share monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute share procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-share-urgent-kb-article-2172 - title: Share Urgent Kb Article (support) - description: Standard workflow to share urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and share the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-share-secure-kb-article-2173 - title: Share Secure Kb Article (support) - description: Standard workflow to share secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to share the kb article. - - Archive results in a secure Drive folder. -- name: support-share-weekly-escalation-2174 - title: Share Weekly Escalation (support) - description: Standard workflow to share weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute share procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-share-monthly-escalation-2175 - title: Share Monthly Escalation (support) - description: Standard workflow to share monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and share the monthly escalation. - - Send a status update to the support team chat space. -- name: support-share-urgent-escalation-2176 - title: Share Urgent Escalation (support) - description: Standard workflow to share urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to share the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-share-secure-escalation-2177 - title: Share Secure Escalation (support) - description: Standard workflow to share secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute share procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-share-weekly-refund-request-2178 - title: Share Weekly Refund Request (support) - description: Standard workflow to share weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and share the weekly refund request. - - Notify stakeholders via email. -- name: support-share-monthly-refund-request-2179 - title: Share Monthly Refund Request (support) - description: Standard workflow to share monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to share the refund request. - - Send a status update to the support team chat space. -- name: support-share-urgent-refund-request-2180 - title: Share Urgent Refund Request (support) - description: Standard workflow to share urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute share procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-share-secure-refund-request-2181 - title: Share Secure Refund Request (support) - description: Standard workflow to share secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and share the secure refund request. - - Archive results in a secure Drive folder. -- name: support-share-weekly-bug-report-2182 - title: Share Weekly Bug Report (support) - description: Standard workflow to share weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to share the bug report. - - Notify stakeholders via email. -- name: support-share-monthly-bug-report-2183 - title: Share Monthly Bug Report (support) - description: Standard workflow to share monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute share procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-share-urgent-bug-report-2184 - title: Share Urgent Bug Report (support) - description: Standard workflow to share urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and share the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-share-secure-bug-report-2185 - title: Share Secure Bug Report (support) - description: Standard workflow to share secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to share the bug report. - - Archive results in a secure Drive folder. -- name: support-publish-weekly-ticket-2186 - title: Publish Weekly Ticket (support) - description: Standard workflow to publish weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute publish procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-publish-monthly-ticket-2187 - title: Publish Monthly Ticket (support) - description: Standard workflow to publish monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and publish the monthly ticket. - - Send a status update to the support team chat space. -- name: support-publish-urgent-ticket-2188 - title: Publish Urgent Ticket (support) - description: Standard workflow to publish urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to publish the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-publish-secure-ticket-2189 - title: Publish Secure Ticket (support) - description: Standard workflow to publish secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute publish procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-publish-weekly-customer-record-2190 - title: Publish Weekly Customer Record (support) - description: Standard workflow to publish weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and publish the weekly customer record. - - Notify stakeholders via email. -- name: support-publish-monthly-customer-record-2191 - title: Publish Monthly Customer Record (support) - description: Standard workflow to publish monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to publish the customer record. - - Send a status update to the support team chat space. -- name: support-publish-urgent-customer-record-2192 - title: Publish Urgent Customer Record (support) - description: Standard workflow to publish urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute publish procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-publish-secure-customer-record-2193 - title: Publish Secure Customer Record (support) - description: Standard workflow to publish secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and publish the secure customer record. - - Archive results in a secure Drive folder. -- name: support-publish-weekly-kb-article-2194 - title: Publish Weekly Kb Article (support) - description: Standard workflow to publish weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to publish the kb article. - - Notify stakeholders via email. -- name: support-publish-monthly-kb-article-2195 - title: Publish Monthly Kb Article (support) - description: Standard workflow to publish monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute publish procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-publish-urgent-kb-article-2196 - title: Publish Urgent Kb Article (support) - description: Standard workflow to publish urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and publish the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-publish-secure-kb-article-2197 - title: Publish Secure Kb Article (support) - description: Standard workflow to publish secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to publish the kb article. - - Archive results in a secure Drive folder. -- name: support-publish-weekly-escalation-2198 - title: Publish Weekly Escalation (support) - description: Standard workflow to publish weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute publish procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-publish-monthly-escalation-2199 - title: Publish Monthly Escalation (support) - description: Standard workflow to publish monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and publish the monthly escalation. - - Send a status update to the support team chat space. -- name: support-publish-urgent-escalation-2200 - title: Publish Urgent Escalation (support) - description: Standard workflow to publish urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to publish the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-publish-secure-escalation-2201 - title: Publish Secure Escalation (support) - description: Standard workflow to publish secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute publish procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-publish-weekly-refund-request-2202 - title: Publish Weekly Refund Request (support) - description: Standard workflow to publish weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and publish the weekly refund request. - - Notify stakeholders via email. -- name: support-publish-monthly-refund-request-2203 - title: Publish Monthly Refund Request (support) - description: Standard workflow to publish monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to publish the refund request. - - Send a status update to the support team chat space. -- name: support-publish-urgent-refund-request-2204 - title: Publish Urgent Refund Request (support) - description: Standard workflow to publish urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute publish procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-publish-secure-refund-request-2205 - title: Publish Secure Refund Request (support) - description: Standard workflow to publish secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and publish the secure refund request. - - Archive results in a secure Drive folder. -- name: support-publish-weekly-bug-report-2206 - title: Publish Weekly Bug Report (support) - description: Standard workflow to publish weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to publish the bug report. - - Notify stakeholders via email. -- name: support-publish-monthly-bug-report-2207 - title: Publish Monthly Bug Report (support) - description: Standard workflow to publish monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute publish procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-publish-urgent-bug-report-2208 - title: Publish Urgent Bug Report (support) - description: Standard workflow to publish urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and publish the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-publish-secure-bug-report-2209 - title: Publish Secure Bug Report (support) - description: Standard workflow to publish secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to publish the bug report. - - Archive results in a secure Drive folder. -- name: support-archive-weekly-ticket-2210 - title: Archive Weekly Ticket (support) - description: Standard workflow to archive weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute archive procedure on the designated ticket. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly ticket targets before running. -- name: support-archive-monthly-ticket-2211 - title: Archive Monthly Ticket (support) - description: Standard workflow to archive monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and archive the monthly ticket. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly ticket targets before running. -- name: support-archive-urgent-ticket-2212 - title: Archive Urgent Ticket (support) - description: Standard workflow to archive urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to archive the ticket. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent ticket targets before running. -- name: support-archive-secure-ticket-2213 - title: Archive Secure Ticket (support) - description: Standard workflow to archive secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute archive procedure on the designated ticket. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure ticket targets before running. -- name: support-archive-weekly-customer-record-2214 - title: Archive Weekly Customer Record (support) - description: Standard workflow to archive weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and archive the weekly customer record. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly customer record targets before running. -- name: support-archive-monthly-customer-record-2215 - title: Archive Monthly Customer Record (support) - description: Standard workflow to archive monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to archive the customer record. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly customer record targets before running. -- name: support-archive-urgent-customer-record-2216 - title: Archive Urgent Customer Record (support) - description: Standard workflow to archive urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute archive procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent customer record targets before running. -- name: support-archive-secure-customer-record-2217 - title: Archive Secure Customer Record (support) - description: Standard workflow to archive secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and archive the secure customer record. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure customer record targets before running. -- name: support-archive-weekly-kb-article-2218 - title: Archive Weekly Kb Article (support) - description: Standard workflow to archive weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to archive the kb article. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly kb article targets before running. -- name: support-archive-monthly-kb-article-2219 - title: Archive Monthly Kb Article (support) - description: Standard workflow to archive monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute archive procedure on the designated kb article. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly kb article targets before running. -- name: support-archive-urgent-kb-article-2220 - title: Archive Urgent Kb Article (support) - description: Standard workflow to archive urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and archive the urgent kb article. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent kb article targets before running. -- name: support-archive-secure-kb-article-2221 - title: Archive Secure Kb Article (support) - description: Standard workflow to archive secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to archive the kb article. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure kb article targets before running. -- name: support-archive-weekly-escalation-2222 - title: Archive Weekly Escalation (support) - description: Standard workflow to archive weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute archive procedure on the designated escalation. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly escalation targets before running. -- name: support-archive-monthly-escalation-2223 - title: Archive Monthly Escalation (support) - description: Standard workflow to archive monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and archive the monthly escalation. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly escalation targets before running. -- name: support-archive-urgent-escalation-2224 - title: Archive Urgent Escalation (support) - description: Standard workflow to archive urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to archive the escalation. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent escalation targets before running. -- name: support-archive-secure-escalation-2225 - title: Archive Secure Escalation (support) - description: Standard workflow to archive secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute archive procedure on the designated escalation. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure escalation targets before running. -- name: support-archive-weekly-refund-request-2226 - title: Archive Weekly Refund Request (support) - description: Standard workflow to archive weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and archive the weekly refund request. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly refund request targets before running. -- name: support-archive-monthly-refund-request-2227 - title: Archive Monthly Refund Request (support) - description: Standard workflow to archive monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to archive the refund request. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly refund request targets before running. -- name: support-archive-urgent-refund-request-2228 - title: Archive Urgent Refund Request (support) - description: Standard workflow to archive urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute archive procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent refund request targets before running. -- name: support-archive-secure-refund-request-2229 - title: Archive Secure Refund Request (support) - description: Standard workflow to archive secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and archive the secure refund request. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure refund request targets before running. -- name: support-archive-weekly-bug-report-2230 - title: Archive Weekly Bug Report (support) - description: Standard workflow to archive weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to archive the bug report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly bug report targets before running. -- name: support-archive-monthly-bug-report-2231 - title: Archive Monthly Bug Report (support) - description: Standard workflow to archive monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute archive procedure on the designated bug report. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly bug report targets before running. -- name: support-archive-urgent-bug-report-2232 - title: Archive Urgent Bug Report (support) - description: Standard workflow to archive urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and archive the urgent bug report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent bug report targets before running. -- name: support-archive-secure-bug-report-2233 - title: Archive Secure Bug Report (support) - description: Standard workflow to archive secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to archive the bug report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure bug report targets before running. -- name: support-export-weekly-ticket-2234 - title: Export Weekly Ticket (support) - description: Standard workflow to export weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute export procedure on the designated ticket. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly ticket targets before running. -- name: support-export-monthly-ticket-2235 - title: Export Monthly Ticket (support) - description: Standard workflow to export monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and export the monthly ticket. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly ticket targets before running. -- name: support-export-urgent-ticket-2236 - title: Export Urgent Ticket (support) - description: Standard workflow to export urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to export the ticket. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent ticket targets before running. -- name: support-export-secure-ticket-2237 - title: Export Secure Ticket (support) - description: Standard workflow to export secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute export procedure on the designated ticket. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure ticket targets before running. -- name: support-export-weekly-customer-record-2238 - title: Export Weekly Customer Record (support) - description: Standard workflow to export weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and export the weekly customer record. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly customer record targets before running. -- name: support-export-monthly-customer-record-2239 - title: Export Monthly Customer Record (support) - description: Standard workflow to export monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to export the customer record. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly customer record targets before running. -- name: support-export-urgent-customer-record-2240 - title: Export Urgent Customer Record (support) - description: Standard workflow to export urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute export procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent customer record targets before running. -- name: support-export-secure-customer-record-2241 - title: Export Secure Customer Record (support) - description: Standard workflow to export secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and export the secure customer record. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure customer record targets before running. -- name: support-export-weekly-kb-article-2242 - title: Export Weekly Kb Article (support) - description: Standard workflow to export weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to export the kb article. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly kb article targets before running. -- name: support-export-monthly-kb-article-2243 - title: Export Monthly Kb Article (support) - description: Standard workflow to export monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute export procedure on the designated kb article. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly kb article targets before running. -- name: support-export-urgent-kb-article-2244 - title: Export Urgent Kb Article (support) - description: Standard workflow to export urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and export the urgent kb article. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent kb article targets before running. -- name: support-export-secure-kb-article-2245 - title: Export Secure Kb Article (support) - description: Standard workflow to export secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to export the kb article. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure kb article targets before running. -- name: support-export-weekly-escalation-2246 - title: Export Weekly Escalation (support) - description: Standard workflow to export weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute export procedure on the designated escalation. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly escalation targets before running. -- name: support-export-monthly-escalation-2247 - title: Export Monthly Escalation (support) - description: Standard workflow to export monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and export the monthly escalation. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly escalation targets before running. -- name: support-export-urgent-escalation-2248 - title: Export Urgent Escalation (support) - description: Standard workflow to export urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to export the escalation. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent escalation targets before running. -- name: support-export-secure-escalation-2249 - title: Export Secure Escalation (support) - description: Standard workflow to export secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute export procedure on the designated escalation. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure escalation targets before running. -- name: support-export-weekly-refund-request-2250 - title: Export Weekly Refund Request (support) - description: Standard workflow to export weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and export the weekly refund request. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly refund request targets before running. -- name: support-export-monthly-refund-request-2251 - title: Export Monthly Refund Request (support) - description: Standard workflow to export monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to export the refund request. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly refund request targets before running. -- name: support-export-urgent-refund-request-2252 - title: Export Urgent Refund Request (support) - description: Standard workflow to export urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute export procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent refund request targets before running. -- name: support-export-secure-refund-request-2253 - title: Export Secure Refund Request (support) - description: Standard workflow to export secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and export the secure refund request. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure refund request targets before running. -- name: support-export-weekly-bug-report-2254 - title: Export Weekly Bug Report (support) - description: Standard workflow to export weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to export the bug report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly bug report targets before running. -- name: support-export-monthly-bug-report-2255 - title: Export Monthly Bug Report (support) - description: Standard workflow to export monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute export procedure on the designated bug report. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly bug report targets before running. -- name: support-export-urgent-bug-report-2256 - title: Export Urgent Bug Report (support) - description: Standard workflow to export urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and export the urgent bug report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent bug report targets before running. -- name: support-export-secure-bug-report-2257 - title: Export Secure Bug Report (support) - description: Standard workflow to export secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to export the bug report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure bug report targets before running. -- name: support-import-weekly-ticket-2258 - title: Import Weekly Ticket (support) - description: Standard workflow to import weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute import procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-import-monthly-ticket-2259 - title: Import Monthly Ticket (support) - description: Standard workflow to import monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and import the monthly ticket. - - Send a status update to the support team chat space. -- name: support-import-urgent-ticket-2260 - title: Import Urgent Ticket (support) - description: Standard workflow to import urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to import the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-import-secure-ticket-2261 - title: Import Secure Ticket (support) - description: Standard workflow to import secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute import procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-import-weekly-customer-record-2262 - title: Import Weekly Customer Record (support) - description: Standard workflow to import weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and import the weekly customer record. - - Notify stakeholders via email. -- name: support-import-monthly-customer-record-2263 - title: Import Monthly Customer Record (support) - description: Standard workflow to import monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to import the customer record. - - Send a status update to the support team chat space. -- name: support-import-urgent-customer-record-2264 - title: Import Urgent Customer Record (support) - description: Standard workflow to import urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute import procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-import-secure-customer-record-2265 - title: Import Secure Customer Record (support) - description: Standard workflow to import secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and import the secure customer record. - - Archive results in a secure Drive folder. -- name: support-import-weekly-kb-article-2266 - title: Import Weekly Kb Article (support) - description: Standard workflow to import weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to import the kb article. - - Notify stakeholders via email. -- name: support-import-monthly-kb-article-2267 - title: Import Monthly Kb Article (support) - description: Standard workflow to import monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute import procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-import-urgent-kb-article-2268 - title: Import Urgent Kb Article (support) - description: Standard workflow to import urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and import the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-import-secure-kb-article-2269 - title: Import Secure Kb Article (support) - description: Standard workflow to import secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to import the kb article. - - Archive results in a secure Drive folder. -- name: support-import-weekly-escalation-2270 - title: Import Weekly Escalation (support) - description: Standard workflow to import weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute import procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-import-monthly-escalation-2271 - title: Import Monthly Escalation (support) - description: Standard workflow to import monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and import the monthly escalation. - - Send a status update to the support team chat space. -- name: support-import-urgent-escalation-2272 - title: Import Urgent Escalation (support) - description: Standard workflow to import urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to import the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-import-secure-escalation-2273 - title: Import Secure Escalation (support) - description: Standard workflow to import secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute import procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-import-weekly-refund-request-2274 - title: Import Weekly Refund Request (support) - description: Standard workflow to import weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and import the weekly refund request. - - Notify stakeholders via email. -- name: support-import-monthly-refund-request-2275 - title: Import Monthly Refund Request (support) - description: Standard workflow to import monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to import the refund request. - - Send a status update to the support team chat space. -- name: support-import-urgent-refund-request-2276 - title: Import Urgent Refund Request (support) - description: Standard workflow to import urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute import procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-import-secure-refund-request-2277 - title: Import Secure Refund Request (support) - description: Standard workflow to import secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and import the secure refund request. - - Archive results in a secure Drive folder. -- name: support-import-weekly-bug-report-2278 - title: Import Weekly Bug Report (support) - description: Standard workflow to import weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to import the bug report. - - Notify stakeholders via email. -- name: support-import-monthly-bug-report-2279 - title: Import Monthly Bug Report (support) - description: Standard workflow to import monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute import procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-import-urgent-bug-report-2280 - title: Import Urgent Bug Report (support) - description: Standard workflow to import urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and import the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-import-secure-bug-report-2281 - title: Import Secure Bug Report (support) - description: Standard workflow to import secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to import the bug report. - - Archive results in a secure Drive folder. -- name: support-sync-weekly-ticket-2282 - title: Sync Weekly Ticket (support) - description: Standard workflow to sync weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute sync procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-sync-monthly-ticket-2283 - title: Sync Monthly Ticket (support) - description: Standard workflow to sync monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and sync the monthly ticket. - - Send a status update to the support team chat space. -- name: support-sync-urgent-ticket-2284 - title: Sync Urgent Ticket (support) - description: Standard workflow to sync urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to sync the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-sync-secure-ticket-2285 - title: Sync Secure Ticket (support) - description: Standard workflow to sync secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute sync procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-sync-weekly-customer-record-2286 - title: Sync Weekly Customer Record (support) - description: Standard workflow to sync weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and sync the weekly customer record. - - Notify stakeholders via email. -- name: support-sync-monthly-customer-record-2287 - title: Sync Monthly Customer Record (support) - description: Standard workflow to sync monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to sync the customer record. - - Send a status update to the support team chat space. -- name: support-sync-urgent-customer-record-2288 - title: Sync Urgent Customer Record (support) - description: Standard workflow to sync urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute sync procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-sync-secure-customer-record-2289 - title: Sync Secure Customer Record (support) - description: Standard workflow to sync secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and sync the secure customer record. - - Archive results in a secure Drive folder. -- name: support-sync-weekly-kb-article-2290 - title: Sync Weekly Kb Article (support) - description: Standard workflow to sync weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to sync the kb article. - - Notify stakeholders via email. -- name: support-sync-monthly-kb-article-2291 - title: Sync Monthly Kb Article (support) - description: Standard workflow to sync monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute sync procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-sync-urgent-kb-article-2292 - title: Sync Urgent Kb Article (support) - description: Standard workflow to sync urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and sync the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-sync-secure-kb-article-2293 - title: Sync Secure Kb Article (support) - description: Standard workflow to sync secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to sync the kb article. - - Archive results in a secure Drive folder. -- name: support-sync-weekly-escalation-2294 - title: Sync Weekly Escalation (support) - description: Standard workflow to sync weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute sync procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-sync-monthly-escalation-2295 - title: Sync Monthly Escalation (support) - description: Standard workflow to sync monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and sync the monthly escalation. - - Send a status update to the support team chat space. -- name: support-sync-urgent-escalation-2296 - title: Sync Urgent Escalation (support) - description: Standard workflow to sync urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to sync the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-sync-secure-escalation-2297 - title: Sync Secure Escalation (support) - description: Standard workflow to sync secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute sync procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-sync-weekly-refund-request-2298 - title: Sync Weekly Refund Request (support) - description: Standard workflow to sync weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and sync the weekly refund request. - - Notify stakeholders via email. -- name: support-sync-monthly-refund-request-2299 - title: Sync Monthly Refund Request (support) - description: Standard workflow to sync monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to sync the refund request. - - Send a status update to the support team chat space. -- name: support-sync-urgent-refund-request-2300 - title: Sync Urgent Refund Request (support) - description: Standard workflow to sync urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute sync procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-sync-secure-refund-request-2301 - title: Sync Secure Refund Request (support) - description: Standard workflow to sync secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and sync the secure refund request. - - Archive results in a secure Drive folder. -- name: support-sync-weekly-bug-report-2302 - title: Sync Weekly Bug Report (support) - description: Standard workflow to sync weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to sync the bug report. - - Notify stakeholders via email. -- name: support-sync-monthly-bug-report-2303 - title: Sync Monthly Bug Report (support) - description: Standard workflow to sync monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute sync procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-sync-urgent-bug-report-2304 - title: Sync Urgent Bug Report (support) - description: Standard workflow to sync urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and sync the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-sync-secure-bug-report-2305 - title: Sync Secure Bug Report (support) - description: Standard workflow to sync secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to sync the bug report. - - Archive results in a secure Drive folder. -- name: support-migrate-weekly-ticket-2306 - title: Migrate Weekly Ticket (support) - description: Standard workflow to migrate weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute migrate procedure on the designated ticket. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly ticket targets before running. -- name: support-migrate-monthly-ticket-2307 - title: Migrate Monthly Ticket (support) - description: Standard workflow to migrate monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and migrate the monthly ticket. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly ticket targets before running. -- name: support-migrate-urgent-ticket-2308 - title: Migrate Urgent Ticket (support) - description: Standard workflow to migrate urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to migrate the ticket. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent ticket targets before running. -- name: support-migrate-secure-ticket-2309 - title: Migrate Secure Ticket (support) - description: Standard workflow to migrate secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute migrate procedure on the designated ticket. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure ticket targets before running. -- name: support-migrate-weekly-customer-record-2310 - title: Migrate Weekly Customer Record (support) - description: Standard workflow to migrate weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and migrate the weekly customer record. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly customer record targets before running. -- name: support-migrate-monthly-customer-record-2311 - title: Migrate Monthly Customer Record (support) - description: Standard workflow to migrate monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to migrate the customer record. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly customer record targets before running. -- name: support-migrate-urgent-customer-record-2312 - title: Migrate Urgent Customer Record (support) - description: Standard workflow to migrate urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute migrate procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent customer record targets before running. -- name: support-migrate-secure-customer-record-2313 - title: Migrate Secure Customer Record (support) - description: Standard workflow to migrate secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and migrate the secure customer record. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure customer record targets before running. -- name: support-migrate-weekly-kb-article-2314 - title: Migrate Weekly Kb Article (support) - description: Standard workflow to migrate weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to migrate the kb article. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly kb article targets before running. -- name: support-migrate-monthly-kb-article-2315 - title: Migrate Monthly Kb Article (support) - description: Standard workflow to migrate monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute migrate procedure on the designated kb article. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly kb article targets before running. -- name: support-migrate-urgent-kb-article-2316 - title: Migrate Urgent Kb Article (support) - description: Standard workflow to migrate urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and migrate the urgent kb article. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent kb article targets before running. -- name: support-migrate-secure-kb-article-2317 - title: Migrate Secure Kb Article (support) - description: Standard workflow to migrate secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to migrate the kb article. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure kb article targets before running. -- name: support-migrate-weekly-escalation-2318 - title: Migrate Weekly Escalation (support) - description: Standard workflow to migrate weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute migrate procedure on the designated escalation. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly escalation targets before running. -- name: support-migrate-monthly-escalation-2319 - title: Migrate Monthly Escalation (support) - description: Standard workflow to migrate monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and migrate the monthly escalation. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly escalation targets before running. -- name: support-migrate-urgent-escalation-2320 - title: Migrate Urgent Escalation (support) - description: Standard workflow to migrate urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to migrate the escalation. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent escalation targets before running. -- name: support-migrate-secure-escalation-2321 - title: Migrate Secure Escalation (support) - description: Standard workflow to migrate secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute migrate procedure on the designated escalation. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure escalation targets before running. -- name: support-migrate-weekly-refund-request-2322 - title: Migrate Weekly Refund Request (support) - description: Standard workflow to migrate weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and migrate the weekly refund request. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly refund request targets before running. -- name: support-migrate-monthly-refund-request-2323 - title: Migrate Monthly Refund Request (support) - description: Standard workflow to migrate monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to migrate the refund request. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly refund request targets before running. -- name: support-migrate-urgent-refund-request-2324 - title: Migrate Urgent Refund Request (support) - description: Standard workflow to migrate urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute migrate procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent refund request targets before running. -- name: support-migrate-secure-refund-request-2325 - title: Migrate Secure Refund Request (support) - description: Standard workflow to migrate secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and migrate the secure refund request. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure refund request targets before running. -- name: support-migrate-weekly-bug-report-2326 - title: Migrate Weekly Bug Report (support) - description: Standard workflow to migrate weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to migrate the bug report. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly bug report targets before running. -- name: support-migrate-monthly-bug-report-2327 - title: Migrate Monthly Bug Report (support) - description: Standard workflow to migrate monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute migrate procedure on the designated bug report. - - Send a status update to the support team chat space. - caution: Action involves bulk data manipulation. Confirm monthly bug report targets before running. -- name: support-migrate-urgent-bug-report-2328 - title: Migrate Urgent Bug Report (support) - description: Standard workflow to migrate urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and migrate the urgent bug report. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent bug report targets before running. -- name: support-migrate-secure-bug-report-2329 - title: Migrate Secure Bug Report (support) - description: Standard workflow to migrate secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to migrate the bug report. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure bug report targets before running. -- name: support-backup-weekly-ticket-2330 - title: Backup Weekly Ticket (support) - description: Standard workflow to backup weekly ticket within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly ticket requests. - - Execute backup procedure on the designated ticket. - - Notify stakeholders via email. -- name: support-backup-monthly-ticket-2331 - title: Backup Monthly Ticket (support) - description: Standard workflow to backup monthly ticket within the support department. - category: support - services: - - sheets - steps: - - Search for monthly ticket records. - - Review and backup the monthly ticket. - - Send a status update to the support team chat space. -- name: support-backup-urgent-ticket-2332 - title: Backup Urgent Ticket (support) - description: Standard workflow to backup urgent ticket within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent ticket data. - - Apply support policies to backup the ticket. - - Log completion in the master tracking spreadsheet. -- name: support-backup-secure-ticket-2333 - title: Backup Secure Ticket (support) - description: Standard workflow to backup secure ticket within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure ticket requests. - - Execute backup procedure on the designated ticket. - - Archive results in a secure Drive folder. -- name: support-backup-weekly-customer-record-2334 - title: Backup Weekly Customer Record (support) - description: Standard workflow to backup weekly customer record within the support department. - category: support - services: - - gmail - steps: - - Search for weekly customer record records. - - Review and backup the weekly customer record. - - Notify stakeholders via email. -- name: support-backup-monthly-customer-record-2335 - title: Backup Monthly Customer Record (support) - description: Standard workflow to backup monthly customer record within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly customer record data. - - Apply support policies to backup the customer record. - - Send a status update to the support team chat space. -- name: support-backup-urgent-customer-record-2336 - title: Backup Urgent Customer Record (support) - description: Standard workflow to backup urgent customer record within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent customer record requests. - - Execute backup procedure on the designated customer record. - - Log completion in the master tracking spreadsheet. -- name: support-backup-secure-customer-record-2337 - title: Backup Secure Customer Record (support) - description: Standard workflow to backup secure customer record within the support department. - category: support - services: - - docs - steps: - - Search for secure customer record records. - - Review and backup the secure customer record. - - Archive results in a secure Drive folder. -- name: support-backup-weekly-kb-article-2338 - title: Backup Weekly Kb Article (support) - description: Standard workflow to backup weekly kb article within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly kb article data. - - Apply support policies to backup the kb article. - - Notify stakeholders via email. -- name: support-backup-monthly-kb-article-2339 - title: Backup Monthly Kb Article (support) - description: Standard workflow to backup monthly kb article within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly kb article requests. - - Execute backup procedure on the designated kb article. - - Send a status update to the support team chat space. -- name: support-backup-urgent-kb-article-2340 - title: Backup Urgent Kb Article (support) - description: Standard workflow to backup urgent kb article within the support department. - category: support - services: - - chat - steps: - - Search for urgent kb article records. - - Review and backup the urgent kb article. - - Log completion in the master tracking spreadsheet. -- name: support-backup-secure-kb-article-2341 - title: Backup Secure Kb Article (support) - description: Standard workflow to backup secure kb article within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure kb article data. - - Apply support policies to backup the kb article. - - Archive results in a secure Drive folder. -- name: support-backup-weekly-escalation-2342 - title: Backup Weekly Escalation (support) - description: Standard workflow to backup weekly escalation within the support department. - category: support - services: - - gmail - - sheets - - chat - steps: - - Check system for pending weekly escalation requests. - - Execute backup procedure on the designated escalation. - - Notify stakeholders via email. -- name: support-backup-monthly-escalation-2343 - title: Backup Monthly Escalation (support) - description: Standard workflow to backup monthly escalation within the support department. - category: support - services: - - sheets - steps: - - Search for monthly escalation records. - - Review and backup the monthly escalation. - - Send a status update to the support team chat space. -- name: support-backup-urgent-escalation-2344 - title: Backup Urgent Escalation (support) - description: Standard workflow to backup urgent escalation within the support department. - category: support - services: - - chat - - docs - steps: - - Fetch latest urgent escalation data. - - Apply support policies to backup the escalation. - - Log completion in the master tracking spreadsheet. -- name: support-backup-secure-escalation-2345 - title: Backup Secure Escalation (support) - description: Standard workflow to backup secure escalation within the support department. - category: support - services: - - docs - - gmail - - sheets - steps: - - Check system for pending secure escalation requests. - - Execute backup procedure on the designated escalation. - - Archive results in a secure Drive folder. -- name: support-backup-weekly-refund-request-2346 - title: Backup Weekly Refund Request (support) - description: Standard workflow to backup weekly refund request within the support department. - category: support - services: - - gmail - steps: - - Search for weekly refund request records. - - Review and backup the weekly refund request. - - Notify stakeholders via email. -- name: support-backup-monthly-refund-request-2347 - title: Backup Monthly Refund Request (support) - description: Standard workflow to backup monthly refund request within the support department. - category: support - services: - - sheets - - chat - steps: - - Fetch latest monthly refund request data. - - Apply support policies to backup the refund request. - - Send a status update to the support team chat space. -- name: support-backup-urgent-refund-request-2348 - title: Backup Urgent Refund Request (support) - description: Standard workflow to backup urgent refund request within the support department. - category: support - services: - - chat - - docs - - gmail - steps: - - Check system for pending urgent refund request requests. - - Execute backup procedure on the designated refund request. - - Log completion in the master tracking spreadsheet. -- name: support-backup-secure-refund-request-2349 - title: Backup Secure Refund Request (support) - description: Standard workflow to backup secure refund request within the support department. - category: support - services: - - docs - steps: - - Search for secure refund request records. - - Review and backup the secure refund request. - - Archive results in a secure Drive folder. -- name: support-backup-weekly-bug-report-2350 - title: Backup Weekly Bug Report (support) - description: Standard workflow to backup weekly bug report within the support department. - category: support - services: - - gmail - - sheets - steps: - - Fetch latest weekly bug report data. - - Apply support policies to backup the bug report. - - Notify stakeholders via email. -- name: support-backup-monthly-bug-report-2351 - title: Backup Monthly Bug Report (support) - description: Standard workflow to backup monthly bug report within the support department. - category: support - services: - - sheets - - chat - - docs - steps: - - Check system for pending monthly bug report requests. - - Execute backup procedure on the designated bug report. - - Send a status update to the support team chat space. -- name: support-backup-urgent-bug-report-2352 - title: Backup Urgent Bug Report (support) - description: Standard workflow to backup urgent bug report within the support department. - category: support - services: - - chat - steps: - - Search for urgent bug report records. - - Review and backup the urgent bug report. - - Log completion in the master tracking spreadsheet. -- name: support-backup-secure-bug-report-2353 - title: Backup Secure Bug Report (support) - description: Standard workflow to backup secure bug report within the support department. - category: support - services: - - docs - - gmail - steps: - - Fetch latest secure bug report data. - - Apply support policies to backup the bug report. - - Archive results in a secure Drive folder. -- name: operations-audit-weekly-vendor-2354 - title: Audit Weekly Vendor (operations) - description: Standard workflow to audit weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly vendor requests. - - Execute audit procedure on the designated vendor. - - Notify stakeholders via email. -- name: operations-audit-monthly-vendor-2355 - title: Audit Monthly Vendor (operations) - description: Standard workflow to audit monthly vendor within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly vendor records. - - Review and audit the monthly vendor. - - Send a status update to the operations team chat space. -- name: operations-audit-urgent-vendor-2356 - title: Audit Urgent Vendor (operations) - description: Standard workflow to audit urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent vendor data. - - Apply operations policies to audit the vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-audit-secure-vendor-2357 - title: Audit Secure Vendor (operations) - description: Standard workflow to audit secure vendor within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure vendor requests. - - Execute audit procedure on the designated vendor. - - Archive results in a secure Drive folder. -- name: operations-audit-weekly-facility-2358 - title: Audit Weekly Facility (operations) - description: Standard workflow to audit weekly facility within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly facility records. - - Review and audit the weekly facility. - - Notify stakeholders via email. -- name: operations-audit-monthly-facility-2359 - title: Audit Monthly Facility (operations) - description: Standard workflow to audit monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly facility data. - - Apply operations policies to audit the facility. - - Send a status update to the operations team chat space. -- name: operations-audit-urgent-facility-2360 - title: Audit Urgent Facility (operations) - description: Standard workflow to audit urgent facility within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent facility requests. - - Execute audit procedure on the designated facility. - - Log completion in the master tracking spreadsheet. -- name: operations-audit-secure-facility-2361 - title: Audit Secure Facility (operations) - description: Standard workflow to audit secure facility within the operations department. - category: operations - services: - - chat - steps: - - Search for secure facility records. - - Review and audit the secure facility. - - Archive results in a secure Drive folder. -- name: operations-audit-weekly-inventory-2362 - title: Audit Weekly Inventory (operations) - description: Standard workflow to audit weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly inventory data. - - Apply operations policies to audit the inventory. - - Notify stakeholders via email. -- name: operations-audit-monthly-inventory-2363 - title: Audit Monthly Inventory (operations) - description: Standard workflow to audit monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly inventory requests. - - Execute audit procedure on the designated inventory. - - Send a status update to the operations team chat space. -- name: operations-audit-urgent-inventory-2364 - title: Audit Urgent Inventory (operations) - description: Standard workflow to audit urgent inventory within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent inventory records. - - Review and audit the urgent inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-audit-secure-inventory-2365 - title: Audit Secure Inventory (operations) - description: Standard workflow to audit secure inventory within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure inventory data. - - Apply operations policies to audit the inventory. - - Archive results in a secure Drive folder. -- name: operations-audit-weekly-shipping-manifest-2366 - title: Audit Weekly Shipping Manifest (operations) - description: Standard workflow to audit weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly shipping manifest requests. - - Execute audit procedure on the designated shipping manifest. - - Notify stakeholders via email. -- name: operations-audit-monthly-shipping-manifest-2367 - title: Audit Monthly Shipping Manifest (operations) - description: Standard workflow to audit monthly shipping manifest within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly shipping manifest records. - - Review and audit the monthly shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-audit-urgent-shipping-manifest-2368 - title: Audit Urgent Shipping Manifest (operations) - description: Standard workflow to audit urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent shipping manifest data. - - Apply operations policies to audit the shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-audit-secure-shipping-manifest-2369 - title: Audit Secure Shipping Manifest (operations) - description: Standard workflow to audit secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure shipping manifest requests. - - Execute audit procedure on the designated shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-audit-weekly-safety-audit-2370 - title: Audit Weekly Safety Audit (operations) - description: Standard workflow to audit weekly safety audit within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly safety audit records. - - Review and audit the weekly safety audit. - - Notify stakeholders via email. -- name: operations-audit-monthly-safety-audit-2371 - title: Audit Monthly Safety Audit (operations) - description: Standard workflow to audit monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly safety audit data. - - Apply operations policies to audit the safety audit. - - Send a status update to the operations team chat space. -- name: operations-audit-urgent-safety-audit-2372 - title: Audit Urgent Safety Audit (operations) - description: Standard workflow to audit urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent safety audit requests. - - Execute audit procedure on the designated safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-audit-secure-safety-audit-2373 - title: Audit Secure Safety Audit (operations) - description: Standard workflow to audit secure safety audit within the operations department. - category: operations - services: - - chat - steps: - - Search for secure safety audit records. - - Review and audit the secure safety audit. - - Archive results in a secure Drive folder. -- name: operations-onboard-weekly-vendor-2374 - title: Onboard Weekly Vendor (operations) - description: Standard workflow to onboard weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly vendor data. - - Apply operations policies to onboard the vendor. - - Notify stakeholders via email. -- name: operations-onboard-monthly-vendor-2375 - title: Onboard Monthly Vendor (operations) - description: Standard workflow to onboard monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly vendor requests. - - Execute onboard procedure on the designated vendor. - - Send a status update to the operations team chat space. -- name: operations-onboard-urgent-vendor-2376 - title: Onboard Urgent Vendor (operations) - description: Standard workflow to onboard urgent vendor within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent vendor records. - - Review and onboard the urgent vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-onboard-secure-vendor-2377 - title: Onboard Secure Vendor (operations) - description: Standard workflow to onboard secure vendor within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure vendor data. - - Apply operations policies to onboard the vendor. - - Archive results in a secure Drive folder. -- name: operations-onboard-weekly-facility-2378 - title: Onboard Weekly Facility (operations) - description: Standard workflow to onboard weekly facility within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly facility requests. - - Execute onboard procedure on the designated facility. - - Notify stakeholders via email. -- name: operations-onboard-monthly-facility-2379 - title: Onboard Monthly Facility (operations) - description: Standard workflow to onboard monthly facility within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly facility records. - - Review and onboard the monthly facility. - - Send a status update to the operations team chat space. -- name: operations-onboard-urgent-facility-2380 - title: Onboard Urgent Facility (operations) - description: Standard workflow to onboard urgent facility within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent facility data. - - Apply operations policies to onboard the facility. - - Log completion in the master tracking spreadsheet. -- name: operations-onboard-secure-facility-2381 - title: Onboard Secure Facility (operations) - description: Standard workflow to onboard secure facility within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure facility requests. - - Execute onboard procedure on the designated facility. - - Archive results in a secure Drive folder. -- name: operations-onboard-weekly-inventory-2382 - title: Onboard Weekly Inventory (operations) - description: Standard workflow to onboard weekly inventory within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly inventory records. - - Review and onboard the weekly inventory. - - Notify stakeholders via email. -- name: operations-onboard-monthly-inventory-2383 - title: Onboard Monthly Inventory (operations) - description: Standard workflow to onboard monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly inventory data. - - Apply operations policies to onboard the inventory. - - Send a status update to the operations team chat space. -- name: operations-onboard-urgent-inventory-2384 - title: Onboard Urgent Inventory (operations) - description: Standard workflow to onboard urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent inventory requests. - - Execute onboard procedure on the designated inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-onboard-secure-inventory-2385 - title: Onboard Secure Inventory (operations) - description: Standard workflow to onboard secure inventory within the operations department. - category: operations - services: - - chat - steps: - - Search for secure inventory records. - - Review and onboard the secure inventory. - - Archive results in a secure Drive folder. -- name: operations-onboard-weekly-shipping-manifest-2386 - title: Onboard Weekly Shipping Manifest (operations) - description: Standard workflow to onboard weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly shipping manifest data. - - Apply operations policies to onboard the shipping manifest. - - Notify stakeholders via email. -- name: operations-onboard-monthly-shipping-manifest-2387 - title: Onboard Monthly Shipping Manifest (operations) - description: Standard workflow to onboard monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly shipping manifest requests. - - Execute onboard procedure on the designated shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-onboard-urgent-shipping-manifest-2388 - title: Onboard Urgent Shipping Manifest (operations) - description: Standard workflow to onboard urgent shipping manifest within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent shipping manifest records. - - Review and onboard the urgent shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-onboard-secure-shipping-manifest-2389 - title: Onboard Secure Shipping Manifest (operations) - description: Standard workflow to onboard secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure shipping manifest data. - - Apply operations policies to onboard the shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-onboard-weekly-safety-audit-2390 - title: Onboard Weekly Safety Audit (operations) - description: Standard workflow to onboard weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly safety audit requests. - - Execute onboard procedure on the designated safety audit. - - Notify stakeholders via email. -- name: operations-onboard-monthly-safety-audit-2391 - title: Onboard Monthly Safety Audit (operations) - description: Standard workflow to onboard monthly safety audit within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly safety audit records. - - Review and onboard the monthly safety audit. - - Send a status update to the operations team chat space. -- name: operations-onboard-urgent-safety-audit-2392 - title: Onboard Urgent Safety Audit (operations) - description: Standard workflow to onboard urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent safety audit data. - - Apply operations policies to onboard the safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-onboard-secure-safety-audit-2393 - title: Onboard Secure Safety Audit (operations) - description: Standard workflow to onboard secure safety audit within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure safety audit requests. - - Execute onboard procedure on the designated safety audit. - - Archive results in a secure Drive folder. -- name: operations-review-weekly-vendor-2394 - title: Review Weekly Vendor (operations) - description: Standard workflow to review weekly vendor within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly vendor records. - - Review and review the weekly vendor. - - Notify stakeholders via email. -- name: operations-review-monthly-vendor-2395 - title: Review Monthly Vendor (operations) - description: Standard workflow to review monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly vendor data. - - Apply operations policies to review the vendor. - - Send a status update to the operations team chat space. -- name: operations-review-urgent-vendor-2396 - title: Review Urgent Vendor (operations) - description: Standard workflow to review urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent vendor requests. - - Execute review procedure on the designated vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-review-secure-vendor-2397 - title: Review Secure Vendor (operations) - description: Standard workflow to review secure vendor within the operations department. - category: operations - services: - - chat - steps: - - Search for secure vendor records. - - Review and review the secure vendor. - - Archive results in a secure Drive folder. -- name: operations-review-weekly-facility-2398 - title: Review Weekly Facility (operations) - description: Standard workflow to review weekly facility within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly facility data. - - Apply operations policies to review the facility. - - Notify stakeholders via email. -- name: operations-review-monthly-facility-2399 - title: Review Monthly Facility (operations) - description: Standard workflow to review monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly facility requests. - - Execute review procedure on the designated facility. - - Send a status update to the operations team chat space. -- name: operations-review-urgent-facility-2400 - title: Review Urgent Facility (operations) - description: Standard workflow to review urgent facility within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent facility records. - - Review and review the urgent facility. - - Log completion in the master tracking spreadsheet. -- name: operations-review-secure-facility-2401 - title: Review Secure Facility (operations) - description: Standard workflow to review secure facility within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure facility data. - - Apply operations policies to review the facility. - - Archive results in a secure Drive folder. -- name: operations-review-weekly-inventory-2402 - title: Review Weekly Inventory (operations) - description: Standard workflow to review weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly inventory requests. - - Execute review procedure on the designated inventory. - - Notify stakeholders via email. -- name: operations-review-monthly-inventory-2403 - title: Review Monthly Inventory (operations) - description: Standard workflow to review monthly inventory within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly inventory records. - - Review and review the monthly inventory. - - Send a status update to the operations team chat space. -- name: operations-review-urgent-inventory-2404 - title: Review Urgent Inventory (operations) - description: Standard workflow to review urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent inventory data. - - Apply operations policies to review the inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-review-secure-inventory-2405 - title: Review Secure Inventory (operations) - description: Standard workflow to review secure inventory within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure inventory requests. - - Execute review procedure on the designated inventory. - - Archive results in a secure Drive folder. -- name: operations-review-weekly-shipping-manifest-2406 - title: Review Weekly Shipping Manifest (operations) - description: Standard workflow to review weekly shipping manifest within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly shipping manifest records. - - Review and review the weekly shipping manifest. - - Notify stakeholders via email. -- name: operations-review-monthly-shipping-manifest-2407 - title: Review Monthly Shipping Manifest (operations) - description: Standard workflow to review monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly shipping manifest data. - - Apply operations policies to review the shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-review-urgent-shipping-manifest-2408 - title: Review Urgent Shipping Manifest (operations) - description: Standard workflow to review urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent shipping manifest requests. - - Execute review procedure on the designated shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-review-secure-shipping-manifest-2409 - title: Review Secure Shipping Manifest (operations) - description: Standard workflow to review secure shipping manifest within the operations department. - category: operations - services: - - chat - steps: - - Search for secure shipping manifest records. - - Review and review the secure shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-review-weekly-safety-audit-2410 - title: Review Weekly Safety Audit (operations) - description: Standard workflow to review weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly safety audit data. - - Apply operations policies to review the safety audit. - - Notify stakeholders via email. -- name: operations-review-monthly-safety-audit-2411 - title: Review Monthly Safety Audit (operations) - description: Standard workflow to review monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly safety audit requests. - - Execute review procedure on the designated safety audit. - - Send a status update to the operations team chat space. -- name: operations-review-urgent-safety-audit-2412 - title: Review Urgent Safety Audit (operations) - description: Standard workflow to review urgent safety audit within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent safety audit records. - - Review and review the urgent safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-review-secure-safety-audit-2413 - title: Review Secure Safety Audit (operations) - description: Standard workflow to review secure safety audit within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure safety audit data. - - Apply operations policies to review the safety audit. - - Archive results in a secure Drive folder. -- name: operations-approve-weekly-vendor-2414 - title: Approve Weekly Vendor (operations) - description: Standard workflow to approve weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly vendor requests. - - Execute approve procedure on the designated vendor. - - Notify stakeholders via email. -- name: operations-approve-monthly-vendor-2415 - title: Approve Monthly Vendor (operations) - description: Standard workflow to approve monthly vendor within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly vendor records. - - Review and approve the monthly vendor. - - Send a status update to the operations team chat space. -- name: operations-approve-urgent-vendor-2416 - title: Approve Urgent Vendor (operations) - description: Standard workflow to approve urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent vendor data. - - Apply operations policies to approve the vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-approve-secure-vendor-2417 - title: Approve Secure Vendor (operations) - description: Standard workflow to approve secure vendor within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure vendor requests. - - Execute approve procedure on the designated vendor. - - Archive results in a secure Drive folder. -- name: operations-approve-weekly-facility-2418 - title: Approve Weekly Facility (operations) - description: Standard workflow to approve weekly facility within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly facility records. - - Review and approve the weekly facility. - - Notify stakeholders via email. -- name: operations-approve-monthly-facility-2419 - title: Approve Monthly Facility (operations) - description: Standard workflow to approve monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly facility data. - - Apply operations policies to approve the facility. - - Send a status update to the operations team chat space. -- name: operations-approve-urgent-facility-2420 - title: Approve Urgent Facility (operations) - description: Standard workflow to approve urgent facility within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent facility requests. - - Execute approve procedure on the designated facility. - - Log completion in the master tracking spreadsheet. -- name: operations-approve-secure-facility-2421 - title: Approve Secure Facility (operations) - description: Standard workflow to approve secure facility within the operations department. - category: operations - services: - - chat - steps: - - Search for secure facility records. - - Review and approve the secure facility. - - Archive results in a secure Drive folder. -- name: operations-approve-weekly-inventory-2422 - title: Approve Weekly Inventory (operations) - description: Standard workflow to approve weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly inventory data. - - Apply operations policies to approve the inventory. - - Notify stakeholders via email. -- name: operations-approve-monthly-inventory-2423 - title: Approve Monthly Inventory (operations) - description: Standard workflow to approve monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly inventory requests. - - Execute approve procedure on the designated inventory. - - Send a status update to the operations team chat space. -- name: operations-approve-urgent-inventory-2424 - title: Approve Urgent Inventory (operations) - description: Standard workflow to approve urgent inventory within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent inventory records. - - Review and approve the urgent inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-approve-secure-inventory-2425 - title: Approve Secure Inventory (operations) - description: Standard workflow to approve secure inventory within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure inventory data. - - Apply operations policies to approve the inventory. - - Archive results in a secure Drive folder. -- name: operations-approve-weekly-shipping-manifest-2426 - title: Approve Weekly Shipping Manifest (operations) - description: Standard workflow to approve weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly shipping manifest requests. - - Execute approve procedure on the designated shipping manifest. - - Notify stakeholders via email. -- name: operations-approve-monthly-shipping-manifest-2427 - title: Approve Monthly Shipping Manifest (operations) - description: Standard workflow to approve monthly shipping manifest within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly shipping manifest records. - - Review and approve the monthly shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-approve-urgent-shipping-manifest-2428 - title: Approve Urgent Shipping Manifest (operations) - description: Standard workflow to approve urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent shipping manifest data. - - Apply operations policies to approve the shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-approve-secure-shipping-manifest-2429 - title: Approve Secure Shipping Manifest (operations) - description: Standard workflow to approve secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure shipping manifest requests. - - Execute approve procedure on the designated shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-approve-weekly-safety-audit-2430 - title: Approve Weekly Safety Audit (operations) - description: Standard workflow to approve weekly safety audit within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly safety audit records. - - Review and approve the weekly safety audit. - - Notify stakeholders via email. -- name: operations-approve-monthly-safety-audit-2431 - title: Approve Monthly Safety Audit (operations) - description: Standard workflow to approve monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly safety audit data. - - Apply operations policies to approve the safety audit. - - Send a status update to the operations team chat space. -- name: operations-approve-urgent-safety-audit-2432 - title: Approve Urgent Safety Audit (operations) - description: Standard workflow to approve urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent safety audit requests. - - Execute approve procedure on the designated safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-approve-secure-safety-audit-2433 - title: Approve Secure Safety Audit (operations) - description: Standard workflow to approve secure safety audit within the operations department. - category: operations - services: - - chat - steps: - - Search for secure safety audit records. - - Review and approve the secure safety audit. - - Archive results in a secure Drive folder. -- name: operations-share-weekly-vendor-2434 - title: Share Weekly Vendor (operations) - description: Standard workflow to share weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly vendor data. - - Apply operations policies to share the vendor. - - Notify stakeholders via email. -- name: operations-share-monthly-vendor-2435 - title: Share Monthly Vendor (operations) - description: Standard workflow to share monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly vendor requests. - - Execute share procedure on the designated vendor. - - Send a status update to the operations team chat space. -- name: operations-share-urgent-vendor-2436 - title: Share Urgent Vendor (operations) - description: Standard workflow to share urgent vendor within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent vendor records. - - Review and share the urgent vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-share-secure-vendor-2437 - title: Share Secure Vendor (operations) - description: Standard workflow to share secure vendor within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure vendor data. - - Apply operations policies to share the vendor. - - Archive results in a secure Drive folder. -- name: operations-share-weekly-facility-2438 - title: Share Weekly Facility (operations) - description: Standard workflow to share weekly facility within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly facility requests. - - Execute share procedure on the designated facility. - - Notify stakeholders via email. -- name: operations-share-monthly-facility-2439 - title: Share Monthly Facility (operations) - description: Standard workflow to share monthly facility within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly facility records. - - Review and share the monthly facility. - - Send a status update to the operations team chat space. -- name: operations-share-urgent-facility-2440 - title: Share Urgent Facility (operations) - description: Standard workflow to share urgent facility within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent facility data. - - Apply operations policies to share the facility. - - Log completion in the master tracking spreadsheet. -- name: operations-share-secure-facility-2441 - title: Share Secure Facility (operations) - description: Standard workflow to share secure facility within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure facility requests. - - Execute share procedure on the designated facility. - - Archive results in a secure Drive folder. -- name: operations-share-weekly-inventory-2442 - title: Share Weekly Inventory (operations) - description: Standard workflow to share weekly inventory within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly inventory records. - - Review and share the weekly inventory. - - Notify stakeholders via email. -- name: operations-share-monthly-inventory-2443 - title: Share Monthly Inventory (operations) - description: Standard workflow to share monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly inventory data. - - Apply operations policies to share the inventory. - - Send a status update to the operations team chat space. -- name: operations-share-urgent-inventory-2444 - title: Share Urgent Inventory (operations) - description: Standard workflow to share urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent inventory requests. - - Execute share procedure on the designated inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-share-secure-inventory-2445 - title: Share Secure Inventory (operations) - description: Standard workflow to share secure inventory within the operations department. - category: operations - services: - - chat - steps: - - Search for secure inventory records. - - Review and share the secure inventory. - - Archive results in a secure Drive folder. -- name: operations-share-weekly-shipping-manifest-2446 - title: Share Weekly Shipping Manifest (operations) - description: Standard workflow to share weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly shipping manifest data. - - Apply operations policies to share the shipping manifest. - - Notify stakeholders via email. -- name: operations-share-monthly-shipping-manifest-2447 - title: Share Monthly Shipping Manifest (operations) - description: Standard workflow to share monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly shipping manifest requests. - - Execute share procedure on the designated shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-share-urgent-shipping-manifest-2448 - title: Share Urgent Shipping Manifest (operations) - description: Standard workflow to share urgent shipping manifest within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent shipping manifest records. - - Review and share the urgent shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-share-secure-shipping-manifest-2449 - title: Share Secure Shipping Manifest (operations) - description: Standard workflow to share secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure shipping manifest data. - - Apply operations policies to share the shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-share-weekly-safety-audit-2450 - title: Share Weekly Safety Audit (operations) - description: Standard workflow to share weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly safety audit requests. - - Execute share procedure on the designated safety audit. - - Notify stakeholders via email. -- name: operations-share-monthly-safety-audit-2451 - title: Share Monthly Safety Audit (operations) - description: Standard workflow to share monthly safety audit within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly safety audit records. - - Review and share the monthly safety audit. - - Send a status update to the operations team chat space. -- name: operations-share-urgent-safety-audit-2452 - title: Share Urgent Safety Audit (operations) - description: Standard workflow to share urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent safety audit data. - - Apply operations policies to share the safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-share-secure-safety-audit-2453 - title: Share Secure Safety Audit (operations) - description: Standard workflow to share secure safety audit within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure safety audit requests. - - Execute share procedure on the designated safety audit. - - Archive results in a secure Drive folder. -- name: operations-publish-weekly-vendor-2454 - title: Publish Weekly Vendor (operations) - description: Standard workflow to publish weekly vendor within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly vendor records. - - Review and publish the weekly vendor. - - Notify stakeholders via email. -- name: operations-publish-monthly-vendor-2455 - title: Publish Monthly Vendor (operations) - description: Standard workflow to publish monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly vendor data. - - Apply operations policies to publish the vendor. - - Send a status update to the operations team chat space. -- name: operations-publish-urgent-vendor-2456 - title: Publish Urgent Vendor (operations) - description: Standard workflow to publish urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent vendor requests. - - Execute publish procedure on the designated vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-publish-secure-vendor-2457 - title: Publish Secure Vendor (operations) - description: Standard workflow to publish secure vendor within the operations department. - category: operations - services: - - chat - steps: - - Search for secure vendor records. - - Review and publish the secure vendor. - - Archive results in a secure Drive folder. -- name: operations-publish-weekly-facility-2458 - title: Publish Weekly Facility (operations) - description: Standard workflow to publish weekly facility within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly facility data. - - Apply operations policies to publish the facility. - - Notify stakeholders via email. -- name: operations-publish-monthly-facility-2459 - title: Publish Monthly Facility (operations) - description: Standard workflow to publish monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly facility requests. - - Execute publish procedure on the designated facility. - - Send a status update to the operations team chat space. -- name: operations-publish-urgent-facility-2460 - title: Publish Urgent Facility (operations) - description: Standard workflow to publish urgent facility within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent facility records. - - Review and publish the urgent facility. - - Log completion in the master tracking spreadsheet. -- name: operations-publish-secure-facility-2461 - title: Publish Secure Facility (operations) - description: Standard workflow to publish secure facility within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure facility data. - - Apply operations policies to publish the facility. - - Archive results in a secure Drive folder. -- name: operations-publish-weekly-inventory-2462 - title: Publish Weekly Inventory (operations) - description: Standard workflow to publish weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly inventory requests. - - Execute publish procedure on the designated inventory. - - Notify stakeholders via email. -- name: operations-publish-monthly-inventory-2463 - title: Publish Monthly Inventory (operations) - description: Standard workflow to publish monthly inventory within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly inventory records. - - Review and publish the monthly inventory. - - Send a status update to the operations team chat space. -- name: operations-publish-urgent-inventory-2464 - title: Publish Urgent Inventory (operations) - description: Standard workflow to publish urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent inventory data. - - Apply operations policies to publish the inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-publish-secure-inventory-2465 - title: Publish Secure Inventory (operations) - description: Standard workflow to publish secure inventory within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure inventory requests. - - Execute publish procedure on the designated inventory. - - Archive results in a secure Drive folder. -- name: operations-publish-weekly-shipping-manifest-2466 - title: Publish Weekly Shipping Manifest (operations) - description: Standard workflow to publish weekly shipping manifest within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly shipping manifest records. - - Review and publish the weekly shipping manifest. - - Notify stakeholders via email. -- name: operations-publish-monthly-shipping-manifest-2467 - title: Publish Monthly Shipping Manifest (operations) - description: Standard workflow to publish monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly shipping manifest data. - - Apply operations policies to publish the shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-publish-urgent-shipping-manifest-2468 - title: Publish Urgent Shipping Manifest (operations) - description: Standard workflow to publish urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent shipping manifest requests. - - Execute publish procedure on the designated shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-publish-secure-shipping-manifest-2469 - title: Publish Secure Shipping Manifest (operations) - description: Standard workflow to publish secure shipping manifest within the operations department. - category: operations - services: - - chat - steps: - - Search for secure shipping manifest records. - - Review and publish the secure shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-publish-weekly-safety-audit-2470 - title: Publish Weekly Safety Audit (operations) - description: Standard workflow to publish weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly safety audit data. - - Apply operations policies to publish the safety audit. - - Notify stakeholders via email. -- name: operations-publish-monthly-safety-audit-2471 - title: Publish Monthly Safety Audit (operations) - description: Standard workflow to publish monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly safety audit requests. - - Execute publish procedure on the designated safety audit. - - Send a status update to the operations team chat space. -- name: operations-publish-urgent-safety-audit-2472 - title: Publish Urgent Safety Audit (operations) - description: Standard workflow to publish urgent safety audit within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent safety audit records. - - Review and publish the urgent safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-publish-secure-safety-audit-2473 - title: Publish Secure Safety Audit (operations) - description: Standard workflow to publish secure safety audit within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure safety audit data. - - Apply operations policies to publish the safety audit. - - Archive results in a secure Drive folder. -- name: operations-archive-weekly-vendor-2474 - title: Archive Weekly Vendor (operations) - description: Standard workflow to archive weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly vendor requests. - - Execute archive procedure on the designated vendor. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly vendor targets before running. -- name: operations-archive-monthly-vendor-2475 - title: Archive Monthly Vendor (operations) - description: Standard workflow to archive monthly vendor within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly vendor records. - - Review and archive the monthly vendor. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly vendor targets before running. -- name: operations-archive-urgent-vendor-2476 - title: Archive Urgent Vendor (operations) - description: Standard workflow to archive urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent vendor data. - - Apply operations policies to archive the vendor. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent vendor targets before running. -- name: operations-archive-secure-vendor-2477 - title: Archive Secure Vendor (operations) - description: Standard workflow to archive secure vendor within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure vendor requests. - - Execute archive procedure on the designated vendor. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure vendor targets before running. -- name: operations-archive-weekly-facility-2478 - title: Archive Weekly Facility (operations) - description: Standard workflow to archive weekly facility within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly facility records. - - Review and archive the weekly facility. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly facility targets before running. -- name: operations-archive-monthly-facility-2479 - title: Archive Monthly Facility (operations) - description: Standard workflow to archive monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly facility data. - - Apply operations policies to archive the facility. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly facility targets before running. -- name: operations-archive-urgent-facility-2480 - title: Archive Urgent Facility (operations) - description: Standard workflow to archive urgent facility within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent facility requests. - - Execute archive procedure on the designated facility. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent facility targets before running. -- name: operations-archive-secure-facility-2481 - title: Archive Secure Facility (operations) - description: Standard workflow to archive secure facility within the operations department. - category: operations - services: - - chat - steps: - - Search for secure facility records. - - Review and archive the secure facility. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure facility targets before running. -- name: operations-archive-weekly-inventory-2482 - title: Archive Weekly Inventory (operations) - description: Standard workflow to archive weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly inventory data. - - Apply operations policies to archive the inventory. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly inventory targets before running. -- name: operations-archive-monthly-inventory-2483 - title: Archive Monthly Inventory (operations) - description: Standard workflow to archive monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly inventory requests. - - Execute archive procedure on the designated inventory. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly inventory targets before running. -- name: operations-archive-urgent-inventory-2484 - title: Archive Urgent Inventory (operations) - description: Standard workflow to archive urgent inventory within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent inventory records. - - Review and archive the urgent inventory. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent inventory targets before running. -- name: operations-archive-secure-inventory-2485 - title: Archive Secure Inventory (operations) - description: Standard workflow to archive secure inventory within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure inventory data. - - Apply operations policies to archive the inventory. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure inventory targets before running. -- name: operations-archive-weekly-shipping-manifest-2486 - title: Archive Weekly Shipping Manifest (operations) - description: Standard workflow to archive weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly shipping manifest requests. - - Execute archive procedure on the designated shipping manifest. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly shipping manifest targets before running. -- name: operations-archive-monthly-shipping-manifest-2487 - title: Archive Monthly Shipping Manifest (operations) - description: Standard workflow to archive monthly shipping manifest within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly shipping manifest records. - - Review and archive the monthly shipping manifest. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly shipping manifest targets before running. -- name: operations-archive-urgent-shipping-manifest-2488 - title: Archive Urgent Shipping Manifest (operations) - description: Standard workflow to archive urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent shipping manifest data. - - Apply operations policies to archive the shipping manifest. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent shipping manifest targets before running. -- name: operations-archive-secure-shipping-manifest-2489 - title: Archive Secure Shipping Manifest (operations) - description: Standard workflow to archive secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure shipping manifest requests. - - Execute archive procedure on the designated shipping manifest. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure shipping manifest targets before running. -- name: operations-archive-weekly-safety-audit-2490 - title: Archive Weekly Safety Audit (operations) - description: Standard workflow to archive weekly safety audit within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly safety audit records. - - Review and archive the weekly safety audit. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly safety audit targets before running. -- name: operations-archive-monthly-safety-audit-2491 - title: Archive Monthly Safety Audit (operations) - description: Standard workflow to archive monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly safety audit data. - - Apply operations policies to archive the safety audit. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly safety audit targets before running. -- name: operations-archive-urgent-safety-audit-2492 - title: Archive Urgent Safety Audit (operations) - description: Standard workflow to archive urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent safety audit requests. - - Execute archive procedure on the designated safety audit. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent safety audit targets before running. -- name: operations-archive-secure-safety-audit-2493 - title: Archive Secure Safety Audit (operations) - description: Standard workflow to archive secure safety audit within the operations department. - category: operations - services: - - chat - steps: - - Search for secure safety audit records. - - Review and archive the secure safety audit. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure safety audit targets before running. -- name: operations-export-weekly-vendor-2494 - title: Export Weekly Vendor (operations) - description: Standard workflow to export weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly vendor data. - - Apply operations policies to export the vendor. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly vendor targets before running. -- name: operations-export-monthly-vendor-2495 - title: Export Monthly Vendor (operations) - description: Standard workflow to export monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly vendor requests. - - Execute export procedure on the designated vendor. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly vendor targets before running. -- name: operations-export-urgent-vendor-2496 - title: Export Urgent Vendor (operations) - description: Standard workflow to export urgent vendor within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent vendor records. - - Review and export the urgent vendor. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent vendor targets before running. -- name: operations-export-secure-vendor-2497 - title: Export Secure Vendor (operations) - description: Standard workflow to export secure vendor within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure vendor data. - - Apply operations policies to export the vendor. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure vendor targets before running. -- name: operations-export-weekly-facility-2498 - title: Export Weekly Facility (operations) - description: Standard workflow to export weekly facility within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly facility requests. - - Execute export procedure on the designated facility. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly facility targets before running. -- name: operations-export-monthly-facility-2499 - title: Export Monthly Facility (operations) - description: Standard workflow to export monthly facility within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly facility records. - - Review and export the monthly facility. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly facility targets before running. -- name: operations-export-urgent-facility-2500 - title: Export Urgent Facility (operations) - description: Standard workflow to export urgent facility within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent facility data. - - Apply operations policies to export the facility. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent facility targets before running. -- name: operations-export-secure-facility-2501 - title: Export Secure Facility (operations) - description: Standard workflow to export secure facility within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure facility requests. - - Execute export procedure on the designated facility. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure facility targets before running. -- name: operations-export-weekly-inventory-2502 - title: Export Weekly Inventory (operations) - description: Standard workflow to export weekly inventory within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly inventory records. - - Review and export the weekly inventory. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly inventory targets before running. -- name: operations-export-monthly-inventory-2503 - title: Export Monthly Inventory (operations) - description: Standard workflow to export monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly inventory data. - - Apply operations policies to export the inventory. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly inventory targets before running. -- name: operations-export-urgent-inventory-2504 - title: Export Urgent Inventory (operations) - description: Standard workflow to export urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent inventory requests. - - Execute export procedure on the designated inventory. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent inventory targets before running. -- name: operations-export-secure-inventory-2505 - title: Export Secure Inventory (operations) - description: Standard workflow to export secure inventory within the operations department. - category: operations - services: - - chat - steps: - - Search for secure inventory records. - - Review and export the secure inventory. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure inventory targets before running. -- name: operations-export-weekly-shipping-manifest-2506 - title: Export Weekly Shipping Manifest (operations) - description: Standard workflow to export weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly shipping manifest data. - - Apply operations policies to export the shipping manifest. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly shipping manifest targets before running. -- name: operations-export-monthly-shipping-manifest-2507 - title: Export Monthly Shipping Manifest (operations) - description: Standard workflow to export monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly shipping manifest requests. - - Execute export procedure on the designated shipping manifest. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly shipping manifest targets before running. -- name: operations-export-urgent-shipping-manifest-2508 - title: Export Urgent Shipping Manifest (operations) - description: Standard workflow to export urgent shipping manifest within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent shipping manifest records. - - Review and export the urgent shipping manifest. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent shipping manifest targets before running. -- name: operations-export-secure-shipping-manifest-2509 - title: Export Secure Shipping Manifest (operations) - description: Standard workflow to export secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure shipping manifest data. - - Apply operations policies to export the shipping manifest. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure shipping manifest targets before running. -- name: operations-export-weekly-safety-audit-2510 - title: Export Weekly Safety Audit (operations) - description: Standard workflow to export weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly safety audit requests. - - Execute export procedure on the designated safety audit. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly safety audit targets before running. -- name: operations-export-monthly-safety-audit-2511 - title: Export Monthly Safety Audit (operations) - description: Standard workflow to export monthly safety audit within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly safety audit records. - - Review and export the monthly safety audit. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly safety audit targets before running. -- name: operations-export-urgent-safety-audit-2512 - title: Export Urgent Safety Audit (operations) - description: Standard workflow to export urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent safety audit data. - - Apply operations policies to export the safety audit. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent safety audit targets before running. -- name: operations-export-secure-safety-audit-2513 - title: Export Secure Safety Audit (operations) - description: Standard workflow to export secure safety audit within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure safety audit requests. - - Execute export procedure on the designated safety audit. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure safety audit targets before running. -- name: operations-import-weekly-vendor-2514 - title: Import Weekly Vendor (operations) - description: Standard workflow to import weekly vendor within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly vendor records. - - Review and import the weekly vendor. - - Notify stakeholders via email. -- name: operations-import-monthly-vendor-2515 - title: Import Monthly Vendor (operations) - description: Standard workflow to import monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly vendor data. - - Apply operations policies to import the vendor. - - Send a status update to the operations team chat space. -- name: operations-import-urgent-vendor-2516 - title: Import Urgent Vendor (operations) - description: Standard workflow to import urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent vendor requests. - - Execute import procedure on the designated vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-import-secure-vendor-2517 - title: Import Secure Vendor (operations) - description: Standard workflow to import secure vendor within the operations department. - category: operations - services: - - chat - steps: - - Search for secure vendor records. - - Review and import the secure vendor. - - Archive results in a secure Drive folder. -- name: operations-import-weekly-facility-2518 - title: Import Weekly Facility (operations) - description: Standard workflow to import weekly facility within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly facility data. - - Apply operations policies to import the facility. - - Notify stakeholders via email. -- name: operations-import-monthly-facility-2519 - title: Import Monthly Facility (operations) - description: Standard workflow to import monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly facility requests. - - Execute import procedure on the designated facility. - - Send a status update to the operations team chat space. -- name: operations-import-urgent-facility-2520 - title: Import Urgent Facility (operations) - description: Standard workflow to import urgent facility within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent facility records. - - Review and import the urgent facility. - - Log completion in the master tracking spreadsheet. -- name: operations-import-secure-facility-2521 - title: Import Secure Facility (operations) - description: Standard workflow to import secure facility within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure facility data. - - Apply operations policies to import the facility. - - Archive results in a secure Drive folder. -- name: operations-import-weekly-inventory-2522 - title: Import Weekly Inventory (operations) - description: Standard workflow to import weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly inventory requests. - - Execute import procedure on the designated inventory. - - Notify stakeholders via email. -- name: operations-import-monthly-inventory-2523 - title: Import Monthly Inventory (operations) - description: Standard workflow to import monthly inventory within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly inventory records. - - Review and import the monthly inventory. - - Send a status update to the operations team chat space. -- name: operations-import-urgent-inventory-2524 - title: Import Urgent Inventory (operations) - description: Standard workflow to import urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent inventory data. - - Apply operations policies to import the inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-import-secure-inventory-2525 - title: Import Secure Inventory (operations) - description: Standard workflow to import secure inventory within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure inventory requests. - - Execute import procedure on the designated inventory. - - Archive results in a secure Drive folder. -- name: operations-import-weekly-shipping-manifest-2526 - title: Import Weekly Shipping Manifest (operations) - description: Standard workflow to import weekly shipping manifest within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly shipping manifest records. - - Review and import the weekly shipping manifest. - - Notify stakeholders via email. -- name: operations-import-monthly-shipping-manifest-2527 - title: Import Monthly Shipping Manifest (operations) - description: Standard workflow to import monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly shipping manifest data. - - Apply operations policies to import the shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-import-urgent-shipping-manifest-2528 - title: Import Urgent Shipping Manifest (operations) - description: Standard workflow to import urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent shipping manifest requests. - - Execute import procedure on the designated shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-import-secure-shipping-manifest-2529 - title: Import Secure Shipping Manifest (operations) - description: Standard workflow to import secure shipping manifest within the operations department. - category: operations - services: - - chat - steps: - - Search for secure shipping manifest records. - - Review and import the secure shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-import-weekly-safety-audit-2530 - title: Import Weekly Safety Audit (operations) - description: Standard workflow to import weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly safety audit data. - - Apply operations policies to import the safety audit. - - Notify stakeholders via email. -- name: operations-import-monthly-safety-audit-2531 - title: Import Monthly Safety Audit (operations) - description: Standard workflow to import monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly safety audit requests. - - Execute import procedure on the designated safety audit. - - Send a status update to the operations team chat space. -- name: operations-import-urgent-safety-audit-2532 - title: Import Urgent Safety Audit (operations) - description: Standard workflow to import urgent safety audit within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent safety audit records. - - Review and import the urgent safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-import-secure-safety-audit-2533 - title: Import Secure Safety Audit (operations) - description: Standard workflow to import secure safety audit within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure safety audit data. - - Apply operations policies to import the safety audit. - - Archive results in a secure Drive folder. -- name: operations-sync-weekly-vendor-2534 - title: Sync Weekly Vendor (operations) - description: Standard workflow to sync weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly vendor requests. - - Execute sync procedure on the designated vendor. - - Notify stakeholders via email. -- name: operations-sync-monthly-vendor-2535 - title: Sync Monthly Vendor (operations) - description: Standard workflow to sync monthly vendor within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly vendor records. - - Review and sync the monthly vendor. - - Send a status update to the operations team chat space. -- name: operations-sync-urgent-vendor-2536 - title: Sync Urgent Vendor (operations) - description: Standard workflow to sync urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent vendor data. - - Apply operations policies to sync the vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-sync-secure-vendor-2537 - title: Sync Secure Vendor (operations) - description: Standard workflow to sync secure vendor within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure vendor requests. - - Execute sync procedure on the designated vendor. - - Archive results in a secure Drive folder. -- name: operations-sync-weekly-facility-2538 - title: Sync Weekly Facility (operations) - description: Standard workflow to sync weekly facility within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly facility records. - - Review and sync the weekly facility. - - Notify stakeholders via email. -- name: operations-sync-monthly-facility-2539 - title: Sync Monthly Facility (operations) - description: Standard workflow to sync monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly facility data. - - Apply operations policies to sync the facility. - - Send a status update to the operations team chat space. -- name: operations-sync-urgent-facility-2540 - title: Sync Urgent Facility (operations) - description: Standard workflow to sync urgent facility within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent facility requests. - - Execute sync procedure on the designated facility. - - Log completion in the master tracking spreadsheet. -- name: operations-sync-secure-facility-2541 - title: Sync Secure Facility (operations) - description: Standard workflow to sync secure facility within the operations department. - category: operations - services: - - chat - steps: - - Search for secure facility records. - - Review and sync the secure facility. - - Archive results in a secure Drive folder. -- name: operations-sync-weekly-inventory-2542 - title: Sync Weekly Inventory (operations) - description: Standard workflow to sync weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly inventory data. - - Apply operations policies to sync the inventory. - - Notify stakeholders via email. -- name: operations-sync-monthly-inventory-2543 - title: Sync Monthly Inventory (operations) - description: Standard workflow to sync monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly inventory requests. - - Execute sync procedure on the designated inventory. - - Send a status update to the operations team chat space. -- name: operations-sync-urgent-inventory-2544 - title: Sync Urgent Inventory (operations) - description: Standard workflow to sync urgent inventory within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent inventory records. - - Review and sync the urgent inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-sync-secure-inventory-2545 - title: Sync Secure Inventory (operations) - description: Standard workflow to sync secure inventory within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure inventory data. - - Apply operations policies to sync the inventory. - - Archive results in a secure Drive folder. -- name: operations-sync-weekly-shipping-manifest-2546 - title: Sync Weekly Shipping Manifest (operations) - description: Standard workflow to sync weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly shipping manifest requests. - - Execute sync procedure on the designated shipping manifest. - - Notify stakeholders via email. -- name: operations-sync-monthly-shipping-manifest-2547 - title: Sync Monthly Shipping Manifest (operations) - description: Standard workflow to sync monthly shipping manifest within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly shipping manifest records. - - Review and sync the monthly shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-sync-urgent-shipping-manifest-2548 - title: Sync Urgent Shipping Manifest (operations) - description: Standard workflow to sync urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent shipping manifest data. - - Apply operations policies to sync the shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-sync-secure-shipping-manifest-2549 - title: Sync Secure Shipping Manifest (operations) - description: Standard workflow to sync secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure shipping manifest requests. - - Execute sync procedure on the designated shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-sync-weekly-safety-audit-2550 - title: Sync Weekly Safety Audit (operations) - description: Standard workflow to sync weekly safety audit within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly safety audit records. - - Review and sync the weekly safety audit. - - Notify stakeholders via email. -- name: operations-sync-monthly-safety-audit-2551 - title: Sync Monthly Safety Audit (operations) - description: Standard workflow to sync monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly safety audit data. - - Apply operations policies to sync the safety audit. - - Send a status update to the operations team chat space. -- name: operations-sync-urgent-safety-audit-2552 - title: Sync Urgent Safety Audit (operations) - description: Standard workflow to sync urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent safety audit requests. - - Execute sync procedure on the designated safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-sync-secure-safety-audit-2553 - title: Sync Secure Safety Audit (operations) - description: Standard workflow to sync secure safety audit within the operations department. - category: operations - services: - - chat - steps: - - Search for secure safety audit records. - - Review and sync the secure safety audit. - - Archive results in a secure Drive folder. -- name: operations-migrate-weekly-vendor-2554 - title: Migrate Weekly Vendor (operations) - description: Standard workflow to migrate weekly vendor within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly vendor data. - - Apply operations policies to migrate the vendor. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly vendor targets before running. -- name: operations-migrate-monthly-vendor-2555 - title: Migrate Monthly Vendor (operations) - description: Standard workflow to migrate monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly vendor requests. - - Execute migrate procedure on the designated vendor. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly vendor targets before running. -- name: operations-migrate-urgent-vendor-2556 - title: Migrate Urgent Vendor (operations) - description: Standard workflow to migrate urgent vendor within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent vendor records. - - Review and migrate the urgent vendor. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent vendor targets before running. -- name: operations-migrate-secure-vendor-2557 - title: Migrate Secure Vendor (operations) - description: Standard workflow to migrate secure vendor within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure vendor data. - - Apply operations policies to migrate the vendor. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure vendor targets before running. -- name: operations-migrate-weekly-facility-2558 - title: Migrate Weekly Facility (operations) - description: Standard workflow to migrate weekly facility within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly facility requests. - - Execute migrate procedure on the designated facility. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly facility targets before running. -- name: operations-migrate-monthly-facility-2559 - title: Migrate Monthly Facility (operations) - description: Standard workflow to migrate monthly facility within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly facility records. - - Review and migrate the monthly facility. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly facility targets before running. -- name: operations-migrate-urgent-facility-2560 - title: Migrate Urgent Facility (operations) - description: Standard workflow to migrate urgent facility within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent facility data. - - Apply operations policies to migrate the facility. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent facility targets before running. -- name: operations-migrate-secure-facility-2561 - title: Migrate Secure Facility (operations) - description: Standard workflow to migrate secure facility within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure facility requests. - - Execute migrate procedure on the designated facility. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure facility targets before running. -- name: operations-migrate-weekly-inventory-2562 - title: Migrate Weekly Inventory (operations) - description: Standard workflow to migrate weekly inventory within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly inventory records. - - Review and migrate the weekly inventory. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly inventory targets before running. -- name: operations-migrate-monthly-inventory-2563 - title: Migrate Monthly Inventory (operations) - description: Standard workflow to migrate monthly inventory within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly inventory data. - - Apply operations policies to migrate the inventory. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly inventory targets before running. -- name: operations-migrate-urgent-inventory-2564 - title: Migrate Urgent Inventory (operations) - description: Standard workflow to migrate urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent inventory requests. - - Execute migrate procedure on the designated inventory. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent inventory targets before running. -- name: operations-migrate-secure-inventory-2565 - title: Migrate Secure Inventory (operations) - description: Standard workflow to migrate secure inventory within the operations department. - category: operations - services: - - chat - steps: - - Search for secure inventory records. - - Review and migrate the secure inventory. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure inventory targets before running. -- name: operations-migrate-weekly-shipping-manifest-2566 - title: Migrate Weekly Shipping Manifest (operations) - description: Standard workflow to migrate weekly shipping manifest within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly shipping manifest data. - - Apply operations policies to migrate the shipping manifest. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly shipping manifest targets before running. -- name: operations-migrate-monthly-shipping-manifest-2567 - title: Migrate Monthly Shipping Manifest (operations) - description: Standard workflow to migrate monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly shipping manifest requests. - - Execute migrate procedure on the designated shipping manifest. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly shipping manifest targets before running. -- name: operations-migrate-urgent-shipping-manifest-2568 - title: Migrate Urgent Shipping Manifest (operations) - description: Standard workflow to migrate urgent shipping manifest within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent shipping manifest records. - - Review and migrate the urgent shipping manifest. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent shipping manifest targets before running. -- name: operations-migrate-secure-shipping-manifest-2569 - title: Migrate Secure Shipping Manifest (operations) - description: Standard workflow to migrate secure shipping manifest within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure shipping manifest data. - - Apply operations policies to migrate the shipping manifest. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure shipping manifest targets before running. -- name: operations-migrate-weekly-safety-audit-2570 - title: Migrate Weekly Safety Audit (operations) - description: Standard workflow to migrate weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly safety audit requests. - - Execute migrate procedure on the designated safety audit. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly safety audit targets before running. -- name: operations-migrate-monthly-safety-audit-2571 - title: Migrate Monthly Safety Audit (operations) - description: Standard workflow to migrate monthly safety audit within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly safety audit records. - - Review and migrate the monthly safety audit. - - Send a status update to the operations team chat space. - caution: Action involves bulk data manipulation. Confirm monthly safety audit targets before running. -- name: operations-migrate-urgent-safety-audit-2572 - title: Migrate Urgent Safety Audit (operations) - description: Standard workflow to migrate urgent safety audit within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent safety audit data. - - Apply operations policies to migrate the safety audit. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent safety audit targets before running. -- name: operations-migrate-secure-safety-audit-2573 - title: Migrate Secure Safety Audit (operations) - description: Standard workflow to migrate secure safety audit within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure safety audit requests. - - Execute migrate procedure on the designated safety audit. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure safety audit targets before running. -- name: operations-backup-weekly-vendor-2574 - title: Backup Weekly Vendor (operations) - description: Standard workflow to backup weekly vendor within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly vendor records. - - Review and backup the weekly vendor. - - Notify stakeholders via email. -- name: operations-backup-monthly-vendor-2575 - title: Backup Monthly Vendor (operations) - description: Standard workflow to backup monthly vendor within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly vendor data. - - Apply operations policies to backup the vendor. - - Send a status update to the operations team chat space. -- name: operations-backup-urgent-vendor-2576 - title: Backup Urgent Vendor (operations) - description: Standard workflow to backup urgent vendor within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent vendor requests. - - Execute backup procedure on the designated vendor. - - Log completion in the master tracking spreadsheet. -- name: operations-backup-secure-vendor-2577 - title: Backup Secure Vendor (operations) - description: Standard workflow to backup secure vendor within the operations department. - category: operations - services: - - chat - steps: - - Search for secure vendor records. - - Review and backup the secure vendor. - - Archive results in a secure Drive folder. -- name: operations-backup-weekly-facility-2578 - title: Backup Weekly Facility (operations) - description: Standard workflow to backup weekly facility within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly facility data. - - Apply operations policies to backup the facility. - - Notify stakeholders via email. -- name: operations-backup-monthly-facility-2579 - title: Backup Monthly Facility (operations) - description: Standard workflow to backup monthly facility within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly facility requests. - - Execute backup procedure on the designated facility. - - Send a status update to the operations team chat space. -- name: operations-backup-urgent-facility-2580 - title: Backup Urgent Facility (operations) - description: Standard workflow to backup urgent facility within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent facility records. - - Review and backup the urgent facility. - - Log completion in the master tracking spreadsheet. -- name: operations-backup-secure-facility-2581 - title: Backup Secure Facility (operations) - description: Standard workflow to backup secure facility within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure facility data. - - Apply operations policies to backup the facility. - - Archive results in a secure Drive folder. -- name: operations-backup-weekly-inventory-2582 - title: Backup Weekly Inventory (operations) - description: Standard workflow to backup weekly inventory within the operations department. - category: operations - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly inventory requests. - - Execute backup procedure on the designated inventory. - - Notify stakeholders via email. -- name: operations-backup-monthly-inventory-2583 - title: Backup Monthly Inventory (operations) - description: Standard workflow to backup monthly inventory within the operations department. - category: operations - services: - - sheets - steps: - - Search for monthly inventory records. - - Review and backup the monthly inventory. - - Send a status update to the operations team chat space. -- name: operations-backup-urgent-inventory-2584 - title: Backup Urgent Inventory (operations) - description: Standard workflow to backup urgent inventory within the operations department. - category: operations - services: - - calendar - - chat - steps: - - Fetch latest urgent inventory data. - - Apply operations policies to backup the inventory. - - Log completion in the master tracking spreadsheet. -- name: operations-backup-secure-inventory-2585 - title: Backup Secure Inventory (operations) - description: Standard workflow to backup secure inventory within the operations department. - category: operations - services: - - chat - - drive - - sheets - steps: - - Check system for pending secure inventory requests. - - Execute backup procedure on the designated inventory. - - Archive results in a secure Drive folder. -- name: operations-backup-weekly-shipping-manifest-2586 - title: Backup Weekly Shipping Manifest (operations) - description: Standard workflow to backup weekly shipping manifest within the operations department. - category: operations - services: - - drive - steps: - - Search for weekly shipping manifest records. - - Review and backup the weekly shipping manifest. - - Notify stakeholders via email. -- name: operations-backup-monthly-shipping-manifest-2587 - title: Backup Monthly Shipping Manifest (operations) - description: Standard workflow to backup monthly shipping manifest within the operations department. - category: operations - services: - - sheets - - calendar - steps: - - Fetch latest monthly shipping manifest data. - - Apply operations policies to backup the shipping manifest. - - Send a status update to the operations team chat space. -- name: operations-backup-urgent-shipping-manifest-2588 - title: Backup Urgent Shipping Manifest (operations) - description: Standard workflow to backup urgent shipping manifest within the operations department. - category: operations - services: - - calendar - - chat - - drive - steps: - - Check system for pending urgent shipping manifest requests. - - Execute backup procedure on the designated shipping manifest. - - Log completion in the master tracking spreadsheet. -- name: operations-backup-secure-shipping-manifest-2589 - title: Backup Secure Shipping Manifest (operations) - description: Standard workflow to backup secure shipping manifest within the operations department. - category: operations - services: - - chat - steps: - - Search for secure shipping manifest records. - - Review and backup the secure shipping manifest. - - Archive results in a secure Drive folder. -- name: operations-backup-weekly-safety-audit-2590 - title: Backup Weekly Safety Audit (operations) - description: Standard workflow to backup weekly safety audit within the operations department. - category: operations - services: - - drive - - sheets - steps: - - Fetch latest weekly safety audit data. - - Apply operations policies to backup the safety audit. - - Notify stakeholders via email. -- name: operations-backup-monthly-safety-audit-2591 - title: Backup Monthly Safety Audit (operations) - description: Standard workflow to backup monthly safety audit within the operations department. - category: operations - services: - - sheets - - calendar - - chat - steps: - - Check system for pending monthly safety audit requests. - - Execute backup procedure on the designated safety audit. - - Send a status update to the operations team chat space. -- name: operations-backup-urgent-safety-audit-2592 - title: Backup Urgent Safety Audit (operations) - description: Standard workflow to backup urgent safety audit within the operations department. - category: operations - services: - - calendar - steps: - - Search for urgent safety audit records. - - Review and backup the urgent safety audit. - - Log completion in the master tracking spreadsheet. -- name: operations-backup-secure-safety-audit-2593 - title: Backup Secure Safety Audit (operations) - description: Standard workflow to backup secure safety audit within the operations department. - category: operations - services: - - chat - - drive - steps: - - Fetch latest secure safety audit data. - - Apply operations policies to backup the safety audit. - - Archive results in a secure Drive folder. -- name: product-audit-weekly-roadmap-2594 - title: Audit Weekly Roadmap (product) - description: Standard workflow to audit weekly roadmap within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly roadmap requests. - - Execute audit procedure on the designated roadmap. - - Notify stakeholders via email. -- name: product-audit-monthly-roadmap-2595 - title: Audit Monthly Roadmap (product) - description: Standard workflow to audit monthly roadmap within the product department. - category: product - services: - - sheets - steps: - - Search for monthly roadmap records. - - Review and audit the monthly roadmap. - - Send a status update to the product team chat space. -- name: product-audit-urgent-roadmap-2596 - title: Audit Urgent Roadmap (product) - description: Standard workflow to audit urgent roadmap within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent roadmap data. - - Apply product policies to audit the roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-audit-secure-roadmap-2597 - title: Audit Secure Roadmap (product) - description: Standard workflow to audit secure roadmap within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure roadmap requests. - - Execute audit procedure on the designated roadmap. - - Archive results in a secure Drive folder. -- name: product-audit-weekly-feature-spec-2598 - title: Audit Weekly Feature Spec (product) - description: Standard workflow to audit weekly feature spec within the product department. - category: product - services: - - drive - steps: - - Search for weekly feature spec records. - - Review and audit the weekly feature spec. - - Notify stakeholders via email. -- name: product-audit-monthly-feature-spec-2599 - title: Audit Monthly Feature Spec (product) - description: Standard workflow to audit monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly feature spec data. - - Apply product policies to audit the feature spec. - - Send a status update to the product team chat space. -- name: product-audit-urgent-feature-spec-2600 - title: Audit Urgent Feature Spec (product) - description: Standard workflow to audit urgent feature spec within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent feature spec requests. - - Execute audit procedure on the designated feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-audit-secure-feature-spec-2601 - title: Audit Secure Feature Spec (product) - description: Standard workflow to audit secure feature spec within the product department. - category: product - services: - - docs - steps: - - Search for secure feature spec records. - - Review and audit the secure feature spec. - - Archive results in a secure Drive folder. -- name: product-audit-weekly-backlog-2602 - title: Audit Weekly Backlog (product) - description: Standard workflow to audit weekly backlog within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly backlog data. - - Apply product policies to audit the backlog. - - Notify stakeholders via email. -- name: product-audit-monthly-backlog-2603 - title: Audit Monthly Backlog (product) - description: Standard workflow to audit monthly backlog within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly backlog requests. - - Execute audit procedure on the designated backlog. - - Send a status update to the product team chat space. -- name: product-audit-urgent-backlog-2604 - title: Audit Urgent Backlog (product) - description: Standard workflow to audit urgent backlog within the product department. - category: product - services: - - calendar - steps: - - Search for urgent backlog records. - - Review and audit the urgent backlog. - - Log completion in the master tracking spreadsheet. -- name: product-audit-secure-backlog-2605 - title: Audit Secure Backlog (product) - description: Standard workflow to audit secure backlog within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure backlog data. - - Apply product policies to audit the backlog. - - Archive results in a secure Drive folder. -- name: product-audit-weekly-user-interview-2606 - title: Audit Weekly User Interview (product) - description: Standard workflow to audit weekly user interview within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly user interview requests. - - Execute audit procedure on the designated user interview. - - Notify stakeholders via email. -- name: product-audit-monthly-user-interview-2607 - title: Audit Monthly User Interview (product) - description: Standard workflow to audit monthly user interview within the product department. - category: product - services: - - sheets - steps: - - Search for monthly user interview records. - - Review and audit the monthly user interview. - - Send a status update to the product team chat space. -- name: product-audit-urgent-user-interview-2608 - title: Audit Urgent User Interview (product) - description: Standard workflow to audit urgent user interview within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent user interview data. - - Apply product policies to audit the user interview. - - Log completion in the master tracking spreadsheet. -- name: product-audit-secure-user-interview-2609 - title: Audit Secure User Interview (product) - description: Standard workflow to audit secure user interview within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure user interview requests. - - Execute audit procedure on the designated user interview. - - Archive results in a secure Drive folder. -- name: product-audit-weekly-release-note-2610 - title: Audit Weekly Release Note (product) - description: Standard workflow to audit weekly release note within the product department. - category: product - services: - - drive - steps: - - Search for weekly release note records. - - Review and audit the weekly release note. - - Notify stakeholders via email. -- name: product-audit-monthly-release-note-2611 - title: Audit Monthly Release Note (product) - description: Standard workflow to audit monthly release note within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly release note data. - - Apply product policies to audit the release note. - - Send a status update to the product team chat space. -- name: product-audit-urgent-release-note-2612 - title: Audit Urgent Release Note (product) - description: Standard workflow to audit urgent release note within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent release note requests. - - Execute audit procedure on the designated release note. - - Log completion in the master tracking spreadsheet. -- name: product-audit-secure-release-note-2613 - title: Audit Secure Release Note (product) - description: Standard workflow to audit secure release note within the product department. - category: product - services: - - docs - steps: - - Search for secure release note records. - - Review and audit the secure release note. - - Archive results in a secure Drive folder. -- name: product-onboard-weekly-roadmap-2614 - title: Onboard Weekly Roadmap (product) - description: Standard workflow to onboard weekly roadmap within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly roadmap data. - - Apply product policies to onboard the roadmap. - - Notify stakeholders via email. -- name: product-onboard-monthly-roadmap-2615 - title: Onboard Monthly Roadmap (product) - description: Standard workflow to onboard monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly roadmap requests. - - Execute onboard procedure on the designated roadmap. - - Send a status update to the product team chat space. -- name: product-onboard-urgent-roadmap-2616 - title: Onboard Urgent Roadmap (product) - description: Standard workflow to onboard urgent roadmap within the product department. - category: product - services: - - calendar - steps: - - Search for urgent roadmap records. - - Review and onboard the urgent roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-onboard-secure-roadmap-2617 - title: Onboard Secure Roadmap (product) - description: Standard workflow to onboard secure roadmap within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure roadmap data. - - Apply product policies to onboard the roadmap. - - Archive results in a secure Drive folder. -- name: product-onboard-weekly-feature-spec-2618 - title: Onboard Weekly Feature Spec (product) - description: Standard workflow to onboard weekly feature spec within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly feature spec requests. - - Execute onboard procedure on the designated feature spec. - - Notify stakeholders via email. -- name: product-onboard-monthly-feature-spec-2619 - title: Onboard Monthly Feature Spec (product) - description: Standard workflow to onboard monthly feature spec within the product department. - category: product - services: - - sheets - steps: - - Search for monthly feature spec records. - - Review and onboard the monthly feature spec. - - Send a status update to the product team chat space. -- name: product-onboard-urgent-feature-spec-2620 - title: Onboard Urgent Feature Spec (product) - description: Standard workflow to onboard urgent feature spec within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent feature spec data. - - Apply product policies to onboard the feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-onboard-secure-feature-spec-2621 - title: Onboard Secure Feature Spec (product) - description: Standard workflow to onboard secure feature spec within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure feature spec requests. - - Execute onboard procedure on the designated feature spec. - - Archive results in a secure Drive folder. -- name: product-onboard-weekly-backlog-2622 - title: Onboard Weekly Backlog (product) - description: Standard workflow to onboard weekly backlog within the product department. - category: product - services: - - drive - steps: - - Search for weekly backlog records. - - Review and onboard the weekly backlog. - - Notify stakeholders via email. -- name: product-onboard-monthly-backlog-2623 - title: Onboard Monthly Backlog (product) - description: Standard workflow to onboard monthly backlog within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly backlog data. - - Apply product policies to onboard the backlog. - - Send a status update to the product team chat space. -- name: product-onboard-urgent-backlog-2624 - title: Onboard Urgent Backlog (product) - description: Standard workflow to onboard urgent backlog within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent backlog requests. - - Execute onboard procedure on the designated backlog. - - Log completion in the master tracking spreadsheet. -- name: product-onboard-secure-backlog-2625 - title: Onboard Secure Backlog (product) - description: Standard workflow to onboard secure backlog within the product department. - category: product - services: - - docs - steps: - - Search for secure backlog records. - - Review and onboard the secure backlog. - - Archive results in a secure Drive folder. -- name: product-onboard-weekly-user-interview-2626 - title: Onboard Weekly User Interview (product) - description: Standard workflow to onboard weekly user interview within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly user interview data. - - Apply product policies to onboard the user interview. - - Notify stakeholders via email. -- name: product-onboard-monthly-user-interview-2627 - title: Onboard Monthly User Interview (product) - description: Standard workflow to onboard monthly user interview within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly user interview requests. - - Execute onboard procedure on the designated user interview. - - Send a status update to the product team chat space. -- name: product-onboard-urgent-user-interview-2628 - title: Onboard Urgent User Interview (product) - description: Standard workflow to onboard urgent user interview within the product department. - category: product - services: - - calendar - steps: - - Search for urgent user interview records. - - Review and onboard the urgent user interview. - - Log completion in the master tracking spreadsheet. -- name: product-onboard-secure-user-interview-2629 - title: Onboard Secure User Interview (product) - description: Standard workflow to onboard secure user interview within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure user interview data. - - Apply product policies to onboard the user interview. - - Archive results in a secure Drive folder. -- name: product-onboard-weekly-release-note-2630 - title: Onboard Weekly Release Note (product) - description: Standard workflow to onboard weekly release note within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly release note requests. - - Execute onboard procedure on the designated release note. - - Notify stakeholders via email. -- name: product-onboard-monthly-release-note-2631 - title: Onboard Monthly Release Note (product) - description: Standard workflow to onboard monthly release note within the product department. - category: product - services: - - sheets - steps: - - Search for monthly release note records. - - Review and onboard the monthly release note. - - Send a status update to the product team chat space. -- name: product-onboard-urgent-release-note-2632 - title: Onboard Urgent Release Note (product) - description: Standard workflow to onboard urgent release note within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent release note data. - - Apply product policies to onboard the release note. - - Log completion in the master tracking spreadsheet. -- name: product-onboard-secure-release-note-2633 - title: Onboard Secure Release Note (product) - description: Standard workflow to onboard secure release note within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure release note requests. - - Execute onboard procedure on the designated release note. - - Archive results in a secure Drive folder. -- name: product-review-weekly-roadmap-2634 - title: Review Weekly Roadmap (product) - description: Standard workflow to review weekly roadmap within the product department. - category: product - services: - - drive - steps: - - Search for weekly roadmap records. - - Review and review the weekly roadmap. - - Notify stakeholders via email. -- name: product-review-monthly-roadmap-2635 - title: Review Monthly Roadmap (product) - description: Standard workflow to review monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly roadmap data. - - Apply product policies to review the roadmap. - - Send a status update to the product team chat space. -- name: product-review-urgent-roadmap-2636 - title: Review Urgent Roadmap (product) - description: Standard workflow to review urgent roadmap within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent roadmap requests. - - Execute review procedure on the designated roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-review-secure-roadmap-2637 - title: Review Secure Roadmap (product) - description: Standard workflow to review secure roadmap within the product department. - category: product - services: - - docs - steps: - - Search for secure roadmap records. - - Review and review the secure roadmap. - - Archive results in a secure Drive folder. -- name: product-review-weekly-feature-spec-2638 - title: Review Weekly Feature Spec (product) - description: Standard workflow to review weekly feature spec within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly feature spec data. - - Apply product policies to review the feature spec. - - Notify stakeholders via email. -- name: product-review-monthly-feature-spec-2639 - title: Review Monthly Feature Spec (product) - description: Standard workflow to review monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly feature spec requests. - - Execute review procedure on the designated feature spec. - - Send a status update to the product team chat space. -- name: product-review-urgent-feature-spec-2640 - title: Review Urgent Feature Spec (product) - description: Standard workflow to review urgent feature spec within the product department. - category: product - services: - - calendar - steps: - - Search for urgent feature spec records. - - Review and review the urgent feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-review-secure-feature-spec-2641 - title: Review Secure Feature Spec (product) - description: Standard workflow to review secure feature spec within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure feature spec data. - - Apply product policies to review the feature spec. - - Archive results in a secure Drive folder. -- name: product-review-weekly-backlog-2642 - title: Review Weekly Backlog (product) - description: Standard workflow to review weekly backlog within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly backlog requests. - - Execute review procedure on the designated backlog. - - Notify stakeholders via email. -- name: product-review-monthly-backlog-2643 - title: Review Monthly Backlog (product) - description: Standard workflow to review monthly backlog within the product department. - category: product - services: - - sheets - steps: - - Search for monthly backlog records. - - Review and review the monthly backlog. - - Send a status update to the product team chat space. -- name: product-review-urgent-backlog-2644 - title: Review Urgent Backlog (product) - description: Standard workflow to review urgent backlog within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent backlog data. - - Apply product policies to review the backlog. - - Log completion in the master tracking spreadsheet. -- name: product-review-secure-backlog-2645 - title: Review Secure Backlog (product) - description: Standard workflow to review secure backlog within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure backlog requests. - - Execute review procedure on the designated backlog. - - Archive results in a secure Drive folder. -- name: product-review-weekly-user-interview-2646 - title: Review Weekly User Interview (product) - description: Standard workflow to review weekly user interview within the product department. - category: product - services: - - drive - steps: - - Search for weekly user interview records. - - Review and review the weekly user interview. - - Notify stakeholders via email. -- name: product-review-monthly-user-interview-2647 - title: Review Monthly User Interview (product) - description: Standard workflow to review monthly user interview within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly user interview data. - - Apply product policies to review the user interview. - - Send a status update to the product team chat space. -- name: product-review-urgent-user-interview-2648 - title: Review Urgent User Interview (product) - description: Standard workflow to review urgent user interview within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent user interview requests. - - Execute review procedure on the designated user interview. - - Log completion in the master tracking spreadsheet. -- name: product-review-secure-user-interview-2649 - title: Review Secure User Interview (product) - description: Standard workflow to review secure user interview within the product department. - category: product - services: - - docs - steps: - - Search for secure user interview records. - - Review and review the secure user interview. - - Archive results in a secure Drive folder. -- name: product-review-weekly-release-note-2650 - title: Review Weekly Release Note (product) - description: Standard workflow to review weekly release note within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly release note data. - - Apply product policies to review the release note. - - Notify stakeholders via email. -- name: product-review-monthly-release-note-2651 - title: Review Monthly Release Note (product) - description: Standard workflow to review monthly release note within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly release note requests. - - Execute review procedure on the designated release note. - - Send a status update to the product team chat space. -- name: product-review-urgent-release-note-2652 - title: Review Urgent Release Note (product) - description: Standard workflow to review urgent release note within the product department. - category: product - services: - - calendar - steps: - - Search for urgent release note records. - - Review and review the urgent release note. - - Log completion in the master tracking spreadsheet. -- name: product-review-secure-release-note-2653 - title: Review Secure Release Note (product) - description: Standard workflow to review secure release note within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure release note data. - - Apply product policies to review the release note. - - Archive results in a secure Drive folder. -- name: product-approve-weekly-roadmap-2654 - title: Approve Weekly Roadmap (product) - description: Standard workflow to approve weekly roadmap within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly roadmap requests. - - Execute approve procedure on the designated roadmap. - - Notify stakeholders via email. -- name: product-approve-monthly-roadmap-2655 - title: Approve Monthly Roadmap (product) - description: Standard workflow to approve monthly roadmap within the product department. - category: product - services: - - sheets - steps: - - Search for monthly roadmap records. - - Review and approve the monthly roadmap. - - Send a status update to the product team chat space. -- name: product-approve-urgent-roadmap-2656 - title: Approve Urgent Roadmap (product) - description: Standard workflow to approve urgent roadmap within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent roadmap data. - - Apply product policies to approve the roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-approve-secure-roadmap-2657 - title: Approve Secure Roadmap (product) - description: Standard workflow to approve secure roadmap within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure roadmap requests. - - Execute approve procedure on the designated roadmap. - - Archive results in a secure Drive folder. -- name: product-approve-weekly-feature-spec-2658 - title: Approve Weekly Feature Spec (product) - description: Standard workflow to approve weekly feature spec within the product department. - category: product - services: - - drive - steps: - - Search for weekly feature spec records. - - Review and approve the weekly feature spec. - - Notify stakeholders via email. -- name: product-approve-monthly-feature-spec-2659 - title: Approve Monthly Feature Spec (product) - description: Standard workflow to approve monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly feature spec data. - - Apply product policies to approve the feature spec. - - Send a status update to the product team chat space. -- name: product-approve-urgent-feature-spec-2660 - title: Approve Urgent Feature Spec (product) - description: Standard workflow to approve urgent feature spec within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent feature spec requests. - - Execute approve procedure on the designated feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-approve-secure-feature-spec-2661 - title: Approve Secure Feature Spec (product) - description: Standard workflow to approve secure feature spec within the product department. - category: product - services: - - docs - steps: - - Search for secure feature spec records. - - Review and approve the secure feature spec. - - Archive results in a secure Drive folder. -- name: product-approve-weekly-backlog-2662 - title: Approve Weekly Backlog (product) - description: Standard workflow to approve weekly backlog within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly backlog data. - - Apply product policies to approve the backlog. - - Notify stakeholders via email. -- name: product-approve-monthly-backlog-2663 - title: Approve Monthly Backlog (product) - description: Standard workflow to approve monthly backlog within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly backlog requests. - - Execute approve procedure on the designated backlog. - - Send a status update to the product team chat space. -- name: product-approve-urgent-backlog-2664 - title: Approve Urgent Backlog (product) - description: Standard workflow to approve urgent backlog within the product department. - category: product - services: - - calendar - steps: - - Search for urgent backlog records. - - Review and approve the urgent backlog. - - Log completion in the master tracking spreadsheet. -- name: product-approve-secure-backlog-2665 - title: Approve Secure Backlog (product) - description: Standard workflow to approve secure backlog within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure backlog data. - - Apply product policies to approve the backlog. - - Archive results in a secure Drive folder. -- name: product-approve-weekly-user-interview-2666 - title: Approve Weekly User Interview (product) - description: Standard workflow to approve weekly user interview within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly user interview requests. - - Execute approve procedure on the designated user interview. - - Notify stakeholders via email. -- name: product-approve-monthly-user-interview-2667 - title: Approve Monthly User Interview (product) - description: Standard workflow to approve monthly user interview within the product department. - category: product - services: - - sheets - steps: - - Search for monthly user interview records. - - Review and approve the monthly user interview. - - Send a status update to the product team chat space. -- name: product-approve-urgent-user-interview-2668 - title: Approve Urgent User Interview (product) - description: Standard workflow to approve urgent user interview within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent user interview data. - - Apply product policies to approve the user interview. - - Log completion in the master tracking spreadsheet. -- name: product-approve-secure-user-interview-2669 - title: Approve Secure User Interview (product) - description: Standard workflow to approve secure user interview within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure user interview requests. - - Execute approve procedure on the designated user interview. - - Archive results in a secure Drive folder. -- name: product-approve-weekly-release-note-2670 - title: Approve Weekly Release Note (product) - description: Standard workflow to approve weekly release note within the product department. - category: product - services: - - drive - steps: - - Search for weekly release note records. - - Review and approve the weekly release note. - - Notify stakeholders via email. -- name: product-approve-monthly-release-note-2671 - title: Approve Monthly Release Note (product) - description: Standard workflow to approve monthly release note within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly release note data. - - Apply product policies to approve the release note. - - Send a status update to the product team chat space. -- name: product-approve-urgent-release-note-2672 - title: Approve Urgent Release Note (product) - description: Standard workflow to approve urgent release note within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent release note requests. - - Execute approve procedure on the designated release note. - - Log completion in the master tracking spreadsheet. -- name: product-approve-secure-release-note-2673 - title: Approve Secure Release Note (product) - description: Standard workflow to approve secure release note within the product department. - category: product - services: - - docs - steps: - - Search for secure release note records. - - Review and approve the secure release note. - - Archive results in a secure Drive folder. -- name: product-share-weekly-roadmap-2674 - title: Share Weekly Roadmap (product) - description: Standard workflow to share weekly roadmap within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly roadmap data. - - Apply product policies to share the roadmap. - - Notify stakeholders via email. -- name: product-share-monthly-roadmap-2675 - title: Share Monthly Roadmap (product) - description: Standard workflow to share monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly roadmap requests. - - Execute share procedure on the designated roadmap. - - Send a status update to the product team chat space. -- name: product-share-urgent-roadmap-2676 - title: Share Urgent Roadmap (product) - description: Standard workflow to share urgent roadmap within the product department. - category: product - services: - - calendar - steps: - - Search for urgent roadmap records. - - Review and share the urgent roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-share-secure-roadmap-2677 - title: Share Secure Roadmap (product) - description: Standard workflow to share secure roadmap within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure roadmap data. - - Apply product policies to share the roadmap. - - Archive results in a secure Drive folder. -- name: product-share-weekly-feature-spec-2678 - title: Share Weekly Feature Spec (product) - description: Standard workflow to share weekly feature spec within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly feature spec requests. - - Execute share procedure on the designated feature spec. - - Notify stakeholders via email. -- name: product-share-monthly-feature-spec-2679 - title: Share Monthly Feature Spec (product) - description: Standard workflow to share monthly feature spec within the product department. - category: product - services: - - sheets - steps: - - Search for monthly feature spec records. - - Review and share the monthly feature spec. - - Send a status update to the product team chat space. -- name: product-share-urgent-feature-spec-2680 - title: Share Urgent Feature Spec (product) - description: Standard workflow to share urgent feature spec within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent feature spec data. - - Apply product policies to share the feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-share-secure-feature-spec-2681 - title: Share Secure Feature Spec (product) - description: Standard workflow to share secure feature spec within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure feature spec requests. - - Execute share procedure on the designated feature spec. - - Archive results in a secure Drive folder. -- name: product-share-weekly-backlog-2682 - title: Share Weekly Backlog (product) - description: Standard workflow to share weekly backlog within the product department. - category: product - services: - - drive - steps: - - Search for weekly backlog records. - - Review and share the weekly backlog. - - Notify stakeholders via email. -- name: product-share-monthly-backlog-2683 - title: Share Monthly Backlog (product) - description: Standard workflow to share monthly backlog within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly backlog data. - - Apply product policies to share the backlog. - - Send a status update to the product team chat space. -- name: product-share-urgent-backlog-2684 - title: Share Urgent Backlog (product) - description: Standard workflow to share urgent backlog within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent backlog requests. - - Execute share procedure on the designated backlog. - - Log completion in the master tracking spreadsheet. -- name: product-share-secure-backlog-2685 - title: Share Secure Backlog (product) - description: Standard workflow to share secure backlog within the product department. - category: product - services: - - docs - steps: - - Search for secure backlog records. - - Review and share the secure backlog. - - Archive results in a secure Drive folder. -- name: product-share-weekly-user-interview-2686 - title: Share Weekly User Interview (product) - description: Standard workflow to share weekly user interview within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly user interview data. - - Apply product policies to share the user interview. - - Notify stakeholders via email. -- name: product-share-monthly-user-interview-2687 - title: Share Monthly User Interview (product) - description: Standard workflow to share monthly user interview within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly user interview requests. - - Execute share procedure on the designated user interview. - - Send a status update to the product team chat space. -- name: product-share-urgent-user-interview-2688 - title: Share Urgent User Interview (product) - description: Standard workflow to share urgent user interview within the product department. - category: product - services: - - calendar - steps: - - Search for urgent user interview records. - - Review and share the urgent user interview. - - Log completion in the master tracking spreadsheet. -- name: product-share-secure-user-interview-2689 - title: Share Secure User Interview (product) - description: Standard workflow to share secure user interview within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure user interview data. - - Apply product policies to share the user interview. - - Archive results in a secure Drive folder. -- name: product-share-weekly-release-note-2690 - title: Share Weekly Release Note (product) - description: Standard workflow to share weekly release note within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly release note requests. - - Execute share procedure on the designated release note. - - Notify stakeholders via email. -- name: product-share-monthly-release-note-2691 - title: Share Monthly Release Note (product) - description: Standard workflow to share monthly release note within the product department. - category: product - services: - - sheets - steps: - - Search for monthly release note records. - - Review and share the monthly release note. - - Send a status update to the product team chat space. -- name: product-share-urgent-release-note-2692 - title: Share Urgent Release Note (product) - description: Standard workflow to share urgent release note within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent release note data. - - Apply product policies to share the release note. - - Log completion in the master tracking spreadsheet. -- name: product-share-secure-release-note-2693 - title: Share Secure Release Note (product) - description: Standard workflow to share secure release note within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure release note requests. - - Execute share procedure on the designated release note. - - Archive results in a secure Drive folder. -- name: product-publish-weekly-roadmap-2694 - title: Publish Weekly Roadmap (product) - description: Standard workflow to publish weekly roadmap within the product department. - category: product - services: - - drive - steps: - - Search for weekly roadmap records. - - Review and publish the weekly roadmap. - - Notify stakeholders via email. -- name: product-publish-monthly-roadmap-2695 - title: Publish Monthly Roadmap (product) - description: Standard workflow to publish monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly roadmap data. - - Apply product policies to publish the roadmap. - - Send a status update to the product team chat space. -- name: product-publish-urgent-roadmap-2696 - title: Publish Urgent Roadmap (product) - description: Standard workflow to publish urgent roadmap within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent roadmap requests. - - Execute publish procedure on the designated roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-publish-secure-roadmap-2697 - title: Publish Secure Roadmap (product) - description: Standard workflow to publish secure roadmap within the product department. - category: product - services: - - docs - steps: - - Search for secure roadmap records. - - Review and publish the secure roadmap. - - Archive results in a secure Drive folder. -- name: product-publish-weekly-feature-spec-2698 - title: Publish Weekly Feature Spec (product) - description: Standard workflow to publish weekly feature spec within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly feature spec data. - - Apply product policies to publish the feature spec. - - Notify stakeholders via email. -- name: product-publish-monthly-feature-spec-2699 - title: Publish Monthly Feature Spec (product) - description: Standard workflow to publish monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly feature spec requests. - - Execute publish procedure on the designated feature spec. - - Send a status update to the product team chat space. -- name: product-publish-urgent-feature-spec-2700 - title: Publish Urgent Feature Spec (product) - description: Standard workflow to publish urgent feature spec within the product department. - category: product - services: - - calendar - steps: - - Search for urgent feature spec records. - - Review and publish the urgent feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-publish-secure-feature-spec-2701 - title: Publish Secure Feature Spec (product) - description: Standard workflow to publish secure feature spec within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure feature spec data. - - Apply product policies to publish the feature spec. - - Archive results in a secure Drive folder. -- name: product-publish-weekly-backlog-2702 - title: Publish Weekly Backlog (product) - description: Standard workflow to publish weekly backlog within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly backlog requests. - - Execute publish procedure on the designated backlog. - - Notify stakeholders via email. -- name: product-publish-monthly-backlog-2703 - title: Publish Monthly Backlog (product) - description: Standard workflow to publish monthly backlog within the product department. - category: product - services: - - sheets - steps: - - Search for monthly backlog records. - - Review and publish the monthly backlog. - - Send a status update to the product team chat space. -- name: product-publish-urgent-backlog-2704 - title: Publish Urgent Backlog (product) - description: Standard workflow to publish urgent backlog within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent backlog data. - - Apply product policies to publish the backlog. - - Log completion in the master tracking spreadsheet. -- name: product-publish-secure-backlog-2705 - title: Publish Secure Backlog (product) - description: Standard workflow to publish secure backlog within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure backlog requests. - - Execute publish procedure on the designated backlog. - - Archive results in a secure Drive folder. -- name: product-publish-weekly-user-interview-2706 - title: Publish Weekly User Interview (product) - description: Standard workflow to publish weekly user interview within the product department. - category: product - services: - - drive - steps: - - Search for weekly user interview records. - - Review and publish the weekly user interview. - - Notify stakeholders via email. -- name: product-publish-monthly-user-interview-2707 - title: Publish Monthly User Interview (product) - description: Standard workflow to publish monthly user interview within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly user interview data. - - Apply product policies to publish the user interview. - - Send a status update to the product team chat space. -- name: product-publish-urgent-user-interview-2708 - title: Publish Urgent User Interview (product) - description: Standard workflow to publish urgent user interview within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent user interview requests. - - Execute publish procedure on the designated user interview. - - Log completion in the master tracking spreadsheet. -- name: product-publish-secure-user-interview-2709 - title: Publish Secure User Interview (product) - description: Standard workflow to publish secure user interview within the product department. - category: product - services: - - docs - steps: - - Search for secure user interview records. - - Review and publish the secure user interview. - - Archive results in a secure Drive folder. -- name: product-publish-weekly-release-note-2710 - title: Publish Weekly Release Note (product) - description: Standard workflow to publish weekly release note within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly release note data. - - Apply product policies to publish the release note. - - Notify stakeholders via email. -- name: product-publish-monthly-release-note-2711 - title: Publish Monthly Release Note (product) - description: Standard workflow to publish monthly release note within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly release note requests. - - Execute publish procedure on the designated release note. - - Send a status update to the product team chat space. -- name: product-publish-urgent-release-note-2712 - title: Publish Urgent Release Note (product) - description: Standard workflow to publish urgent release note within the product department. - category: product - services: - - calendar - steps: - - Search for urgent release note records. - - Review and publish the urgent release note. - - Log completion in the master tracking spreadsheet. -- name: product-publish-secure-release-note-2713 - title: Publish Secure Release Note (product) - description: Standard workflow to publish secure release note within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure release note data. - - Apply product policies to publish the release note. - - Archive results in a secure Drive folder. -- name: product-archive-weekly-roadmap-2714 - title: Archive Weekly Roadmap (product) - description: Standard workflow to archive weekly roadmap within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly roadmap requests. - - Execute archive procedure on the designated roadmap. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly roadmap targets before running. -- name: product-archive-monthly-roadmap-2715 - title: Archive Monthly Roadmap (product) - description: Standard workflow to archive monthly roadmap within the product department. - category: product - services: - - sheets - steps: - - Search for monthly roadmap records. - - Review and archive the monthly roadmap. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly roadmap targets before running. -- name: product-archive-urgent-roadmap-2716 - title: Archive Urgent Roadmap (product) - description: Standard workflow to archive urgent roadmap within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent roadmap data. - - Apply product policies to archive the roadmap. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent roadmap targets before running. -- name: product-archive-secure-roadmap-2717 - title: Archive Secure Roadmap (product) - description: Standard workflow to archive secure roadmap within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure roadmap requests. - - Execute archive procedure on the designated roadmap. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure roadmap targets before running. -- name: product-archive-weekly-feature-spec-2718 - title: Archive Weekly Feature Spec (product) - description: Standard workflow to archive weekly feature spec within the product department. - category: product - services: - - drive - steps: - - Search for weekly feature spec records. - - Review and archive the weekly feature spec. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly feature spec targets before running. -- name: product-archive-monthly-feature-spec-2719 - title: Archive Monthly Feature Spec (product) - description: Standard workflow to archive monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly feature spec data. - - Apply product policies to archive the feature spec. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly feature spec targets before running. -- name: product-archive-urgent-feature-spec-2720 - title: Archive Urgent Feature Spec (product) - description: Standard workflow to archive urgent feature spec within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent feature spec requests. - - Execute archive procedure on the designated feature spec. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent feature spec targets before running. -- name: product-archive-secure-feature-spec-2721 - title: Archive Secure Feature Spec (product) - description: Standard workflow to archive secure feature spec within the product department. - category: product - services: - - docs - steps: - - Search for secure feature spec records. - - Review and archive the secure feature spec. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure feature spec targets before running. -- name: product-archive-weekly-backlog-2722 - title: Archive Weekly Backlog (product) - description: Standard workflow to archive weekly backlog within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly backlog data. - - Apply product policies to archive the backlog. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly backlog targets before running. -- name: product-archive-monthly-backlog-2723 - title: Archive Monthly Backlog (product) - description: Standard workflow to archive monthly backlog within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly backlog requests. - - Execute archive procedure on the designated backlog. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly backlog targets before running. -- name: product-archive-urgent-backlog-2724 - title: Archive Urgent Backlog (product) - description: Standard workflow to archive urgent backlog within the product department. - category: product - services: - - calendar - steps: - - Search for urgent backlog records. - - Review and archive the urgent backlog. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent backlog targets before running. -- name: product-archive-secure-backlog-2725 - title: Archive Secure Backlog (product) - description: Standard workflow to archive secure backlog within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure backlog data. - - Apply product policies to archive the backlog. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure backlog targets before running. -- name: product-archive-weekly-user-interview-2726 - title: Archive Weekly User Interview (product) - description: Standard workflow to archive weekly user interview within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly user interview requests. - - Execute archive procedure on the designated user interview. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly user interview targets before running. -- name: product-archive-monthly-user-interview-2727 - title: Archive Monthly User Interview (product) - description: Standard workflow to archive monthly user interview within the product department. - category: product - services: - - sheets - steps: - - Search for monthly user interview records. - - Review and archive the monthly user interview. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly user interview targets before running. -- name: product-archive-urgent-user-interview-2728 - title: Archive Urgent User Interview (product) - description: Standard workflow to archive urgent user interview within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent user interview data. - - Apply product policies to archive the user interview. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent user interview targets before running. -- name: product-archive-secure-user-interview-2729 - title: Archive Secure User Interview (product) - description: Standard workflow to archive secure user interview within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure user interview requests. - - Execute archive procedure on the designated user interview. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure user interview targets before running. -- name: product-archive-weekly-release-note-2730 - title: Archive Weekly Release Note (product) - description: Standard workflow to archive weekly release note within the product department. - category: product - services: - - drive - steps: - - Search for weekly release note records. - - Review and archive the weekly release note. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly release note targets before running. -- name: product-archive-monthly-release-note-2731 - title: Archive Monthly Release Note (product) - description: Standard workflow to archive monthly release note within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly release note data. - - Apply product policies to archive the release note. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly release note targets before running. -- name: product-archive-urgent-release-note-2732 - title: Archive Urgent Release Note (product) - description: Standard workflow to archive urgent release note within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent release note requests. - - Execute archive procedure on the designated release note. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent release note targets before running. -- name: product-archive-secure-release-note-2733 - title: Archive Secure Release Note (product) - description: Standard workflow to archive secure release note within the product department. - category: product - services: - - docs - steps: - - Search for secure release note records. - - Review and archive the secure release note. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure release note targets before running. -- name: product-export-weekly-roadmap-2734 - title: Export Weekly Roadmap (product) - description: Standard workflow to export weekly roadmap within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly roadmap data. - - Apply product policies to export the roadmap. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly roadmap targets before running. -- name: product-export-monthly-roadmap-2735 - title: Export Monthly Roadmap (product) - description: Standard workflow to export monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly roadmap requests. - - Execute export procedure on the designated roadmap. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly roadmap targets before running. -- name: product-export-urgent-roadmap-2736 - title: Export Urgent Roadmap (product) - description: Standard workflow to export urgent roadmap within the product department. - category: product - services: - - calendar - steps: - - Search for urgent roadmap records. - - Review and export the urgent roadmap. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent roadmap targets before running. -- name: product-export-secure-roadmap-2737 - title: Export Secure Roadmap (product) - description: Standard workflow to export secure roadmap within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure roadmap data. - - Apply product policies to export the roadmap. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure roadmap targets before running. -- name: product-export-weekly-feature-spec-2738 - title: Export Weekly Feature Spec (product) - description: Standard workflow to export weekly feature spec within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly feature spec requests. - - Execute export procedure on the designated feature spec. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly feature spec targets before running. -- name: product-export-monthly-feature-spec-2739 - title: Export Monthly Feature Spec (product) - description: Standard workflow to export monthly feature spec within the product department. - category: product - services: - - sheets - steps: - - Search for monthly feature spec records. - - Review and export the monthly feature spec. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly feature spec targets before running. -- name: product-export-urgent-feature-spec-2740 - title: Export Urgent Feature Spec (product) - description: Standard workflow to export urgent feature spec within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent feature spec data. - - Apply product policies to export the feature spec. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent feature spec targets before running. -- name: product-export-secure-feature-spec-2741 - title: Export Secure Feature Spec (product) - description: Standard workflow to export secure feature spec within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure feature spec requests. - - Execute export procedure on the designated feature spec. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure feature spec targets before running. -- name: product-export-weekly-backlog-2742 - title: Export Weekly Backlog (product) - description: Standard workflow to export weekly backlog within the product department. - category: product - services: - - drive - steps: - - Search for weekly backlog records. - - Review and export the weekly backlog. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly backlog targets before running. -- name: product-export-monthly-backlog-2743 - title: Export Monthly Backlog (product) - description: Standard workflow to export monthly backlog within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly backlog data. - - Apply product policies to export the backlog. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly backlog targets before running. -- name: product-export-urgent-backlog-2744 - title: Export Urgent Backlog (product) - description: Standard workflow to export urgent backlog within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent backlog requests. - - Execute export procedure on the designated backlog. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent backlog targets before running. -- name: product-export-secure-backlog-2745 - title: Export Secure Backlog (product) - description: Standard workflow to export secure backlog within the product department. - category: product - services: - - docs - steps: - - Search for secure backlog records. - - Review and export the secure backlog. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure backlog targets before running. -- name: product-export-weekly-user-interview-2746 - title: Export Weekly User Interview (product) - description: Standard workflow to export weekly user interview within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly user interview data. - - Apply product policies to export the user interview. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly user interview targets before running. -- name: product-export-monthly-user-interview-2747 - title: Export Monthly User Interview (product) - description: Standard workflow to export monthly user interview within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly user interview requests. - - Execute export procedure on the designated user interview. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly user interview targets before running. -- name: product-export-urgent-user-interview-2748 - title: Export Urgent User Interview (product) - description: Standard workflow to export urgent user interview within the product department. - category: product - services: - - calendar - steps: - - Search for urgent user interview records. - - Review and export the urgent user interview. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent user interview targets before running. -- name: product-export-secure-user-interview-2749 - title: Export Secure User Interview (product) - description: Standard workflow to export secure user interview within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure user interview data. - - Apply product policies to export the user interview. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure user interview targets before running. -- name: product-export-weekly-release-note-2750 - title: Export Weekly Release Note (product) - description: Standard workflow to export weekly release note within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly release note requests. - - Execute export procedure on the designated release note. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly release note targets before running. -- name: product-export-monthly-release-note-2751 - title: Export Monthly Release Note (product) - description: Standard workflow to export monthly release note within the product department. - category: product - services: - - sheets - steps: - - Search for monthly release note records. - - Review and export the monthly release note. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly release note targets before running. -- name: product-export-urgent-release-note-2752 - title: Export Urgent Release Note (product) - description: Standard workflow to export urgent release note within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent release note data. - - Apply product policies to export the release note. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent release note targets before running. -- name: product-export-secure-release-note-2753 - title: Export Secure Release Note (product) - description: Standard workflow to export secure release note within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure release note requests. - - Execute export procedure on the designated release note. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure release note targets before running. -- name: product-import-weekly-roadmap-2754 - title: Import Weekly Roadmap (product) - description: Standard workflow to import weekly roadmap within the product department. - category: product - services: - - drive - steps: - - Search for weekly roadmap records. - - Review and import the weekly roadmap. - - Notify stakeholders via email. -- name: product-import-monthly-roadmap-2755 - title: Import Monthly Roadmap (product) - description: Standard workflow to import monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly roadmap data. - - Apply product policies to import the roadmap. - - Send a status update to the product team chat space. -- name: product-import-urgent-roadmap-2756 - title: Import Urgent Roadmap (product) - description: Standard workflow to import urgent roadmap within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent roadmap requests. - - Execute import procedure on the designated roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-import-secure-roadmap-2757 - title: Import Secure Roadmap (product) - description: Standard workflow to import secure roadmap within the product department. - category: product - services: - - docs - steps: - - Search for secure roadmap records. - - Review and import the secure roadmap. - - Archive results in a secure Drive folder. -- name: product-import-weekly-feature-spec-2758 - title: Import Weekly Feature Spec (product) - description: Standard workflow to import weekly feature spec within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly feature spec data. - - Apply product policies to import the feature spec. - - Notify stakeholders via email. -- name: product-import-monthly-feature-spec-2759 - title: Import Monthly Feature Spec (product) - description: Standard workflow to import monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly feature spec requests. - - Execute import procedure on the designated feature spec. - - Send a status update to the product team chat space. -- name: product-import-urgent-feature-spec-2760 - title: Import Urgent Feature Spec (product) - description: Standard workflow to import urgent feature spec within the product department. - category: product - services: - - calendar - steps: - - Search for urgent feature spec records. - - Review and import the urgent feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-import-secure-feature-spec-2761 - title: Import Secure Feature Spec (product) - description: Standard workflow to import secure feature spec within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure feature spec data. - - Apply product policies to import the feature spec. - - Archive results in a secure Drive folder. -- name: product-import-weekly-backlog-2762 - title: Import Weekly Backlog (product) - description: Standard workflow to import weekly backlog within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly backlog requests. - - Execute import procedure on the designated backlog. - - Notify stakeholders via email. -- name: product-import-monthly-backlog-2763 - title: Import Monthly Backlog (product) - description: Standard workflow to import monthly backlog within the product department. - category: product - services: - - sheets - steps: - - Search for monthly backlog records. - - Review and import the monthly backlog. - - Send a status update to the product team chat space. -- name: product-import-urgent-backlog-2764 - title: Import Urgent Backlog (product) - description: Standard workflow to import urgent backlog within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent backlog data. - - Apply product policies to import the backlog. - - Log completion in the master tracking spreadsheet. -- name: product-import-secure-backlog-2765 - title: Import Secure Backlog (product) - description: Standard workflow to import secure backlog within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure backlog requests. - - Execute import procedure on the designated backlog. - - Archive results in a secure Drive folder. -- name: product-import-weekly-user-interview-2766 - title: Import Weekly User Interview (product) - description: Standard workflow to import weekly user interview within the product department. - category: product - services: - - drive - steps: - - Search for weekly user interview records. - - Review and import the weekly user interview. - - Notify stakeholders via email. -- name: product-import-monthly-user-interview-2767 - title: Import Monthly User Interview (product) - description: Standard workflow to import monthly user interview within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly user interview data. - - Apply product policies to import the user interview. - - Send a status update to the product team chat space. -- name: product-import-urgent-user-interview-2768 - title: Import Urgent User Interview (product) - description: Standard workflow to import urgent user interview within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent user interview requests. - - Execute import procedure on the designated user interview. - - Log completion in the master tracking spreadsheet. -- name: product-import-secure-user-interview-2769 - title: Import Secure User Interview (product) - description: Standard workflow to import secure user interview within the product department. - category: product - services: - - docs - steps: - - Search for secure user interview records. - - Review and import the secure user interview. - - Archive results in a secure Drive folder. -- name: product-import-weekly-release-note-2770 - title: Import Weekly Release Note (product) - description: Standard workflow to import weekly release note within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly release note data. - - Apply product policies to import the release note. - - Notify stakeholders via email. -- name: product-import-monthly-release-note-2771 - title: Import Monthly Release Note (product) - description: Standard workflow to import monthly release note within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly release note requests. - - Execute import procedure on the designated release note. - - Send a status update to the product team chat space. -- name: product-import-urgent-release-note-2772 - title: Import Urgent Release Note (product) - description: Standard workflow to import urgent release note within the product department. - category: product - services: - - calendar - steps: - - Search for urgent release note records. - - Review and import the urgent release note. - - Log completion in the master tracking spreadsheet. -- name: product-import-secure-release-note-2773 - title: Import Secure Release Note (product) - description: Standard workflow to import secure release note within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure release note data. - - Apply product policies to import the release note. - - Archive results in a secure Drive folder. -- name: product-sync-weekly-roadmap-2774 - title: Sync Weekly Roadmap (product) - description: Standard workflow to sync weekly roadmap within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly roadmap requests. - - Execute sync procedure on the designated roadmap. - - Notify stakeholders via email. -- name: product-sync-monthly-roadmap-2775 - title: Sync Monthly Roadmap (product) - description: Standard workflow to sync monthly roadmap within the product department. - category: product - services: - - sheets - steps: - - Search for monthly roadmap records. - - Review and sync the monthly roadmap. - - Send a status update to the product team chat space. -- name: product-sync-urgent-roadmap-2776 - title: Sync Urgent Roadmap (product) - description: Standard workflow to sync urgent roadmap within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent roadmap data. - - Apply product policies to sync the roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-sync-secure-roadmap-2777 - title: Sync Secure Roadmap (product) - description: Standard workflow to sync secure roadmap within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure roadmap requests. - - Execute sync procedure on the designated roadmap. - - Archive results in a secure Drive folder. -- name: product-sync-weekly-feature-spec-2778 - title: Sync Weekly Feature Spec (product) - description: Standard workflow to sync weekly feature spec within the product department. - category: product - services: - - drive - steps: - - Search for weekly feature spec records. - - Review and sync the weekly feature spec. - - Notify stakeholders via email. -- name: product-sync-monthly-feature-spec-2779 - title: Sync Monthly Feature Spec (product) - description: Standard workflow to sync monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly feature spec data. - - Apply product policies to sync the feature spec. - - Send a status update to the product team chat space. -- name: product-sync-urgent-feature-spec-2780 - title: Sync Urgent Feature Spec (product) - description: Standard workflow to sync urgent feature spec within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent feature spec requests. - - Execute sync procedure on the designated feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-sync-secure-feature-spec-2781 - title: Sync Secure Feature Spec (product) - description: Standard workflow to sync secure feature spec within the product department. - category: product - services: - - docs - steps: - - Search for secure feature spec records. - - Review and sync the secure feature spec. - - Archive results in a secure Drive folder. -- name: product-sync-weekly-backlog-2782 - title: Sync Weekly Backlog (product) - description: Standard workflow to sync weekly backlog within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly backlog data. - - Apply product policies to sync the backlog. - - Notify stakeholders via email. -- name: product-sync-monthly-backlog-2783 - title: Sync Monthly Backlog (product) - description: Standard workflow to sync monthly backlog within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly backlog requests. - - Execute sync procedure on the designated backlog. - - Send a status update to the product team chat space. -- name: product-sync-urgent-backlog-2784 - title: Sync Urgent Backlog (product) - description: Standard workflow to sync urgent backlog within the product department. - category: product - services: - - calendar - steps: - - Search for urgent backlog records. - - Review and sync the urgent backlog. - - Log completion in the master tracking spreadsheet. -- name: product-sync-secure-backlog-2785 - title: Sync Secure Backlog (product) - description: Standard workflow to sync secure backlog within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure backlog data. - - Apply product policies to sync the backlog. - - Archive results in a secure Drive folder. -- name: product-sync-weekly-user-interview-2786 - title: Sync Weekly User Interview (product) - description: Standard workflow to sync weekly user interview within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly user interview requests. - - Execute sync procedure on the designated user interview. - - Notify stakeholders via email. -- name: product-sync-monthly-user-interview-2787 - title: Sync Monthly User Interview (product) - description: Standard workflow to sync monthly user interview within the product department. - category: product - services: - - sheets - steps: - - Search for monthly user interview records. - - Review and sync the monthly user interview. - - Send a status update to the product team chat space. -- name: product-sync-urgent-user-interview-2788 - title: Sync Urgent User Interview (product) - description: Standard workflow to sync urgent user interview within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent user interview data. - - Apply product policies to sync the user interview. - - Log completion in the master tracking spreadsheet. -- name: product-sync-secure-user-interview-2789 - title: Sync Secure User Interview (product) - description: Standard workflow to sync secure user interview within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure user interview requests. - - Execute sync procedure on the designated user interview. - - Archive results in a secure Drive folder. -- name: product-sync-weekly-release-note-2790 - title: Sync Weekly Release Note (product) - description: Standard workflow to sync weekly release note within the product department. - category: product - services: - - drive - steps: - - Search for weekly release note records. - - Review and sync the weekly release note. - - Notify stakeholders via email. -- name: product-sync-monthly-release-note-2791 - title: Sync Monthly Release Note (product) - description: Standard workflow to sync monthly release note within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly release note data. - - Apply product policies to sync the release note. - - Send a status update to the product team chat space. -- name: product-sync-urgent-release-note-2792 - title: Sync Urgent Release Note (product) - description: Standard workflow to sync urgent release note within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent release note requests. - - Execute sync procedure on the designated release note. - - Log completion in the master tracking spreadsheet. -- name: product-sync-secure-release-note-2793 - title: Sync Secure Release Note (product) - description: Standard workflow to sync secure release note within the product department. - category: product - services: - - docs - steps: - - Search for secure release note records. - - Review and sync the secure release note. - - Archive results in a secure Drive folder. -- name: product-migrate-weekly-roadmap-2794 - title: Migrate Weekly Roadmap (product) - description: Standard workflow to migrate weekly roadmap within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly roadmap data. - - Apply product policies to migrate the roadmap. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly roadmap targets before running. -- name: product-migrate-monthly-roadmap-2795 - title: Migrate Monthly Roadmap (product) - description: Standard workflow to migrate monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly roadmap requests. - - Execute migrate procedure on the designated roadmap. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly roadmap targets before running. -- name: product-migrate-urgent-roadmap-2796 - title: Migrate Urgent Roadmap (product) - description: Standard workflow to migrate urgent roadmap within the product department. - category: product - services: - - calendar - steps: - - Search for urgent roadmap records. - - Review and migrate the urgent roadmap. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent roadmap targets before running. -- name: product-migrate-secure-roadmap-2797 - title: Migrate Secure Roadmap (product) - description: Standard workflow to migrate secure roadmap within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure roadmap data. - - Apply product policies to migrate the roadmap. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure roadmap targets before running. -- name: product-migrate-weekly-feature-spec-2798 - title: Migrate Weekly Feature Spec (product) - description: Standard workflow to migrate weekly feature spec within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly feature spec requests. - - Execute migrate procedure on the designated feature spec. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly feature spec targets before running. -- name: product-migrate-monthly-feature-spec-2799 - title: Migrate Monthly Feature Spec (product) - description: Standard workflow to migrate monthly feature spec within the product department. - category: product - services: - - sheets - steps: - - Search for monthly feature spec records. - - Review and migrate the monthly feature spec. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly feature spec targets before running. -- name: product-migrate-urgent-feature-spec-2800 - title: Migrate Urgent Feature Spec (product) - description: Standard workflow to migrate urgent feature spec within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent feature spec data. - - Apply product policies to migrate the feature spec. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent feature spec targets before running. -- name: product-migrate-secure-feature-spec-2801 - title: Migrate Secure Feature Spec (product) - description: Standard workflow to migrate secure feature spec within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure feature spec requests. - - Execute migrate procedure on the designated feature spec. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure feature spec targets before running. -- name: product-migrate-weekly-backlog-2802 - title: Migrate Weekly Backlog (product) - description: Standard workflow to migrate weekly backlog within the product department. - category: product - services: - - drive - steps: - - Search for weekly backlog records. - - Review and migrate the weekly backlog. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly backlog targets before running. -- name: product-migrate-monthly-backlog-2803 - title: Migrate Monthly Backlog (product) - description: Standard workflow to migrate monthly backlog within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly backlog data. - - Apply product policies to migrate the backlog. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly backlog targets before running. -- name: product-migrate-urgent-backlog-2804 - title: Migrate Urgent Backlog (product) - description: Standard workflow to migrate urgent backlog within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent backlog requests. - - Execute migrate procedure on the designated backlog. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent backlog targets before running. -- name: product-migrate-secure-backlog-2805 - title: Migrate Secure Backlog (product) - description: Standard workflow to migrate secure backlog within the product department. - category: product - services: - - docs - steps: - - Search for secure backlog records. - - Review and migrate the secure backlog. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure backlog targets before running. -- name: product-migrate-weekly-user-interview-2806 - title: Migrate Weekly User Interview (product) - description: Standard workflow to migrate weekly user interview within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly user interview data. - - Apply product policies to migrate the user interview. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly user interview targets before running. -- name: product-migrate-monthly-user-interview-2807 - title: Migrate Monthly User Interview (product) - description: Standard workflow to migrate monthly user interview within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly user interview requests. - - Execute migrate procedure on the designated user interview. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly user interview targets before running. -- name: product-migrate-urgent-user-interview-2808 - title: Migrate Urgent User Interview (product) - description: Standard workflow to migrate urgent user interview within the product department. - category: product - services: - - calendar - steps: - - Search for urgent user interview records. - - Review and migrate the urgent user interview. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent user interview targets before running. -- name: product-migrate-secure-user-interview-2809 - title: Migrate Secure User Interview (product) - description: Standard workflow to migrate secure user interview within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure user interview data. - - Apply product policies to migrate the user interview. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure user interview targets before running. -- name: product-migrate-weekly-release-note-2810 - title: Migrate Weekly Release Note (product) - description: Standard workflow to migrate weekly release note within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly release note requests. - - Execute migrate procedure on the designated release note. - - Notify stakeholders via email. - caution: Action involves bulk data manipulation. Confirm weekly release note targets before running. -- name: product-migrate-monthly-release-note-2811 - title: Migrate Monthly Release Note (product) - description: Standard workflow to migrate monthly release note within the product department. - category: product - services: - - sheets - steps: - - Search for monthly release note records. - - Review and migrate the monthly release note. - - Send a status update to the product team chat space. - caution: Action involves bulk data manipulation. Confirm monthly release note targets before running. -- name: product-migrate-urgent-release-note-2812 - title: Migrate Urgent Release Note (product) - description: Standard workflow to migrate urgent release note within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent release note data. - - Apply product policies to migrate the release note. - - Log completion in the master tracking spreadsheet. - caution: Action involves bulk data manipulation. Confirm urgent release note targets before running. -- name: product-migrate-secure-release-note-2813 - title: Migrate Secure Release Note (product) - description: Standard workflow to migrate secure release note within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure release note requests. - - Execute migrate procedure on the designated release note. - - Archive results in a secure Drive folder. - caution: Action involves bulk data manipulation. Confirm secure release note targets before running. -- name: product-backup-weekly-roadmap-2814 - title: Backup Weekly Roadmap (product) - description: Standard workflow to backup weekly roadmap within the product department. - category: product - services: - - drive - steps: - - Search for weekly roadmap records. - - Review and backup the weekly roadmap. - - Notify stakeholders via email. -- name: product-backup-monthly-roadmap-2815 - title: Backup Monthly Roadmap (product) - description: Standard workflow to backup monthly roadmap within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly roadmap data. - - Apply product policies to backup the roadmap. - - Send a status update to the product team chat space. -- name: product-backup-urgent-roadmap-2816 - title: Backup Urgent Roadmap (product) - description: Standard workflow to backup urgent roadmap within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent roadmap requests. - - Execute backup procedure on the designated roadmap. - - Log completion in the master tracking spreadsheet. -- name: product-backup-secure-roadmap-2817 - title: Backup Secure Roadmap (product) - description: Standard workflow to backup secure roadmap within the product department. - category: product - services: - - docs - steps: - - Search for secure roadmap records. - - Review and backup the secure roadmap. - - Archive results in a secure Drive folder. -- name: product-backup-weekly-feature-spec-2818 - title: Backup Weekly Feature Spec (product) - description: Standard workflow to backup weekly feature spec within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly feature spec data. - - Apply product policies to backup the feature spec. - - Notify stakeholders via email. -- name: product-backup-monthly-feature-spec-2819 - title: Backup Monthly Feature Spec (product) - description: Standard workflow to backup monthly feature spec within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly feature spec requests. - - Execute backup procedure on the designated feature spec. - - Send a status update to the product team chat space. -- name: product-backup-urgent-feature-spec-2820 - title: Backup Urgent Feature Spec (product) - description: Standard workflow to backup urgent feature spec within the product department. - category: product - services: - - calendar - steps: - - Search for urgent feature spec records. - - Review and backup the urgent feature spec. - - Log completion in the master tracking spreadsheet. -- name: product-backup-secure-feature-spec-2821 - title: Backup Secure Feature Spec (product) - description: Standard workflow to backup secure feature spec within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure feature spec data. - - Apply product policies to backup the feature spec. - - Archive results in a secure Drive folder. -- name: product-backup-weekly-backlog-2822 - title: Backup Weekly Backlog (product) - description: Standard workflow to backup weekly backlog within the product department. - category: product - services: - - drive - - sheets - - calendar - steps: - - Check system for pending weekly backlog requests. - - Execute backup procedure on the designated backlog. - - Notify stakeholders via email. -- name: product-backup-monthly-backlog-2823 - title: Backup Monthly Backlog (product) - description: Standard workflow to backup monthly backlog within the product department. - category: product - services: - - sheets - steps: - - Search for monthly backlog records. - - Review and backup the monthly backlog. - - Send a status update to the product team chat space. -- name: product-backup-urgent-backlog-2824 - title: Backup Urgent Backlog (product) - description: Standard workflow to backup urgent backlog within the product department. - category: product - services: - - calendar - - docs - steps: - - Fetch latest urgent backlog data. - - Apply product policies to backup the backlog. - - Log completion in the master tracking spreadsheet. -- name: product-backup-secure-backlog-2825 - title: Backup Secure Backlog (product) - description: Standard workflow to backup secure backlog within the product department. - category: product - services: - - docs - - drive - - sheets - steps: - - Check system for pending secure backlog requests. - - Execute backup procedure on the designated backlog. - - Archive results in a secure Drive folder. -- name: product-backup-weekly-user-interview-2826 - title: Backup Weekly User Interview (product) - description: Standard workflow to backup weekly user interview within the product department. - category: product - services: - - drive - steps: - - Search for weekly user interview records. - - Review and backup the weekly user interview. - - Notify stakeholders via email. -- name: product-backup-monthly-user-interview-2827 - title: Backup Monthly User Interview (product) - description: Standard workflow to backup monthly user interview within the product department. - category: product - services: - - sheets - - calendar - steps: - - Fetch latest monthly user interview data. - - Apply product policies to backup the user interview. - - Send a status update to the product team chat space. -- name: product-backup-urgent-user-interview-2828 - title: Backup Urgent User Interview (product) - description: Standard workflow to backup urgent user interview within the product department. - category: product - services: - - calendar - - docs - - drive - steps: - - Check system for pending urgent user interview requests. - - Execute backup procedure on the designated user interview. - - Log completion in the master tracking spreadsheet. -- name: product-backup-secure-user-interview-2829 - title: Backup Secure User Interview (product) - description: Standard workflow to backup secure user interview within the product department. - category: product - services: - - docs - steps: - - Search for secure user interview records. - - Review and backup the secure user interview. - - Archive results in a secure Drive folder. -- name: product-backup-weekly-release-note-2830 - title: Backup Weekly Release Note (product) - description: Standard workflow to backup weekly release note within the product department. - category: product - services: - - drive - - sheets - steps: - - Fetch latest weekly release note data. - - Apply product policies to backup the release note. - - Notify stakeholders via email. -- name: product-backup-monthly-release-note-2831 - title: Backup Monthly Release Note (product) - description: Standard workflow to backup monthly release note within the product department. - category: product - services: - - sheets - - calendar - - docs - steps: - - Check system for pending monthly release note requests. - - Execute backup procedure on the designated release note. - - Send a status update to the product team chat space. -- name: product-backup-urgent-release-note-2832 - title: Backup Urgent Release Note (product) - description: Standard workflow to backup urgent release note within the product department. - category: product - services: - - calendar - steps: - - Search for urgent release note records. - - Review and backup the urgent release note. - - Log completion in the master tracking spreadsheet. -- name: product-backup-secure-release-note-2833 - title: Backup Secure Release Note (product) - description: Standard workflow to backup secure release note within the product department. - category: product - services: - - docs - - drive - steps: - - Fetch latest secure release note data. - - Apply product policies to backup the release note. - - Archive results in a secure Drive folder. diff --git a/src/generate_skills.rs b/src/generate_skills.rs index 1cb17bf6..d0b4edc5 100644 --- a/src/generate_skills.rs +++ b/src/generate_skills.rs @@ -23,8 +23,8 @@ use crate::services; use clap::Command; use std::path::Path; -const PERSONAS_YAML: &str = include_str!("../skills/registry/personas.yaml"); -const RECIPES_YAML: &str = include_str!("../skills/registry/recipes.yaml"); +const PERSONAS_YAML: &str = include_str!("../registry/personas.yaml"); +const RECIPES_YAML: &str = include_str!("../registry/recipes.yaml"); #[derive(serde::Deserialize)] struct PersonaRegistry { @@ -59,11 +59,18 @@ struct RecipeEntry { caution: Option, } +struct SkillIndexEntry { + name: String, + description: String, + category: String, +} + /// Entry point for `gws generate-skills`. pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { let output_dir = parse_output_dir(args); let output_path = Path::new(&output_dir); let filter = parse_filter(args); + let mut index: Vec = Vec::new(); // Generate gws-shared skill if no filter or "shared" is in the filter if filter @@ -71,6 +78,13 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { .is_none_or(|f| "shared".contains(f.as_str())) { generate_shared_skill(output_path)?; + index.push(SkillIndexEntry { + name: "gws-shared".to_string(), + description: + "gws CLI: Shared patterns for authentication, global flags, and output formatting." + .to_string(), + category: "service".to_string(), + }); } for entry in services::SERVICES { @@ -87,6 +101,7 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { let doc = if entry.api_name == "workflow" { discovery::RestDescription { name: "workflow".to_string(), + title: Some("Workflow".to_string()), description: Some(entry.description.to_string()), ..Default::default() } @@ -101,6 +116,9 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { } }; + // Derive product name from Discovery title (e.g. "Google Drive API" -> "Google Drive") + let product_name = product_name_from_title(doc.title.as_deref().unwrap_or(alias)); + // Build the CLI tree (includes helpers) let cli = commands::build_cli(&doc); @@ -123,8 +141,14 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { None => true, }; if emit_service { - let service_md = render_service_skill(alias, entry, &helpers, &resources); + let service_md = + render_service_skill(alias, entry, &helpers, &resources, &product_name); write_skill(output_path, &skill_name, &service_md)?; + index.push(SkillIndexEntry { + name: skill_name.clone(), + description: service_description(&product_name, entry.description), + category: "service".to_string(), + }); } // Generate per-helper skills @@ -140,8 +164,23 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { }; if emit_helper { let helper_skill_name = format!("gws-{helper_key}"); - let helper_md = render_helper_skill(alias, helper_name, helper, entry); + let about_raw = helper + .get_about() + .map(|s| s.to_string()) + .unwrap_or_default(); + let about_clean = about_raw.strip_prefix("[Helper] ").unwrap_or(&about_raw); + let helper_md = + render_helper_skill(alias, helper_name, helper, entry, &product_name); write_skill(output_path, &helper_skill_name, &helper_md)?; + index.push(SkillIndexEntry { + name: helper_skill_name, + description: truncate_desc(&format!( + "{}: {}", + product_name, + capitalize_first(about_clean) + )), + category: "helper".to_string(), + }); } } } @@ -165,6 +204,11 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { if emit { let md = render_persona_skill(&persona); write_skill(output_path, &name, &md)?; + index.push(SkillIndexEntry { + name: name.clone(), + description: truncate_desc(&persona.description), + category: "persona".to_string(), + }); } } } else { @@ -178,7 +222,10 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { .is_none_or(|f| "recipe".contains(f.as_str()) || "recipes".contains(f.as_str())) { if let Ok(registry) = serde_yaml::from_str::(RECIPES_YAML) { - eprintln!("Generating skills for {} recipes...", registry.recipes.len()); + eprintln!( + "Generating skills for {} recipes...", + registry.recipes.len() + ); for recipe in registry.recipes { let name = format!("recipe-{}", recipe.name); let emit = match &filter { @@ -188,6 +235,11 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { if emit { let md = render_recipe_skill(&recipe); write_skill(output_path, &name, &md)?; + index.push(SkillIndexEntry { + name: name.clone(), + description: truncate_desc(&recipe.description), + category: "recipe".to_string(), + }); } } } else { @@ -195,6 +247,11 @@ pub async fn handle_generate_skills(args: &[String]) -> Result<(), GwsError> { } } + // Write skills index + if filter.is_none() { + write_skills_index(&index)?; + } + eprintln!("\nDone. Skills written to {output_dir}/"); Ok(()) } @@ -233,6 +290,57 @@ fn write_skill(base: &Path, name: &str, content: &str) -> Result<(), GwsError> { Ok(()) } +fn write_skills_index(entries: &[SkillIndexEntry]) -> Result<(), GwsError> { + let mut out = String::new(); + out.push_str("# Skills Index\n\n"); + out.push_str("> Auto-generated by `gws generate-skills`. Do not edit manually.\n\n"); + + let sections = [ + ( + "service", + "## Services", + "Core Google Workspace API skills.", + ), + ( + "helper", + "## Helpers", + "Shortcut commands for common operations.", + ), + ("persona", "## Personas", "Role-based skill bundles."), + ( + "recipe", + "## Recipes", + "Multi-step task sequences with real commands.", + ), + ]; + + for (cat, heading, subtitle) in §ions { + let items: Vec<&SkillIndexEntry> = entries.iter().filter(|e| e.category == *cat).collect(); + if items.is_empty() { + continue; + } + out.push_str(&format!("{heading}\n\n{subtitle}\n\n")); + out.push_str("| Skill | Description |\n|-------|-------------|\n"); + for item in &items { + out.push_str(&format!( + "| [{}](../skills/{}/SKILL.md) | {} |\n", + item.name, item.name, item.description + )); + } + out.push('\n'); + } + + let path = Path::new("docs/skills.md"); + if let Some(parent) = path.parent() { + std::fs::create_dir_all(parent) + .map_err(|e| GwsError::Validation(format!("Failed to create docs dir: {e}")))?; + } + std::fs::write(path, &out) + .map_err(|e| GwsError::Validation(format!("Failed to write skills index: {e}")))?; + eprintln!("Skills index written to docs/skills.md"); + Ok(()) +} + // --------------------------------------------------------------------------- // Renderers // --------------------------------------------------------------------------- @@ -242,15 +350,18 @@ fn render_service_skill( entry: &services::ServiceEntry, helpers: &[&Command], resources: &[&Command], + product_name: &str, ) -> String { let mut out = String::new(); + let trigger_desc = service_description(product_name, entry.description); + // Frontmatter out.push_str(&format!( r#"--- name: gws-{alias} version: 1.0.0 -description: "USE WHEN the user wants to {description} via the `gws` CLI." +description: "{trigger_desc}" metadata: openclaw: category: "productivity" @@ -260,7 +371,6 @@ metadata: --- "#, - description = entry.description.to_lowercase(), )); // Title @@ -347,6 +457,7 @@ fn render_helper_skill( cmd_name: &str, cmd: &Command, entry: &services::ServiceEntry, + product_name: &str, ) -> String { let mut out = String::new(); @@ -354,6 +465,8 @@ fn render_helper_skill( let about = about_raw.strip_prefix("[Helper] ").unwrap_or(&about_raw); let short = cmd_name.trim_start_matches('+'); + let capitalized_about = capitalize_first(about); + let trigger_desc = truncate_desc(&format!("{}: {}", product_name, capitalized_about)); // Determine if write command let is_write = matches!( @@ -378,7 +491,7 @@ fn render_helper_skill( r#"--- name: gws-{alias}-{short} version: 1.0.0 -description: "{about}" +description: "{trigger_desc}" metadata: openclaw: category: "{category}" @@ -525,7 +638,7 @@ fn generate_shared_skill(base: &Path) -> Result<(), GwsError> { let content = r#"--- name: gws-shared version: 1.0.0 -description: "Shared patterns, authentication, and global flags for all gws commands." +description: "gws CLI: Shared patterns for authentication, global flags, and output formatting." metadata: openclaw: category: "productivity" @@ -597,11 +710,13 @@ fn render_persona_skill(persona: &PersonaEntry) -> String { .collect::>() .join(", "); + let trigger_desc = truncate_desc(&persona.description); + out.push_str(&format!( r#"--- name: persona-{name} version: 1.0.0 -description: "{description}" +description: "{trigger_desc}" metadata: openclaw: category: "persona" @@ -665,11 +780,13 @@ fn render_recipe_skill(recipe: &RecipeEntry) -> String { .collect::>() .join(", "); + let trigger_desc = truncate_desc(&recipe.description); + out.push_str(&format!( r#"--- name: recipe-{name} version: 1.0.0 -description: "{description}" +description: "{trigger_desc}" metadata: openclaw: category: "recipe" @@ -712,6 +829,67 @@ metadata: out } +fn truncate_desc(desc: &str) -> String { + let mut s = desc.replace('"', "'").trim().to_string(); + // Capitalize first letter + if let Some(first) = s.get(0..1) { + s = format!("{}{}", first.to_uppercase(), &s[1..]); + } + if s.len() > 120 { + if let Some(idx) = s[..120].rfind(' ') { + s = format!("{}...", &s[..idx]); + } else { + s = format!("{}...", &s[..117]); + } + } + // Ensure trailing period + if !s.ends_with('.') && !s.ends_with("...") { + s.push('.'); + } + s +} + +fn capitalize_first(s: &str) -> String { + let mut chars = s.chars(); + match chars.next() { + None => String::new(), + Some(c) => format!("{}{}", c.to_uppercase(), chars.as_str()), + } +} + +fn product_name_from_title(title: &str) -> String { + // Discovery titles are like "Google Drive API", "Gmail API", "Model Armor API" + // Strip " API" suffix to get the product name + let name = title.strip_suffix(" API").unwrap_or(title).trim(); + if name.is_empty() { + return "Unknown".to_string(); + } + // Prepend "Google" if not already present (most Workspace products are "Google X") + // Skip for standalone brands like "Gmail" + if !name.starts_with("Google") && !name.starts_with("Gmail") { + // Workspace management tools get "Google Workspace" prefix + let is_workspace_mgmt = + name.contains("Admin") || name.contains("Enterprise") || name.contains("Reseller"); + if is_workspace_mgmt { + return format!("Google Workspace {name}"); + } + return format!("Google {name}"); + } + name.to_string() +} + +fn service_description(product_name: &str, discovery_desc: &str) -> String { + // If the description already mentions the product name, use it as-is + let desc_lower = discovery_desc.to_lowercase(); + let name_lower = product_name.to_lowercase(); + if desc_lower.contains(&name_lower) { + return truncate_desc(discovery_desc); + } + + // Prepend the product name + truncate_desc(&format!("{product_name}: {discovery_desc}")) +} + #[cfg(test)] mod tests { use super::*; @@ -722,9 +900,11 @@ mod tests { #[test] fn test_registry_references() { - let personas: PersonaRegistry = serde_yaml::from_str(PERSONAS_YAML).expect("valid personas yaml"); - let recipes: RecipeRegistry = serde_yaml::from_str(RECIPES_YAML).expect("valid recipes yaml"); - + let personas: PersonaRegistry = + serde_yaml::from_str(PERSONAS_YAML).expect("valid personas yaml"); + let recipes: RecipeRegistry = + serde_yaml::from_str(RECIPES_YAML).expect("valid recipes yaml"); + // Valid services mapped by api_name or alias let all_services = services::SERVICES; let mut valid_services = HashSet::new(); @@ -736,28 +916,46 @@ mod tests { } // Workflows are synthetic and technically a service, so add it valid_services.insert("workflow"); - + // Valid workflows let wf_helper = helpers::get_helper("workflow").expect("workflow helper missing"); let mut cli = Command::new("test"); let doc = crate::discovery::RestDescription::default(); cli = wf_helper.inject_commands(cli, &doc); - let valid_workflows: HashSet<_> = cli.get_subcommands().map(|s| s.get_name().to_string()).collect(); + let valid_workflows: HashSet<_> = cli + .get_subcommands() + .map(|s| s.get_name().to_string()) + .collect(); // Validate personas for p in personas.personas { for s in &p.services { - assert!(valid_services.contains(s.as_str()), "Persona '{}' refs invalid service '{}'", p.name, s); + assert!( + valid_services.contains(s.as_str()), + "Persona '{}' refs invalid service '{}'", + p.name, + s + ); } for w in &p.workflows { - assert!(valid_workflows.contains(w.as_str()), "Persona '{}' refs invalid workflow '{}'", p.name, w); + assert!( + valid_workflows.contains(w.as_str()), + "Persona '{}' refs invalid workflow '{}'", + p.name, + w + ); } } // Validate recipes for r in recipes.recipes { for s in &r.services { - assert!(valid_services.contains(s.as_str()), "Recipe '{}' refs invalid service '{}'", r.name, s); + assert!( + valid_services.contains(s.as_str()), + "Recipe '{}' refs invalid service '{}'", + r.name, + s + ); } } } diff --git a/src/helpers/workflows.rs b/src/helpers/workflows.rs index 40d26e6a..749b2ec0 100644 --- a/src/helpers/workflows.rs +++ b/src/helpers/workflows.rs @@ -89,14 +89,16 @@ fn build_standup_report_cmd() -> Command { .value_name("FORMAT") .global(true), ) - .after_help("\ + .after_help( + "\ EXAMPLES: gws workflow +standup-report gws workflow +standup-report --format table TIPS: Read-only — never modifies data. - Combines calendar agenda (today) with tasks list.") + Combines calendar agenda (today) with tasks list.", + ) } fn build_meeting_prep_cmd() -> Command { @@ -116,14 +118,16 @@ fn build_meeting_prep_cmd() -> Command { .value_name("FORMAT") .global(true), ) - .after_help("\ + .after_help( + "\ EXAMPLES: gws workflow +meeting-prep gws workflow +meeting-prep --calendar Work TIPS: Read-only — never modifies data. - Shows the next upcoming event with attendees and description.") + Shows the next upcoming event with attendees and description.", + ) } fn build_email_to_task_cmd() -> Command { @@ -143,14 +147,16 @@ fn build_email_to_task_cmd() -> Command { .default_value("@default") .value_name("ID"), ) - .after_help("\ + .after_help( + "\ EXAMPLES: gws workflow +email-to-task --message-id MSG_ID gws workflow +email-to-task --message-id MSG_ID --tasklist LIST_ID TIPS: Reads the email subject as the task title and snippet as notes. - Creates a new task — confirm with the user before executing.") + Creates a new task — confirm with the user before executing.", + ) } fn build_weekly_digest_cmd() -> Command { @@ -163,14 +169,16 @@ fn build_weekly_digest_cmd() -> Command { .value_name("FORMAT") .global(true), ) - .after_help("\ + .after_help( + "\ EXAMPLES: gws workflow +weekly-digest gws workflow +weekly-digest --format table TIPS: Read-only — never modifies data. - Combines calendar agenda (week) with gmail triage summary.") + Combines calendar agenda (week) with gmail triage summary.", + ) } fn build_file_announce_cmd() -> Command { @@ -203,7 +211,8 @@ fn build_file_announce_cmd() -> Command { .value_name("FORMAT") .global(true), ) - .after_help("\ + .after_help( + "\ EXAMPLES: gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123 gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123 --message 'Check this out!' @@ -211,18 +220,15 @@ EXAMPLES: TIPS: This is a write command — sends a Chat message. Use `gws drive +upload` first to upload the file, then announce it here. - Fetches the file name from Drive to build the announcement.") + Fetches the file name from Drive to build the announcement.", + ) } // --------------------------------------------------------------------------- // Handlers // --------------------------------------------------------------------------- -async fn get_json( - client: &reqwest::Client, - url: &str, - token: &str, -) -> Result { +async fn get_json(client: &reqwest::Client, url: &str, token: &str) -> Result { let resp = client .get(url) .bearer_auth(token) @@ -278,7 +284,9 @@ async fn handle_standup_report(matches: &ArgMatches) -> Result<(), GwsError> { urlencoded(&time_min), urlencoded(&time_max), ); - let events_json = get_json(&client, &events_url, &token).await.unwrap_or(json!({})); + let events_json = get_json(&client, &events_url, &token) + .await + .unwrap_or(json!({})); let events = events_json .get("items") .and_then(|i| i.as_array()) @@ -298,7 +306,9 @@ async fn handle_standup_report(matches: &ArgMatches) -> Result<(), GwsError> { // Fetch open tasks let tasks_url = "https://tasks.googleapis.com/tasks/v1/lists/@default/tasks?showCompleted=false&maxResults=20"; - let tasks_json = get_json(&client, tasks_url, &token).await.unwrap_or(json!({})); + let tasks_json = get_json(&client, tasks_url, &token) + .await + .unwrap_or(json!({})); let tasks = tasks_json .get("items") .and_then(|i| i.as_array()) @@ -503,7 +513,9 @@ async fn handle_weekly_digest(matches: &ArgMatches) -> Result<(), GwsError> { urlencoded(&time_min), urlencoded(&time_max), ); - let events_json = get_json(&client, &events_url, &token).await.unwrap_or(json!({})); + let events_json = get_json(&client, &events_url, &token) + .await + .unwrap_or(json!({})); let events = events_json .get("items") .and_then(|i| i.as_array()) @@ -521,8 +533,11 @@ async fn handle_weekly_digest(matches: &ArgMatches) -> Result<(), GwsError> { .collect(); // Fetch unread email count - let gmail_url = "https://gmail.googleapis.com/gmail/v1/users/me/messages?q=is%3Aunread&maxResults=1"; - let gmail_json = get_json(&client, gmail_url, &token).await.unwrap_or(json!({})); + let gmail_url = + "https://gmail.googleapis.com/gmail/v1/users/me/messages?q=is%3Aunread&maxResults=1"; + let gmail_json = get_json(&client, gmail_url, &token) + .await + .unwrap_or(json!({})); let unread_estimate = gmail_json .get("resultSizeEstimate") .and_then(|v| v.as_u64()) @@ -632,7 +647,10 @@ mod tests { let cmd = Command::new("test"); let doc = crate::discovery::RestDescription::default(); let cmd = helper.inject_commands(cmd, &doc); - let names: Vec<_> = cmd.get_subcommands().map(|s| s.get_name().to_string()).collect(); + let names: Vec<_> = cmd + .get_subcommands() + .map(|s| s.get_name().to_string()) + .collect(); assert!(names.contains(&"+standup-report".to_string())); assert!(names.contains(&"+meeting-prep".to_string())); assert!(names.contains(&"+email-to-task".to_string()));