Skip to content

Commit

Permalink
docs: Add v2.0.0 release notes
Browse files Browse the repository at this point in the history
Add v2.0.0 release notes to the docs/release-notes directory. This will
trigger a new major release.
  • Loading branch information
juliaogris committed Jan 19, 2024
1 parent bc6fdaa commit cf6f213
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/release-notes/v2.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## API Changes and Discord Integration

**Breaking change**: the previous input parameter `SLACK_TOKEN` and `CHANNEL`
have been deprecated and cannot be used anymore. Use `SLACK_WEBHOOK_URL` and
`SLACK_CHANNEL` instead.

`howl` can now be used as GitHub Action with `with` inputs:

```yaml
howl-on-failure:
steps:
- uses: foxygoat/howl@v2
with:
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
slack_channel: C0000000000 # optional; channel ID
slack_text: <!here> # optional; text or @-mention
discord_webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }}
discord_text: @here # optional; text or @-mention
```
Discord integration has been added.
GitHub Releases are now created on every merge to `master` distributing the
`howl` script to be used with hermit.

0 comments on commit cf6f213

Please sign in to comment.