Skip to content

Commit

Permalink
Zhiwei/fix run e2e path input description (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
zliang-akamai authored Nov 2, 2023
1 parent a8d0d52 commit e3a1ee4
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/e2e-suite-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
inputs:
test_path:
description: 'Test path to be tested: e.g. integration/cli'
description: "The path from 'test/integration' to the target to be tested, e.g. 'cli'"
required: false
sha:
description: 'The hash value of the commit.'
Expand All @@ -30,7 +30,7 @@ jobs:

# Check out merge commit
- name: Checkout PR
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.sha }}

Expand All @@ -56,13 +56,12 @@ jobs:
owner: ${{ github.event.repository.owner.login }}
repo: ${{ github.event.repository.name }}
pr_num: ${{ fromJSON(inputs.pull_request_number) }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Update system packages
run: sudo apt-get update -y

- name: Install system deps
run: sudo apt-get install -y build-essential

- name: Setup Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -124,7 +123,7 @@ jobs:

# Check out merge commit
- name: Checkout PR
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.sha }}

Expand Down Expand Up @@ -196,4 +195,4 @@ jobs:
status: 'completed',
conclusion: process.env.conclusion
});
return result;
return result;

0 comments on commit e3a1ee4

Please sign in to comment.