Reorganize workflow files and names into 3 main categories: - Data: Data collection and synchronization workflows - Infrastructure: Infrastructure tasks (mirroring, forking) - Maintenance: All PR checks, labels, notifications, and maintenance tasks All workflows now have capitalized category prefixes for consistency. Also update internal workflow references to reflect new names.
22 lines
514 B
YAML
22 lines
514 B
YAML
name: "Data: Sync board list"
|
|
run-name: Update board list at armbian/os
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "config/boards/*.*"
|
|
branches: [main]
|
|
|
|
jobs:
|
|
update-board-list-dispatch:
|
|
name: Send dispatch
|
|
if: ${{ github.repository_owner == 'Armbian' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Repository Dispatch
|
|
uses: peter-evans/repository-dispatch@v4
|
|
with:
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
repository: armbian/os
|
|
event-type: "Refresh board list"
|