add new target StellarF7 Dual HD #272
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto close bad PR | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
pull_request_target: | |
permissions: | |
pull-requests: write | |
issues: write | |
jobs: | |
close-pr: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: autoclose | |
shell: bash | |
if: github.head_ref == 'master' | |
run: gh pr close ${{github.event.pull_request.number}} --comment "Auto-closing pull request because the source branch is named 'master'. Please create a feature branch instead. https://betaflight.com/docs/development#using-git-and-github" |