CI build, doc-build: Run containers explicitly, separate jobs for pyright, build, modularized tests, long tests #206
Workflow file for this run
This file contains 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
# This action automatically labels Pull-Requests | |
# based on files edited and no of lines changed. | |
name: Size Labeler/Checker | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
- review_requested | |
- edited | |
jobs: | |
label-changes: | |
if: vars.SMALL_THRESHOLD && vars.MODERATE_THRESHOLD && vars.LARGE_THRESHOLD && github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Add labels based on size | |
run: | | |
git fetch origin $BASE_SHA | |
chmod a+x .github/workflows/set_labels_by_changes.sh | |
.github/workflows/set_labels_by_changes.sh | |
env: | |
BASE_SHA: ${{ github.base_ref }} | |
PR_BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPOSITORY: ${{ github.repository }} | |
PR_NUMBER: ${{ github.event.pull_request.number}} | |
SMALL_THRESHOLD: ${{ vars.SMALL_THRESHOLD }} | |
MODERATE_THRESHOLD: ${{ vars.MODERATE_THRESHOLD }} | |
LARGE_THRESHOLD: ${{ vars.LARGE_THRESHOLD }} |