2023-10-27 00:18:22 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
on:
|
|
|
|
pull_request_target:
|
|
|
|
types:
|
|
|
|
- closed
|
|
|
|
- labeled
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
cascade:
|
|
|
|
runs-on: docker
|
|
|
|
container:
|
|
|
|
image: node:20-bookworm
|
|
|
|
if: >
|
|
|
|
github.event.pull_request.head.repo.fork == false &&
|
|
|
|
(
|
|
|
|
(
|
|
|
|
github.event.action == 'closed' && github.event.pull_request.merged
|
|
|
|
) ||
|
|
|
|
(
|
|
|
|
github.event.action == 'label_updated' && contains(github.event.pull_request.labels.*.name, 'ready-to-merge')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/cascading-pr@v1
|
|
|
|
with:
|
|
|
|
origin-url: ${{ env.GITHUB_SERVER_URL }}
|
|
|
|
origin-repo: ${{ github.repository }}
|
|
|
|
origin-token: ${{ secrets.END_TO_END_CASCADING_PR_ORIGIN }}
|
|
|
|
origin-pr: ${{ github.event.pull_request.number }}
|
|
|
|
destination-url: https://code.forgejo.org
|
2023-11-07 13:33:48 +01:00
|
|
|
destination-repo: cascading-pr/end-to-end
|
2023-10-27 00:18:22 +02:00
|
|
|
destination-repo: forgejo/end-to-end
|
|
|
|
destination-branch: main
|
|
|
|
destination-token: ${{ secrets.END_TO_END_CASCADING_PR_DESTINATION }}
|
2023-11-07 13:33:48 +01:00
|
|
|
close-merge: true
|
2023-10-27 00:18:22 +02:00
|
|
|
update: .forgejo/cascading-pr-end-to-end
|