Skip to content

Refresh jdk23 from Upstream #88

Refresh jdk23 from Upstream

Refresh jdk23 from Upstream #88

Workflow file for this run

name: "Refresh jdk23 from Upstream"
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
env:
UPSTREAM_REMOTE: https://github.com/openjdk/jdk.git
LOCAL_BRANCH: develop
jobs:
refresh-jdk:
runs-on: ubuntu-latest
name: "Update Corretto-23"
if: github.repository_owner == 'corretto'
steps:
- name: "Checkout code"
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ env.LOCAL_BRANCH }}
- name: "Configure the user"
run: |
git config user.email "no-reply@amazon.com"
git config user.name "corretto-github-robot"
- name: "Merge openjdk/jdk:jdk23 to the corretto-23:develop"
run: |
git fetch $UPSTREAM_REMOTE jdk23 || exit 1
git merge -m "Merge upstream-jdk" FETCH_HEAD
- name: "Update Corretto version"
shell: bash
run: bash ./.github/scripts/update-version.sh $UPSTREAM_REMOTE
- name: "Push to the corretto-23"
run: git push origin $LOCAL_BRANCH