-
-
Notifications
You must be signed in to change notification settings - Fork 19.4k
New Integration tests (example split continuation) #5492
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 9 commits
a13e252
555e726
d9da9ad
421a7dd
23ad7ed
6551198
c377c1c
2e372c6
b6d2038
120c48a
659bb61
41cecb0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Integration Tests | ||
|
||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get the branch name | ||
id: get_branch | ||
run: echo ::set-output name=branch::$(echo ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}) | ||
|
||
- name: Get the originating repository | ||
id: get_repo | ||
run: | | ||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then | ||
echo ::set-output name=repo::${{ github.event.pull_request.head.repo.full_name }} | ||
else | ||
echo ::set-output name=repo::${{ github.repository }} | ||
fi | ||
|
||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3.0.0 | ||
UlisesGascon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
with: | ||
token: "${{ secrets.PAT_INTEGRATION_TESTS}}" | ||
UlisesGascon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
repository: expressjs/examples | ||
event-type: integration-tests | ||
client-payload: '{"branch": "${{ steps.get_branch.outputs.branch }}", "repo": "${{ steps.get_repo.outputs.repo }}"}' |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.