configure.ac: Use AC_CONFIG_HEADERS instead of the obsolete AM_CONFIG… #119
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# YAML | |
--- | |
name: fediverse-action | |
on: [push] | |
jobs: | |
post: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- id: log | |
run: echo "::set-output name=message::$(git log --no-merges -1 --oneline)" | |
- if: "contains(steps.log.outputs.message, 'Release ')" | |
uses: rzr/fediverse-action@master | |
with: | |
access-token: ${{ secrets.MASTODON_ACCESS_TOKEN }} | |
message: "https://github.com/${{ github.repository }}/commit/${{ steps.log.outputs.message }} ~ #FediVerseAction" |