-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #325 from py-cov-action/fix-e2e-external
- Loading branch information
Showing
5 changed files
with
96 additions
and
56 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Scheduling end-to-end tests on external PR approval | ||
|
||
on: | ||
pull_request_review: | ||
types: [submitted] | ||
|
||
concurrency: | ||
group: ${{ github.event_name }}-${{ github.ref }} | ||
|
||
jobs: | ||
test: | ||
name: Run end to end tests | ||
# If reviewed by a repo(/org) owner | ||
if: | | ||
github.event.pull_request.author_association != 'MEMBER' | ||
&& github.event.review.author_association == 'MEMBER' | ||
&& github.event.review.state == 'approved' | ||
&& contains(github.event.review.body, '/e2e') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Running end-to-end tests on external PR approval | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Scheduling end-to-end tests on external PR approval"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
e2e: | ||
name: End-to-end tests | ||
runs-on: ubuntu-latest | ||
if: github.event.workflow_run.conclusion == 'success' | ||
permissions: | ||
actions: read | ||
pull-requests: write | ||
contents: write | ||
steps: | ||
- name: Extract the approved commit | ||
id: extract | ||
run: | | ||
PR_NUMBER=$(gh api "repos/:owner/:repo/actions/runs/${RUN_ID}" --jq '.pull_requests | first | .number') | ||
if [ -z "${PR_NUMBER}" ]; then | ||
echo "No PR number found" | ||
exit 1 | ||
fi | ||
COMMIT_ID=$(gh pr view "${PR_NUMBER}" --json reviews --jq '[.reviews[] | select(.state == "APPROVED" and .authorAssociation == "MEMBER") | .commit.oid] | last') | ||
if [ -z "${COMMIT_ID}" ]; then | ||
echo "No approved commit found" | ||
exit 1 | ||
fi | ||
echo "PR_NUMBER=${PR_NUMBER}" >> "${GITHUB_OUTPUT}" | ||
echo "COMMIT_ID=${COMMIT_ID}" > "${GITHUB_OUTPUT}" | ||
env: | ||
RUN_ID: ${{ github.event.workflow_run.id }} | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
# Important: use the commit that was reviewed. GitHub is making sure | ||
# that this is race-condition-proof | ||
ref: ${{ steps.extract.outputs.COMMIT_ID }} | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Install Poetry | ||
run: | | ||
pipx install poetry --python=python3.11 | ||
- name: Poetry caches | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cache/ | ||
key: ${{ hashFiles('poetry.lock') }} | ||
|
||
- name: Install deps | ||
run: poetry install | ||
|
||
- name: Run end-to-end tests | ||
run: poetry run pytest tests/end_to_end | ||
env: | ||
COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1 }} | ||
COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2 }} | ||
COVERAGE_COMMENT_E2E_ACTION_REF: ${{ steps.extract.outputs.COMMIT_ID }} | ||
COVERAGE_COMMENT_E2E_REPO_SUFFIX: ${{ steps.extract.outputs.PR_NUMBER }} |
This file was deleted.
Oops, something went wrong.
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