[Added a script for auto syncing forks of parent repository] Beta #1
All checks were successful
sample gradle build and test / build (pull_request) Successful in 2m10s
All checks were successful
sample gradle build and test / build (pull_request) Successful in 2m10s
This commit is contained in:
parent
4075eb78c8
commit
665361a4e3
@ -1,8 +1,10 @@
|
|||||||
name: sample gradle build and test
|
name: sample gradle build and test
|
||||||
run-name: Build started by $ {{gitea.actor}}
|
run-name: Build started by ${{ gitea.actor }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [test]
|
branches: [test]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tag:
|
tag:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -13,17 +15,20 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Get new version
|
- name: Get new version
|
||||||
id: new_version
|
id: new_version
|
||||||
run: |
|
run: |
|
||||||
VERSION=$(git describe --tags --abbrev=0)
|
VERSION=$(git describe --tags --abbrev=0)
|
||||||
echo ${VERSION}
|
echo "Current version: ${VERSION}"
|
||||||
MAJOR=$(echo ${VERSION} | cut -d "." -f 1)
|
MAJOR=$(echo ${VERSION} | cut -d "." -f 1)
|
||||||
MINOR=$(echo ${VERSION} | cut -d "." -f 2)
|
MINOR=$(echo ${VERSION} | cut -d "." -f 2)
|
||||||
PATCH=$(echo ${VERSION} | cut -d "." -f 3)
|
PATCH=$(echo ${VERSION} | cut -d "." -f 3)
|
||||||
NEW_PATCH=$(( ${PATCH} + 1))
|
NEW_PATCH=$((PATCH + 1))
|
||||||
echo ${NEW_PATCH}
|
NEW_VERSION="${MAJOR}.${MINOR}.${NEW_PATCH}"
|
||||||
echo "new_version=$(echo "${MAJOR}.${MINOR}.${NEW_PATCH}")" >> $GITHUB_OUTPUT
|
echo "New version: ${NEW_VERSION}"
|
||||||
|
echo "new_version=${NEW_VERSION}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
build_tag_push:
|
build_tag_push:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: tag
|
needs: tag
|
||||||
@ -34,31 +39,79 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: JDK setup
|
- name: JDK setup
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: 'zulu'
|
distribution: 'zulu'
|
||||||
java-version: '17'
|
java-version: '17'
|
||||||
|
|
||||||
- name: Validate Gradle Wrapper
|
- name: Validate Gradle Wrapper
|
||||||
uses: gradle/actions/wrapper-validation@v3
|
uses: gradle/actions/wrapper-validation@v3
|
||||||
|
|
||||||
- name: Create and push tag
|
- name: Create and push tag
|
||||||
run: |
|
run: |
|
||||||
echo "NEW_VERSION=${{ needs.tag.outputs.new_version }}"
|
echo "New version: ${{ needs.tag.outputs.new_version }}"
|
||||||
git config --global user.name "${{gitea.actor}}"
|
git config --global user.name "${{ gitea.actor }}"
|
||||||
git config --global user.email "${{ gitea.actor }}@users.noreply.github.com"
|
git config --global user.email "${{ gitea.actor }}@users.noreply.github.com"
|
||||||
git tag -a ${{ needs.tag.outputs.new_version }} -m "Pushing new version ${{ needs.tag.outputs.new_version }}"
|
git tag -a "${{ needs.tag.outputs.new_version }}" -m "Pushing new version ${{ needs.tag.outputs.new_version }}"
|
||||||
git push origin ${{ needs.tag.outputs.new_version }}
|
git push origin "${{ needs.tag.outputs.new_version }}"
|
||||||
|
|
||||||
- name: Log in to Gitea Docker Registry
|
- name: Log in to Gitea Docker Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: 'http://192.168.0.100:8928'
|
registry: 'http://192.168.0.100:8928'
|
||||||
username: hitanshu
|
username: hitanshu
|
||||||
password: ${{ secrets.TOKEN }}
|
password: ${{ secrets.TOKEN }}
|
||||||
|
|
||||||
- name: Gradle build
|
- name: Gradle build
|
||||||
run: ./gradlew bootBuildImage --imageName=192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }}
|
run: ./gradlew bootBuildImage --imageName=192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }}
|
||||||
|
|
||||||
- name: Tag image as test
|
- name: Tag image as test
|
||||||
run: docker tag 192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }} 192.168.0.100:8928/hithomelabs/cftunnels:test
|
run: docker tag 192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }} 192.168.0.100:8928/hithomelabs/cftunnels:test
|
||||||
|
|
||||||
- name: Push to Gitea Registry
|
- name: Push to Gitea Registry
|
||||||
run: |
|
run: |
|
||||||
docker push 192.168.0.100:8928/hithomelabs/cftunnels:test
|
docker push 192.168.0.100:8928/hithomelabs/cftunnels:test
|
||||||
docker push 192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }}
|
docker push 192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }}
|
||||||
|
|
||||||
|
sync_forks:
|
||||||
|
name: Sync All Forks
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: build_tag_push
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Sync all forks via Gitea API
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.TOKEN }}
|
||||||
|
BASE_URL: "https://gitea.hithomelabs.com/api/v1"
|
||||||
|
OWNER: "Hithomelabs"
|
||||||
|
REPO: "CFTunnels"
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
echo "Fetching forks for $OWNER/$REPO..."
|
||||||
|
response=$(curl -s -X GET "$BASE_URL/repos/$OWNER/$REPO/forks" -H "Authorization: token $TOKEN")
|
||||||
|
|
||||||
|
# Extract clone URLs of forked repos (excluding the parent repo)
|
||||||
|
filtered=$(echo "$response" | grep -o '"clone_url":"[^"]*"' | sed 's/"clone_url":"\([^"]*\)"/\1/' | grep -v "/$OWNER")
|
||||||
|
|
||||||
|
echo "Detected forks:"
|
||||||
|
echo "$filtered"
|
||||||
|
|
||||||
|
readarray -t forks <<< "$filtered"
|
||||||
|
|
||||||
|
for fork_url in "${forks[@]}"; do
|
||||||
|
echo "🔄 Syncing fork: $fork_url"
|
||||||
|
git remote add fork "$fork_url" 2>/dev/null || git remote set-url fork "$fork_url"
|
||||||
|
if git push fork main --force >/dev/null 2>&1; then
|
||||||
|
echo "✅ Synced $fork_url successfully"
|
||||||
|
else
|
||||||
|
echo "❌ Failed to sync $fork_url"
|
||||||
|
fi
|
||||||
|
echo
|
||||||
|
done
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user