How to modify the project if I want to use two antennas to reveive the signal via Online mode? (Mutiple antennas receiving problem) #669
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: "IRC Notification" | |
on: | |
push: | |
pull_request: | |
types: [opened] | |
issues: | |
types: [opened] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: irc push | |
uses: rectalogic/notify-irc@v1 | |
if: github.event_name == 'push' | |
with: | |
server: irc.blafasel.de | |
channel: "#iridium" | |
nickname: GitHub | |
notice: true | |
message: | | |
${{ github.actor }} pushed to ${{ github.event.ref }}: ${{ join(github.event.commits.*.message) }} | |
- name: irc pull request | |
uses: rectalogic/notify-irc@v1 | |
if: github.event_name == 'pull_request' | |
with: | |
server: irc.blafasel.de | |
channel: "#iridium" | |
nickname: GitHub | |
notice: true | |
message: | | |
${{ github.actor }} opened PR #${{ github.event.number }} ${{ github.event.pull_request.title }} - ${{ github.event.pull_request.html_url }} | |
- name: irc issue created | |
uses: rectalogic/notify-irc@v1 | |
if: github.event_name == 'issues' | |
with: | |
server: irc.blafasel.de | |
channel: "#iridium" | |
nickname: GitHub | |
notice: true | |
message: | | |
${{ github.actor }} opened issue #${{ github.event.issue.number }} ${{ github.event.issue.title }} - ${{ github.event.issue.html_url }} |