Skip to content

v2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Jan 03:35
· 3 commits to master since this release

API Changes and Discord Integration

Breaking change: the previous input parameter SLACK_TOKEN and CHANNEL
cannot be used anymore. Use SLACK_WEBHOOK_URL and SLACK_CHANNEL
instead.

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

  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.

Changelog

  • ac98782 howl: Rename slack-notify.sh to howl
  • 3f39c6f bash: Convert local variable names to lowercase
  • 7c4ec87 howl: Use SLACK_WEBHOOK_URL as input
  • 11d9de4 howl: Rework Slack message format
  • a85b70d howl: Add discord integration
  • f8c9b53 action: Adapt howl for GitHub actions input
  • 968bf0d release: Upload howl script on release
  • c3615f4 docs: Add v2.0.0 release notes