Populate README.md with generic Armbian branding and tl;dr; info (#131) #24
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: "Regenerate documentation" | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
Build: | |
name: Make docs | |
runs-on: ubuntu-latest | |
#if: ${{ github.repository_owner == 'armbian' }} | |
steps: | |
- name: Checkout build repo | |
uses: actions/checkout@v4 | |
- name: Make docs | |
run: | | |
bin/armbian-configng --doc | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: '`Automatic` documentation update' | |
signoff: false | |
branch: update-docs | |
delete-branch: true | |
title: '`Automatic` documentation update' | |
body: | | |
Generate documentation. | |
labels: | | |
Needs review | |
#assignees: igorpecovnik | |
#reviewers: Must be org collaborator | |
draft: false | |