Gateway Server computes incorrect concentrator_timestamp for Class C downlink, causing TOO_EARLY TxAck #758
This file contains hidden or 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: Triage New Issues | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| triage: | |
| name: Triage New Issues | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Add "needs/triage" label | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| github.rest.issues.addLabels({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| labels: ['needs/triage'] | |
| }) |