https://github.com/tauri-apps/automation
GitHub Actions available to the tauri-apps organization
https://github.com/tauri-apps/automation
Last synced: 6 months ago
JSON representation
GitHub Actions available to the tauri-apps organization
- Host: GitHub
- URL: https://github.com/tauri-apps/automation
- Owner: tauri-apps
- Created: 2022-01-17T10:21:09.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T17:01:27.000Z (over 1 year ago)
- Last Synced: 2025-06-02T08:30:31.024Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.46 MB
- Stars: 4
- Watchers: 15
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tauri Automations
Automations that are used across the `tauri-apps` GitHub organization.
## Workflows
### [`congrats`](.github/workflows/congrats.yml)
Sends a message to a Discord channel with the last commit's message, author, and the repo it was posted in. Will ignore any commits that start with `[ci]`.
Note: Currently only works for `push` triggers.
**Inputs**
- `DISCORD_WEBHOOK` (required): See workflow for documentation
**Example**
```yml
on:
push:
branches: [dev]
jobs:
congrats:
uses: tauri-apps/automation/.github/workflows/congrats.yml@main
secrets:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
```