File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Report Size Deltas
2
+
3
+ # See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
1
4
on :
5
+ push :
6
+ paths :
7
+ - " .github/workflows/report-size-deltas.yml"
2
8
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 :
4
15
5
16
jobs :
6
17
report :
7
18
runs-on : ubuntu-latest
8
-
9
19
steps :
10
20
- name : Comment size deltas reports to PRs
11
21
uses : arduino/report-size-deltas@v1
Original file line number Diff line number Diff line change @@ -564,7 +564,7 @@ ArduinoIoTCloudTCP::State ArduinoIoTCloudTCP::handle_Connected()
564
564
/* Retransmit data in case there was a lost transaction due
565
565
* to phy layer or MQTT connectivity loss.
566
566
*/
567
- if (_mqtt_data_request_retransmit && (_mqtt_data_len > 0 )) {
567
+ if (_mqtt_data_request_retransmit && (_mqtt_data_len > 0 )) {
568
568
write (_dataTopicOut, _mqtt_data_buf, _mqtt_data_len);
569
569
_mqtt_data_request_retransmit = false ;
570
570
}
You can’t perform that action at this time.
0 commit comments