A Github action transfers issue with 'blog' and 'need_published' labels content to markdown file. After that, this action will create a pull request to your current branch. And you can merge it manually.
In this action, I use this action - create pull request to make PR.
Note: only issues which have 'blog' and 'need_published' labels will be auto processed.
example
name: CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Example Action
uses: ONGOING-Z/[email protected]
with:
my-token: ${{ secrets.MY_TOKEN }}
path: "."
Name | Description | Default |
---|---|---|
my-token | the token that can access your repository | |
path | directory you want to save the generated markdown files | ./issues |
All inputs are required.
None