mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-07 02:58:21 +00:00
remove PR trigger
This commit is contained in:
parent
01f64b79ab
commit
935e15c4d2
1 changed files with 12 additions and 3 deletions
15
.github/workflows/tests.yml
vendored
15
.github/workflows/tests.yml
vendored
|
@ -1,8 +1,13 @@
|
||||||
name: auto-tests
|
name: auto-tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
# pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
commit_sha:
|
||||||
|
description: 'Specific Commit SHA to trigger on'
|
||||||
|
required: false
|
||||||
|
default: $GITHUB_SHA # default to the last commit of $GITHUB_REF branch
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-llama-stack-as-library:
|
test-llama-stack-as-library:
|
||||||
|
@ -16,9 +21,13 @@ jobs:
|
||||||
provider: [fireworks, together]
|
provider: [fireworks, together]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.inputs.commit_sha }}
|
||||||
|
|
||||||
- name: Echo branch name
|
- name: Echo commit SHA
|
||||||
run: echo "Running on branch ${{ github.ref }}"
|
run: |
|
||||||
|
echo "Triggered on commit SHA: ${{ github.event.inputs.commit_sha }}"
|
||||||
|
git rev-parse HEAD
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue