Skip to content

Adding new folder to demonstrate the capability of Code Interpreter with an e2e app in Streamlit. #507

Adding new folder to demonstrate the capability of Code Interpreter with an e2e app in Streamlit.

Adding new folder to demonstrate the capability of Code Interpreter with an e2e app in Streamlit. #507

name: Pull Request Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
pull_request_size:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Check Pull Request Size
run: |
git fetch origin ${{ github.event.pull_request.base.ref }} --quiet # Need to manually fetch base branch in CI
python ./.github/scripts/commit-filesize-diff-summary.py --limit 1MB origin/${{ github.event.pull_request.base.ref }}..HEAD