21 lines
463 B
YAML
21 lines
463 B
YAML
|
name: Rebuild board list in GHA menu
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- 'config/boards/*.*'
|
||
|
branches: [ main ]
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
Run:
|
||
|
name: "Execute workflow"
|
||
|
if: ${{ github.repository_owner == 'Armbian' }}
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Repository Dispatch
|
||
|
uses: peter-evans/repository-dispatch@v2
|
||
|
with:
|
||
|
token: ${{ secrets.ACCESS_TOKEN }}
|
||
|
repository: armbian/os
|
||
|
event-type: "Refresh board list"
|