2023-10-11 22:32:24 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
name: test
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: SELF@vTest
|
|
|
|
with:
|
2023-10-12 15:12:52 +02:00
|
|
|
origin-url: ${{ env.GITHUB_SERVER_URL }}
|
2023-10-11 22:32:24 +02:00
|
|
|
origin-repo: user1/originrepo
|
|
|
|
origin-token: ${{ secrets.ORIGIN_TOKEN }}
|
2023-10-12 19:13:07 +02:00
|
|
|
origin-pr: ${{ github.event.pull_request.number }}
|
2023-10-12 15:12:52 +02:00
|
|
|
destination-url: ${{ env.GITHUB_SERVER_URL }}
|
2023-10-11 22:32:24 +02:00
|
|
|
destination-repo: user2/destinationrepo
|
|
|
|
destination-token: ${{ secrets.DESTINATION_TOKEN }}
|
2023-10-12 15:12:52 +02:00
|
|
|
destination-branch: main
|
2023-10-11 22:32:24 +02:00
|
|
|
update: upgraded
|
|
|
|
debug: true
|