diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e94f22d6f03..de01f9218d6 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -8,9 +8,13 @@ concurrency: on: push: - branches: [ master ] + branches: + - master + - 'test-lfs-pushing' pull_request: - branches: [ master ] + branches: + - master + - 'test-lfs-pushing' jobs: event_file: diff --git a/Jenkinsfile b/Jenkinsfile index 4bfc844dfd9..ec914410208 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -318,14 +318,14 @@ pipeline { echo "newSWTNativesTag: ${newSWTNativesTag}" sh """ # Check for the master-branch as late as possible to have as much of the same behaviour as possible - if [[ '${BRANCH_NAME}' == master ]] || [[ '${BRANCH_NAME}' =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then + if [[ '${BRANCH_NAME}' == 'PR-956' ]] || [[ '${BRANCH_NAME}' =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then if [[ ${params.skipCommit} != true ]]; then #Don't rebase and just fail in case another commit has been pushed to the master/maintanance branch in the meantime pushd eclipse.platform.swt - git push origin HEAD:refs/heads/${BRANCH_NAME} - git push origin refs/tags/${newSWTNativesTag} + git push -f origin HEAD:refs/heads/test-lfs-pushing + #git push origin refs/tags/${newSWTNativesTag} popd exit 0