22 lines
741 B
YAML
22 lines
741 B
YAML
name: Toot release
|
|
|
|
# More triggers
|
|
# https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#release
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
toot:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: cbrgm/mastodon-github-action@v2
|
|
if: ${{ !github.event.repository.private }}
|
|
with:
|
|
# GitHub event payload
|
|
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
|
|
message: "New release: phpstan-drupal ${{ github.event.release.tag_name }} ${{ github.event.release.html_url }} #drupal"
|
|
env:
|
|
MASTODON_URL: https://phpc.social
|
|
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}
|