22 lines
409 B
YAML
22 lines
409 B
YAML
|
name: Send markdown
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
send:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
# Setup
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
# Send
|
||
|
- uses: ./action
|
||
|
with:
|
||
|
file: example.md
|
||
|
webhook: ${{ secrets.WEBHOOK_URL }}
|
||
|
storageMethod: webhook
|
||
|
storageWebhookUrl: ${{ secrets.STORAGE_WEBHOOK_URL }}
|
||
|
storageWebhookMessageID: "1209906215602356235"
|