Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Renew or reactivate Google Workspace Events subscriptions before they expire using the gws CLI.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-events-renew3description: "Google Workspace Events: Renew/reactivate Workspace Events subscriptions."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws events +renew --help"12---1314# events +renew1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718Renew/reactivate Workspace Events subscriptions1920## Usage2122```bash23gws events +renew24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--name` | — | — | Subscription name to reactivate (e.g., subscriptions/SUB_ID) |31| `--all` | — | — | Renew all subscriptions expiring within --within window |32| `--within` | — | 1h | Time window for --all (e.g., 1h, 30m, 2d) |3334## Examples3536```bash37gws events +renew --name subscriptions/SUB_ID38gws events +renew --all --within 2d39```4041## Tips4243- Subscriptions expire if not renewed periodically.44- Use --all with a cron job to keep subscriptions alive.4546## See Also4748- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth49- [gws-events](../gws-events/SKILL.md) — All subscribe to google workspace events commands50