Skip to content

Commit 9f7445b

Browse files
authored
Merge pull request #431 from pennam/test-size-deltas
Update report-size-deltas workflow to wake him up
2 parents 665e3d9 + 75804b4 commit 9f7445b

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

Diff for: .github/workflows/report-size-deltas.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
1+
name: Report Size Deltas
2+
3+
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
14
on:
5+
push:
6+
paths:
7+
- ".github/workflows/report-size-deltas.yml"
28
schedule:
3-
- cron: '*/5 * * * *'
9+
# Run at the minimum interval allowed by GitHub Actions.
10+
# Note: GitHub Actions periodically has outages which result in workflow failures.
11+
# In this event, the workflows will start passing again once the service recovers.
12+
- cron: "*/5 * * * *"
13+
workflow_dispatch:
14+
repository_dispatch:
415

516
jobs:
617
report:
718
runs-on: ubuntu-latest
8-
919
steps:
1020
- name: Comment size deltas reports to PRs
1121
uses: arduino/report-size-deltas@v1

Diff for: src/ArduinoIoTCloudTCP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ ArduinoIoTCloudTCP::State ArduinoIoTCloudTCP::handle_Connected()
564564
/* Retransmit data in case there was a lost transaction due
565565
* to phy layer or MQTT connectivity loss.
566566
*/
567-
if(_mqtt_data_request_retransmit && (_mqtt_data_len > 0)) {
567+
if (_mqtt_data_request_retransmit && (_mqtt_data_len > 0)) {
568568
write(_dataTopicOut, _mqtt_data_buf, _mqtt_data_len);
569569
_mqtt_data_request_retransmit = false;
570570
}

0 commit comments

Comments
 (0)