Skip to content

daniyalj/action-issue-parser

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

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Issue parser action

This action parses the latest issue and grabs the body of the issue. Adds it to a file and commits it to a repo in a folder called issues. The folder must be created before hand.

Inputs

org_name

Required GitHub organization name

repo_name

Required GitHub repository name

global_email

Required Email for commiting to GitHub

Example usage

jobs:
  issue_parser:
    runs-on: ubuntu-latest
    name: Grab body of latest issue
    steps:
    - name: Parse latest GitHub issue
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      uses: daniyalj/ga-hello-world@v1
      with:
        org_name: 'daniyalj'
        repo_name: 'ga-hello-world'
        global_email: '[email protected]'