Skip to content
book

GitHub Action

Issues to blog post action

0.0.6 Latest version

Issues to blog post action

book

Issues to blog post action

This action tries to convert Github issues into Jekyll blog posts

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Issues to blog post action

uses: namtx/[email protected]

Learn more about this action in namtx/issues-to-blog

Choose a version

issues-to-blog

This action turn Github repository's issues into Jekyll blog post and post into another repository (same user)

Inputs

targetRepository

Required The repository where to put the blog markdown file

targetBranch

Required The branch where to put the blog markdown file

targetDirectory

Required The directory where to put the blog markdown file

sourceRepository

Required The repository where contains issues

accessToken

Required Access Token is required to push new commit cross Github repositories

Example usage

steps:
  - name: Issues to blog post action
    uses: namtx/[email protected]
      with:
        targetRepository: thinkspace
        targetBranch: master
        targetDirectory: _posts
        sourceRepository: til
        accessToken: ${{ secrets.ACCESS_TOKEN }}