oh-my-posh/.github/workflows/mastodon.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2022-11-29 00:39:26 -08:00
# <a rel="me" href="https://social.ohmyposh.dev/@releasebot">Mastodon</a>
2022-11-27 10:39:42 -08:00
name: Mastodon
on:
release:
types: [published]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Notes 📝
id: notes
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
2022-11-27 10:39:42 -08:00
with:
result-encoding: string
2022-11-27 10:39:42 -08:00
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@d98ab3376f941df14d37d5737961de431c0838c6
2022-11-27 10:39:42 -08:00
with:
message: |
📦 ${{ github.event.release.name }}
${{steps.notes.outputs.result}}
${{ github.event.release.html_url }}
#ohmyposh #oss #cli #opensource
2022-11-27 10:39:42 -08:00
visibility: "public"
env:
MASTODON_URL: "https://social.ohmyposh.dev/"
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}