Skip to content

Commit

Permalink
Merge branch 'main' into distro-upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik authored Sep 30, 2024
2 parents bddaebd + 5652231 commit f8ab573
Show file tree
Hide file tree
Showing 5 changed files with 736 additions and 13 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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

Loading

0 comments on commit f8ab573

Please sign in to comment.