2024-03-05 16:44:26 +00:00
|
|
|
# Copyright 2024 The Forgejo Authors
|
2023-12-16 15:24:55 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
2024-03-05 16:44:26 +00:00
|
|
|
#
|
|
|
|
# To modify this workflow:
|
|
|
|
#
|
|
|
|
# - push it to the wip-ci-end-to-end branch on the forgejo repository
|
|
|
|
# otherwise it will not have access to the secrets required to push
|
|
|
|
# the cascading PR
|
|
|
|
#
|
|
|
|
# - once it works, open a pull request for the sake of keeping track
|
|
|
|
# of the change even if the PR won't run it because it will use
|
|
|
|
# whatever is in the default branch instead
|
|
|
|
#
|
|
|
|
# - after it is merged, double check it works by setting the
|
2024-11-10 10:34:13 +00:00
|
|
|
# run-end-to-end-test on a pull request (any pull request will do)
|
2024-03-05 16:44:26 +00:00
|
|
|
#
|
2024-11-10 10:34:13 +00:00
|
|
|
name: end-to-end
|
|
|
|
|
2023-12-16 15:24:55 +00:00
|
|
|
on:
|
2024-03-05 16:44:26 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'wip-ci-end-to-end'
|
2023-12-16 15:24:55 +00:00
|
|
|
pull_request_target:
|
|
|
|
types:
|
|
|
|
- labeled
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
info:
|
2024-11-13 21:18:35 +00:00
|
|
|
if: vars.ROLE == 'forgejo-coding'
|
2023-12-16 15:24:55 +00:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-08-14 06:56:04 +00:00
|
|
|
image: code.forgejo.org/oci/node:20-bookworm
|
2023-12-16 15:24:55 +00:00
|
|
|
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 }}
|
2024-11-10 10:34:13 +00:00
|
|
|
echo github.event.label
|
2023-12-16 15:24:55 +00:00
|
|
|
cat <<'EOF'
|
2024-11-10 10:34:13 +00:00
|
|
|
${{ toJSON(github.event.label) }}
|
2023-12-16 15:24:55 +00:00
|
|
|
EOF
|
2024-03-05 16:44:26 +00:00
|
|
|
cat <<'EOF'
|
|
|
|
${{ toJSON(github.event) }}
|
|
|
|
EOF
|
2023-12-16 15:24:55 +00:00
|
|
|
|
|
|
|
cascade:
|
2024-03-05 16:44:26 +00:00
|
|
|
if: >
|
2024-11-13 21:59:51 +00:00
|
|
|
vars.ROLE == 'forgejo-coding' && (
|
2024-03-05 16:44:26 +00:00
|
|
|
github.event_name == 'push' ||
|
|
|
|
(
|
2024-11-10 10:34:13 +00:00
|
|
|
github.event.action == 'label_updated' && github.event.label.name == 'run-end-to-end-tests'
|
2024-03-05 16:44:26 +00:00
|
|
|
)
|
|
|
|
)
|
2023-12-16 15:24:55 +00:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-08-14 06:56:04 +00:00
|
|
|
image: code.forgejo.org/oci/node:20-bookworm
|
2023-12-16 15:24:55 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-03-05 16:44:26 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
|
|
|
show-progress: 'false'
|
|
|
|
- uses: actions/cascading-pr@v2
|
2023-12-16 15:24:55 +00:00
|
|
|
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 }}
|
2024-03-06 01:09:19 +00:00
|
|
|
origin-ref: ${{ github.event_name == 'push' && github.event.ref || '' }}
|
2023-12-16 15:24:55 +00:00
|
|
|
destination-url: https://code.forgejo.org
|
|
|
|
destination-fork-repo: cascading-pr/end-to-end
|
|
|
|
destination-repo: forgejo/end-to-end
|
2024-03-20 16:32:06 +00:00
|
|
|
destination-branch: main
|
2023-12-16 15:24:55 +00:00
|
|
|
destination-token: ${{ secrets.END_TO_END_CASCADING_PR_DESTINATION }}
|
|
|
|
close-merge: true
|
|
|
|
update: .forgejo/cascading-pr-end-to-end
|