Skip to content

Commit

Permalink
Test 4
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed May 6, 2024
1 parent 05d7e77 commit 0253b82
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:

name: performance-${{ matrix.php-versions }}

outputs:
PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }}
PULL_REQUEST_BASE_REF: ${{ github.event.pull_request.base.ref }}
PULL_REQUEST_CLONE_URL: ${{ github.event.pull_request.head.repo.clone_url }}

steps:
- name: Checkout server before PR
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
Expand All @@ -30,12 +35,6 @@ jobs:
submodules: true
ref: ${{ github.event.pull_request.head.ref }}

- name: Apply blueprint
uses: icewind1991/blueprint@v0.1.2
with:
blueprint: tests/blueprints/basic.toml
ref: ${{ github.event.pull_request.head.ref }}

- name: Apply PR
env:
PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }}
Expand Down Expand Up @@ -63,3 +62,9 @@ jobs:
echo pr/'${{ github.event.pull_request.head.ref }}'
echo pr/'${{ github.event.pull_request.base.ref }}'
echo pr/'${{ github.event.pull_request.head.repo.clone_url }}'
- name: Apply PR 4
run: |
echo ${{ needs.init.outputs.PULL_REQUEST_HEAD_REF }}
echo ${{ needs.init.outputs.PULL_REQUEST_BASE_REF }}
echo ${{ needs.init.outputs.PULL_REQUEST_CLONE_URL }}

0 comments on commit 0253b82

Please sign in to comment.