Skip to content

Commit

Permalink
[skip ci] Sync workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Sep 27, 2024
1 parent d2602f3 commit a7c7d60
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ updates:
interval: 'daily'
# Before cache workflow
time: '23:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
labels:
- 'theme: jhipster-internals'
- 'theme: dependencies'
Expand All @@ -46,7 +46,7 @@ updates:
schedule:
interval: 'daily'
time: '12:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'blueprint :paw_prints:'
Expand All @@ -60,7 +60,7 @@ updates:
interval: 'daily'
# Angular workflow is quite big. Give at least 2h interval.
time: '03:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: angular'
Expand Down Expand Up @@ -99,7 +99,7 @@ updates:
schedule:
interval: 'daily'
time: '00:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: dependencies'
Expand All @@ -111,7 +111,7 @@ updates:
schedule:
interval: 'daily'
time: '07:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: front'
Expand All @@ -124,7 +124,7 @@ updates:
schedule:
interval: 'daily'
time: '00:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: dependencies'
Expand All @@ -136,7 +136,7 @@ updates:
schedule:
interval: 'daily'
time: '01:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: react'
Expand Down Expand Up @@ -168,7 +168,7 @@ updates:
schedule:
interval: 'daily'
time: '02:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: vue'
Expand Down Expand Up @@ -196,7 +196,7 @@ updates:
schedule:
interval: 'daily'
time: '00:20'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'theme: docker :whale:'
Expand All @@ -219,7 +219,7 @@ updates:
interval: 'daily'
# Maven doesn't have many PRs, but it triggers every client workflow. Let 2h of interval.
time: '05:00'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'theme: java'
Expand All @@ -230,7 +230,7 @@ updates:
schedule:
interval: 'daily'
time: '08:00'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'theme: java'
Expand All @@ -252,7 +252,7 @@ updates:
schedule:
interval: 'weekly'
time: '00:30'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
labels:
- 'theme: github_actions'
- 'theme: CI builds'
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 'Sync'
on:
workflow_dispatch:
schedule:
- cron: '10 */2 * * *'

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: 'SETUP: Checkout generator-jhipster'
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'Rebase'
run: |
git config --global user.email "[email protected]"
git config --global user.name "Marcelo Shima"
git remote add upstream https://github.com/jhipster/generator-jhipster.git
git remote -v
git fetch upstream main
git branch -va
git branch upstream-main upstream/main
git push origin upstream-main
git checkout main
git rebase upstream/main
git push -f origin
#git fetch origin upstream_main
#git checkout upstream_main
#git rebase upstream/main

0 comments on commit a7c7d60

Please sign in to comment.