Here are the two files needed to run a Yaesu FT-450. I also included … #1099
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: PR Checks | |
on: | |
pull_request: | |
jobs: | |
check_commit: | |
name: No new legacy code | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install tools | |
run: | | |
sudo apt-get update | |
sudo apt-get install gettext wdiff | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Run check_commit.sh | |
run: | | |
git fetch origin $GITHUB_BASE_REF || true | |
./tools/check_commit.sh origin/$GITHUB_BASE_REF |