25 lines
801 B
YAML
25 lines
801 B
YAML
name: PR cloud build comment
|
|
on:
|
|
pull_request_target:
|
|
types: [opened]
|
|
branches:
|
|
- master
|
|
- '*-maintenance'
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
comment-pr:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Add comment about cloud build
|
|
uses: thollander/actions-comment-pull-request@v2
|
|
with:
|
|
message: |
|
|
**Do you want to test this code? You can flash it directly from the Betaflight App:**
|
|
- Simply put `#${{ github.event.number }}` (this pull request number) in the `Select commit` field in the Firmware Flasher tab (you need to `Enable expert mode`, `Show release candidates` and `Development`).
|
|
|
|
_**WARNING:** It may be unstable. Use only for testing!_
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|