add run_cwl* functions for running serailized workflows in run_local … #240
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
| name: Branch Dispatch | |
| on: | |
| push: | |
| permissions: | |
| actions: read | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| branch_dispatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # See token.md | |
| - name: Generate a token | |
| if: always() | |
| id: generate_token | |
| uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 | |
| with: | |
| app_id: ${{ secrets.APP_ID }} | |
| private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
| # To use this repository's private action, | |
| # you must check out the repository | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Check existence of wic | |
| uses: ./.github/my_actions/check_existence/ # Must start with ./ | |
| id: ce_wic | |
| with: | |
| repository: workflow-inference-compiler | |
| sender_repo_owner: ${{ github.repository_owner }} | |
| sender_repo_ref: ${{ github.ref_name }} | |
| default_owner: PolusAI | |
| default_branch: master | |
| access_token: ${{ steps.generate_token.outputs.token }} | |
| - name: Check existence of mm-workflows | |
| uses: ./.github/my_actions/check_existence/ # Must start with ./ | |
| id: ce_mm-workflows | |
| with: | |
| repository: mm-workflows | |
| sender_repo_owner: ${{ github.repository_owner }} | |
| sender_repo_ref: ${{ github.ref_name }} | |
| default_owner: PolusAI | |
| default_branch: main | |
| access_token: ${{ steps.generate_token.outputs.token }} | |
| # For other repositories, the entire step below should be copied and edited to make new steps. | |
| - name: Check existence of image-workflows | |
| uses: ./.github/my_actions/check_existence/ # Must start with ./ | |
| id: ce_image-workflows | |
| with: | |
| repository: image-workflows | |
| sender_repo_owner: ${{ github.repository_owner }} | |
| sender_repo_ref: ${{ github.ref_name }} | |
| default_owner: PolusAI | |
| default_branch: main | |
| access_token: ${{ steps.generate_token.outputs.token }} | |
| - name: Branch dispatch lint_and_test.yml | |
| uses: ./.github/my_actions/branch_dispatch/ # Must start with ./ | |
| id: bd_lint_and_test | |
| with: | |
| repository: workflow-inference-compiler | |
| workflow_yml: lint_and_test.yml | |
| sender_repo: ${{ github.repository }} | |
| sender_repo_owner: ${{ github.repository_owner }} | |
| dispatch_ref: ${{ steps.ce_wic.outputs.ref }} | |
| wic_owner: ${{ steps.ce_wic.outputs.owner }} | |
| wic_ref: ${{ steps.ce_wic.outputs.ref }} | |
| event_type: ${{ github.event_name }} | |
| commit_message: ${{ github.event.head_commit.message }} | |
| mm_workflows_owner: ${{ steps.ce_mm-workflows.outputs.owner }} | |
| mm_workflows_ref: ${{ steps.ce_mm-workflows.outputs.ref }} | |
| image_workflows_owner: ${{ steps.ce_image-workflows.outputs.owner }} | |
| image_workflows_ref: ${{ steps.ce_image-workflows.outputs.ref }} | |
| access_token: ${{ steps.generate_token.outputs.token }} | |
| - name: Branch dispatch run_workflows.yml | |
| uses: ./.github/my_actions/branch_dispatch/ # Must start with ./ | |
| id: bd_run_workflows | |
| with: | |
| repository: workflow-inference-compiler | |
| workflow_yml: run_workflows.yml | |
| sender_repo: ${{ github.repository }} | |
| sender_repo_owner: ${{ github.repository_owner }} | |
| dispatch_ref: ${{ steps.ce_wic.outputs.ref }} | |
| wic_owner: ${{ steps.ce_wic.outputs.owner }} | |
| wic_ref: ${{ steps.ce_wic.outputs.ref }} | |
| event_type: ${{ github.event_name }} | |
| commit_message: ${{ github.event.head_commit.message }} | |
| mm_workflows_owner: ${{ steps.ce_mm-workflows.outputs.owner }} | |
| mm_workflows_ref: ${{ steps.ce_mm-workflows.outputs.ref }} | |
| image_workflows_owner: ${{ steps.ce_image-workflows.outputs.owner }} | |
| image_workflows_ref: ${{ steps.ce_image-workflows.outputs.ref }} | |
| access_token: ${{ steps.generate_token.outputs.token }} |