Skip to content

Run end-to-end tests on external PR approval #2

Run end-to-end tests on external PR approval

Run end-to-end tests on external PR approval #2

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 }}
GH_TOKEN: ${{ github.token }}
- 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 }}