refactor image transform code and fix a bunch of edge case resizing/c… #26
This file contains hidden or 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-client-lib-python') && (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-client-lib-python commits: ${{ github.event.compare }} - latest commit msg: "${{ github.event.head_commit.message }}" | |
| ... |