Skip to content

namtx/issues-to-blog

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 }}