Bumps [peter-evans/repository-dispatch](https://github.com/peter-evans/repository-dispatch) from 3 to 4. - [Release notes](https://github.com/peter-evans/repository-dispatch/releases) - [Commits](https://github.com/peter-evans/repository-dispatch/compare/v3...v4) --- updated-dependencies: - dependency-name: peter-evans/repository-dispatch dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
509 B
YAML
22 lines
509 B
YAML
name: Update Board Lists
|
|
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"
|