sync issues to markdown #1229
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sync issues to markdown | |
on: | |
issues: | |
types: [opened, edited, labeled] | |
jobs: | |
issue2md: | |
runs-on: ubuntu-latest | |
outputs: | |
commit_hash: ${{ steps.backup-last-commit.outputs.commit_hash }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: print github event action | |
run: | | |
echo "${{ github.event.action }}" | |
- uses: junxnone/wiki_issue2md@main | |
with: | |
branch: "main" # default to main | |
dir: "docs" # default to _posts | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
created_at: ${{ github.event.issue.created_at }} | |
updated_at: ${{ github.event.issue.updated_at }} | |
label_name: ${{ join(github.event.issue.labels.*.name, ', ') }} | |
title: ${{ github.event.issue.title }} | |
body: ${{ github.event.issue.body }} | |
number: ${{ github.event.issue.number }} | |
actor: ${{ github.actor }} | |
nohead: ${{ contains(github.event.issue.labels.*.name, 'nohead') }} | |
- name: Backup last commit | |
id: backup-last-commit | |
run: | | |
echo "commit_hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
update_sidebar: | |
needs: issue2md | |
runs-on: ubuntu-latest | |
steps: | |
- uses: junxnone/autosidebar@main | |
with: | |
push_branch: "main" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
actor: ${{ github.actor }} | |
docs_path: "docs" | |
root_node: ${{ github.event.repository.name }} | |
ref: ${{ needs.issue2md.outputs.commit_hash }} | |