Skip to content

Commit

Permalink
Add Github action for keeping jdk upgrade branch in sync
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Sep 3, 2024
1 parent c455984 commit b0a0056
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/sync-main-to-jdk-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Daily update of JDK update branch with changes from main
name: "Merge main to es-9.0-bump branch"
on:
schedule:
- cron: '0 5 * * *'

jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master

- name: merge
uses: devmasx/[email protected]
with:
type: 'now'
from_branch: main
target_branch: es-9.0-bump
github_token: ${{ secrets.ELASTICSEARCHMACHINE_TOKEN }}

0 comments on commit b0a0056

Please sign in to comment.