Skip to content

Bump orjson from 3.10.5 to 3.10.6 #22

Bump orjson from 3.10.5 to 3.10.6

Bump orjson from 3.10.5 to 3.10.6 #22

Workflow file for this run

---
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 }}"
...