Trying out a auto sync between branches.

This commit is contained in:
Speiger 2022-06-14 09:23:20 +02:00
parent b07bc85114
commit f356d4ab57
2 changed files with 34 additions and 2 deletions

View File

@ -23,8 +23,6 @@ jobs:
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build and Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew generateTestSource test jacocoTestReport --info -Dfull_test_suite=true
- name: Publish Test Result

34
.github/workflows/sync-action.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: Sync Branch
on:
push:
branches: [ master ]
jobs:
build:
name: Sync Branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
cache: gradle
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build and Test
run: ./gradlew generateGithubSource --info -Dfull_test_suite=true
- uses: GuillaumeFalourd/copy-push-files@v1
with:
source_files: src/builder src/main src/test Changelog.md README.md
remote_repository: https://github.com/Speiger/Primitive-Collections
access_token: ${{ secrets.PUSH_TOKEN }}
target_branch: debug