30 lines
1.2 KiB
YAML
30 lines
1.2 KiB
YAML
name: Merge core/template-android-project to this repo
|
|
env:
|
|
TOKEN: ${{ secrets.PUSH_TOKEN }}
|
|
|
|
run-name: Merge core/template-android-project to ${{ gitea.repository }}
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
merge-if-needed:
|
|
if: ${{ !contains(gitea.repository, 'core/template-android-project' ) }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "Merge core/template-android-project to ${{ gitea.repository }}"
|
|
- run: |
|
|
git config --global credential.helper '!f() { sleep 1; echo "username=vladimir-shperling=${{ TOKEN }}"; }; f'
|
|
git clone https://sicampus.ru/gitea/${{ gitea.repository }}
|
|
git remote add upstream https://sicampus.ru/gitea/core/template-android-project.git
|
|
git fetch upstream
|
|
git rebase upstream/main
|
|
git push --force
|
|
echo "OK"
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
- run: echo "I'm merge correct"
|
|
|