Draft
Conversation
peternewman
commented
Jan 26, 2022
Comment on lines
+1
to
+24
| name: Report Size Deltas | ||
|
|
||
| # See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows | ||
| on: | ||
| push: | ||
| paths: | ||
| - ".github/workflows/report-size-deltas.yml" | ||
| schedule: | ||
| # Run at the minimum interval allowed by GitHub Actions. | ||
| # Note: GitHub Actions periodically has outages which result in workflow failures. | ||
| # In this event, the workflows will start passing again once the service recovers. | ||
| - cron: "*/5 * * * *" | ||
| workflow_dispatch: | ||
| repository_dispatch: | ||
|
|
||
| jobs: | ||
| report: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Comment size deltas reports to PRs | ||
| uses: arduino/report-size-deltas@v1 | ||
| with: | ||
| # The name of the workflow artifact created by the sketch compilation workflow | ||
| sketches-reports-source: sketches-reports |
Contributor
Author
There was a problem hiding this comment.
I think this file needs to be separate as it's got a different schedule.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rework of #35 .
Given:
Please add top the existing github actions
Originally posted by @mathertel in #35 (comment)
Are you happy for me to do this?:
I would suggest switching to a matrix makes the config simpler to read and tweak.
Originally posted by @peternewman in #35 (comment)