mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 04:11:18 +01:00
994a487bb0
(cherry picked from commit0b43b1f091
) (cherry picked from commitcfc205f438
) (cherry picked from commitebeb421177
) (cherry picked from commit083329e0a0
) [CI] end to end tests (squash) use cascading-pr/end-to-end (cherry picked from commit8cad18b6bf
) (cherry picked from commit44a3ba1fcf
) [CI] end to end tests (squash) use cascading-pr/end-to-end (part 2) (cherry picked from commit33dbb715e0
) (cherry picked from commite1e08786ec
) (cherry picked from commit763aee7005
) (cherry picked from commit161bc4ced0
)
52 lines
1.7 KiB
YAML
52 lines
1.7 KiB
YAML
# SPDX-License-Identifier: MIT
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- closed
|
|
- labeled
|
|
|
|
jobs:
|
|
info:
|
|
runs-on: docker
|
|
container:
|
|
image: node:20-bookworm
|
|
steps:
|
|
- name: event
|
|
run: |
|
|
echo github.event.pull_request.head.repo.fork = ${{ github.event.pull_request.head.repo.fork }}
|
|
echo github.event.action = ${{ github.event.action }}
|
|
echo github.event.pull_request.merged = ${{ github.event.pull_request.merged }}
|
|
echo github.event.pull_request.labels.*.name
|
|
cat <<'EOF'
|
|
${{ toJSON(github.event.pull_request.labels.*.name) }}
|
|
EOF
|
|
|
|
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
|
|
destination-fork-repo: cascading-pr/end-to-end
|
|
destination-repo: forgejo/end-to-end
|
|
destination-branch: main
|
|
destination-token: ${{ secrets.END_TO_END_CASCADING_PR_DESTINATION }}
|
|
close-merge: true
|
|
update: .forgejo/cascading-pr-end-to-end
|