components-template/.github/workflows/pr_from_upstream.yml

132 lines
4.8 KiB
YAML
Raw Normal View History

2024-11-05 02:36:57 +00:00
name: "Sync with Upstream and Create PR"
on:
workflow_dispatch:
workflow_call:
jobs:
sync-upstream:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2024-11-05 14:06:20 +00:00
uses: actions/checkout@v4
2024-11-05 02:36:57 +00:00
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0 # Retrieve full history to allow merging
2024-11-05 13:18:16 +00:00
- name: Generate a token for Rekku
if: ${{ github.repository == 'RetroDECK/RetroDECK' }}
id: generate-rekku-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.REKKU_APP_ID }}
private-key: ${{ secrets.REKKU_PRIVATE_KEY }}
repositories: "RetroDECK,Cooker"
owner: "RetroDECK"
- name: Configuring Git
run: |
git config --global protocol.file.allow always
git config --global user.name "Rekku"
git config --global user.email "rekku@retrodeck.net"
2024-11-05 02:36:57 +00:00
- name: Set default values for UPSTREAM_REPO and TARGET_BRANCH if not set
run: |
# Use the current repository name if UPSTREAM_REPO is not set
2024-11-05 06:22:56 +00:00
: "${UPSTREAM_REPO:=${{ github.event.repository.name }}}"
2024-11-05 02:36:57 +00:00
: "${TARGET_BRANCH:=master}"
2024-11-05 06:22:56 +00:00
# Format the repository name for flathub, ensure no trailing spaces
2024-11-05 02:36:57 +00:00
UPSTREAM_REPO="https://github.com/flathub/${UPSTREAM_REPO}"
2024-11-05 06:22:56 +00:00
echo "UPSTREAM_REPO=${UPSTREAM_REPO}" >> $GITHUB_ENV
echo "TARGET_BRANCH=${TARGET_BRANCH}" >> $GITHUB_ENV
2024-11-05 02:36:57 +00:00
- name: Sync from Upstream Repository
2024-11-05 13:49:57 +00:00
env:
BRANCH_NAME: "sync-${{ github.run_id }}" # Temporary branch name for the PR
2024-11-05 02:36:57 +00:00
run: |
2024-11-05 13:58:19 +00:00
echo "Syncing from upstream repository ${{ env.UPSTREAM_REPO }} on branch ${{ env.TARGET_BRANCH }}"
echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_ENV
# Fetch and delete the branch if it exists locally
git fetch origin
if git rev-parse --verify "$BRANCH_NAME" >/dev/null 2>&1; then
echo "Branch $BRANCH_NAME exists locally. Deleting it."
git branch -D "$BRANCH_NAME"
fi
# Check if the branch exists on the remote and delete it if it does
if git ls-remote --heads origin "$BRANCH_NAME" | grep "$BRANCH_NAME"; then
echo "Branch $BRANCH_NAME exists on the remote. Deleting it."
git push origin --delete "$BRANCH_NAME"
fi
# Fetch changes from the upstream repository without merging
2024-11-05 13:58:19 +00:00
git fetch "${{ env.UPSTREAM_REPO }}" "${{ env.TARGET_BRANCH }}"
# Create a new branch and apply the upstream changes
2024-11-05 13:49:57 +00:00
git checkout -b "$BRANCH_NAME"
git reset --hard FETCH_HEAD
# Check if there are any changes to commit
if git diff --exit-code origin/${{ env.TARGET_BRANCH }}; then
echo "No changes detected from upstream. Exiting without creating PR."
2024-11-05 14:15:41 +00:00
fi
2024-11-05 13:38:55 +00:00
- name: Push changes to new branch
if: success()
run: |
2024-11-05 13:58:19 +00:00
git push origin "${{ env.BRANCH_NAME }}"
2024-11-05 13:38:55 +00:00
2024-11-05 03:02:38 +00:00
- name: Create Pull Request
2024-11-05 13:38:55 +00:00
if: success()
2024-11-05 14:03:24 +00:00
uses: peter-evans/create-pull-request@v7.0.5
2024-11-05 02:36:57 +00:00
with:
2024-11-05 13:34:32 +00:00
token: ${{ steps.generate-rekku-token.outputs.token || secrets.GITHUB_TOKEN }}
2024-11-05 13:58:19 +00:00
commit-message: "Sync with upstream changes from ${{ env.UPSTREAM_REPO }}"
2024-11-05 13:34:32 +00:00
branch: ${{ env.BRANCH_NAME }}
2024-11-05 13:58:19 +00:00
title: "Sync with upstream ${{ env.UPSTREAM_REPO }}"
2024-11-05 02:36:57 +00:00
body: |
This PR merges the latest changes from the upstream repository:
2024-11-05 13:58:19 +00:00
- **Repository**: ${{ env.UPSTREAM_REPO }}
- **Branch**: ${{ env.TARGET_BRANCH }}
2024-11-05 02:36:57 +00:00
## Conflict Resolution Instructions
If there are conflicts in this PR, you can resolve them locally by following these steps:
1. **Fetch the remote branch**:
```bash
2024-11-05 13:34:32 +00:00
git fetch origin ${{ env.BRANCH_NAME }}
2024-11-05 02:36:57 +00:00
```
2. **Checkout the branch**:
```bash
2024-11-05 13:34:32 +00:00
git checkout ${{ env.BRANCH_NAME }}
2024-11-05 02:36:57 +00:00
```
3. **Merge the upstream branch manually**:
```bash
2024-11-05 13:58:19 +00:00
git fetch https://github.com/flathub/${{ env.UPSTREAM_REPO }} ${{ env.TARGET_BRANCH }}
2024-11-05 02:36:57 +00:00
git merge FETCH_HEAD
```
4. **Resolve any conflicts**:
Open each conflicted file and manually resolve the conflicts. Then mark each file as resolved:
```bash
git add <file-with-conflicts>
```
5. **Complete the merge**:
```bash
git commit
```
6. **Push the resolved branch**:
```bash
2024-11-05 13:34:32 +00:00
git push origin ${{ env.BRANCH_NAME }}
2024-11-05 02:36:57 +00:00
```
2024-11-05 14:15:41 +00:00
base: ${{ env.TARGET_BRANCH }}