Skip to content

Commit

Permalink
Run the bloat check script as a scheduled github workflow. (#1551)
Browse files Browse the repository at this point in the history
Should generate bloat reports on any pull requests.
  • Loading branch information
andy31415 authored Jul 10, 2020
1 parent 7e18d7d commit 18129db
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/bloat_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Bloat Check
on:
schedule:
- cron: '*/10 * * * *'


jobs:
pull_request_update:
name: Report on pull requests

runs-on: ubuntu-latest

container:
image: "connectedhomeip/chip-build-openssl:0.2.18"

steps:
- name: Report
run: |
scripts/helpers/bloat_check.py \
--github-repository project-chip/connectedhomeip \
--github-api-token "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 18129db

Please sign in to comment.