Update Jorje #402
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Jorje | |
on: | |
repository_dispatch: | |
types: | |
- manual-jorje-update | |
workflow_dispatch: | |
schedule: | |
- cron: "0 1 * * *" | |
jobs: | |
jorje: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 11 | |
cache: gradle | |
- name: Run create-jorje-jar.sh | |
run: ./packages/apex-ast-serializer/tools/create-jorje-jar.sh | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
commit-message: Updated jorje | |
title: "Update jorje dependency" | |
branch: updates/jorje | |
token: ${{ secrets.PERSONAL_TOKEN }} |