[READ-ONLY] Mirror of https://github.com/elsbrock/elsbrock. 馃彔 my Github profile repository, automatically updated using readme-scribe github.com/elsbrock
0

Configure Feed

Select the types of activity you want to include in your feed.

readme-scribe.yml
name: Update README

on:
  push:
  schedule:
    - cron: "0 */1 * * *"

jobs:
  markscribe:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@master

      - uses: muesli/readme-scribe@master
        env:
          GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
        with:
          template: "templates/README.md.tpl"
          writeTo: "README.md"

      - uses: stefanzweifel/git-auto-commit-action@v5
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          commit_message: Update generated README
          branch: main
          commit_user_name: readme-scribe 馃
          commit_user_email: actions@github.com
          commit_author: readme-scribe 馃 <actions@github.com>