English Document • GitHub Marketplace
一个通过 Finb/Bark 推送通知的 GitHub Action。
name: 'Push Notifications via Bark'
on: [ push ]
jobs:
notify:
name: Notify
runs-on: ubuntu-latest
steps:
- name: Push notification
uses: shink/bark-action@v2
with:
key: ${{ secrets.KEY }} # Your secret key, it is required
host: ${{ secrets.HOST }} # Your Bark host, the default is 'https://api.day.app'
title: Message title
body: Message body
sound: alarm
isArchive: 1
url: https://yuanhaoji.com
automaticallyCopy: 1
copy: Content copied to clipboard
其中,只有
key
字段是必填的。
host
: 自行搭建的 Bark 服务的地址title
: 标题(比内容字号粗一点)body
: 内容sound
: 推送铃声isArchive
: 是否保存到历史记录(1
为保存,其他值为不保存)url
: 将跳转到 url 的地址(发送时,URL 参数需要编码)automaticallyCopy
: 携带该参数时,将自动复制推送内容到剪贴板copy
: 携带该参数时,只复制该参数的值
更多详情请查看 Finb/Bark。