oh-my-posh/.github/workflows/mastodon.yml
2022-11-29 07:11:24 +01:00

39 lines
1.1 KiB
YAML

name: Mastodon
on:
release:
types: [published]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Notes 📝
id: notes
uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0
with:
result-encoding: string
script: |
notes = context.payload.release.body
// replace all non-supported characters
notes = notes.replaceAll('###', '')
notes = notes.replaceAll('**', '')
notes = notes.replace(/ \(\[[0-9a-z]+\]\(.*\)/g, '')
notes = notes.trim()
return notes
- name: Toot 🐘
uses: cbrgm/mastodon-github-action@6cffb7d449201bf36a60589de7a76e18ee226043
with:
message: |
📦 ${{ github.event.release.name }}
${{steps.notes.outputs.result}}
${{ github.event.release.html_url }}
#ohmyposh #oss #cli #opensource
visibility: "public"
env:
MASTODON_URL: "https://social.ohmyposh.dev/"
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}