set current pr number in e2e test workflow

This commit is contained in:
mahula 2024-02-24 08:30:01 +01:00
parent 262ad19bcd
commit 5fcec2879f

View File

@ -20,13 +20,13 @@ jobs:
cd cypress/
node create-cucumber-html-report.js
- name
uses: jwalton/gh-find-current-pr@master
id: pr-number
- name: E2E | if tests failed, upload report
if: ${{ failure() && steps.e2e-run.conclusion == 'failure' }}
run: |
echo github.event.number = ${{ github.event.number }}
echo github.event.pull_request.number = ${{ github.event.pull_request.number }}
echo github.event.issue.number = ${{ github.event.issue.number }}
# uses: actions/upload-artifact@v4
# with:
# name: boilerplate-e2e-test-report-pr-${{ github.event.number }}
# path: /home/runner/work/boilerplate-e2e-cypress-cucumber/boilerplate-e2e-cypress-cucumber/cypress/reports/e2e_html_report
uses: actions/upload-artifact@v4
with:
name: boilerplate-e2e-test-report-pr-${{ steps.pr-number.outputs.pr }}
path: /home/runner/work/boilerplate-e2e-cypress-cucumber/boilerplate-e2e-cypress-cucumber/cypress/reports/e2e_html_report