update webp settings to lossless 90% maybe make this more configurable #217
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "IRC Notification on push" | |
on: | |
- "push" | |
jobs: | |
notification: | |
runs-on: "ubuntu-latest" | |
name: "IRC Notifications" | |
steps: | |
- name: "IRC notification" | |
if: ${{ (github.repository == 'bornhack/bma') && (github.actor != 'dependabot[bot]') }} | |
uses: "Gottox/irc-message-action@v2" | |
with: | |
server: "irc.baconsvin.org" | |
channel: "#bornhack-website" | |
nickname: "webteambot" | |
message: |- | |
${{ github.actor }} pushed new BMA commits: ${{ github.event.compare }} - latest commit msg: "${{ github.event.head_commit.message }}" | |
... |