We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 665e3d9 commit 08b1221Copy full SHA for 08b1221
.github/workflows/report-size-deltas.yml
@@ -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
4
on:
5
+ push:
6
+ paths:
7
+ - ".github/workflows/report-size-deltas.yml"
8
schedule:
- - 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:
15
16
jobs:
17
report:
18
runs-on: ubuntu-latest
-
19
steps:
20
- name: Comment size deltas reports to PRs
21
uses: arduino/report-size-deltas@v1
0 commit comments