From e00307bfc158a82114ceda8dd4df575d170245f8 Mon Sep 17 00:00:00 2001 From: John Kasper Svergja Date: Tue, 16 Jan 2024 12:56:23 +0100 Subject: [PATCH] Add generate workflow --- .github/workflows/generate-java.yml | 60 +++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .github/workflows/generate-java.yml diff --git a/.github/workflows/generate-java.yml b/.github/workflows/generate-java.yml new file mode 100644 index 0000000..df5f798 --- /dev/null +++ b/.github/workflows/generate-java.yml @@ -0,0 +1,60 @@ + +on: + push: + branches: + - "**" + - "!main" + paths: + - "src/**" + - "generated/java/dapla-kuben-resource-model/pom.xml" + - ".github/workflows/generate-java.yml" + +# Allow only one generate workflow to run at a time. This avoids race conditions when +# pushing to the same branch. +concurrency: "generate" + +jobs: + generate-java: + runs-on: ubuntu-latest + steps: + - name: Generate token + id: generate_token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.DAPLA_BOT_APP_ID }} + private-key: ${{ secrets.DAPLA_BOT_PRIVATE_KEY }} + + # Checkout using the token. This will persist the token for use in later steps. + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + token: ${{ steps.generate_token.outputs.token }} + + - name: Configure Git + run: | + git config user.name "dapla-bot[bot]" + git config user.email "143391972+dapla-bot[bot]@users.noreply.github.com" + + - name: Generate Java + run: | + pushd generated/java/dapla-kuben-resource-model + rm -rf src/main/java + ./mvnw jsonschema2pojo:generate + popd + + - name: Check for modified files + id: git-check + run: echo modified=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi) >> $GITHUB_OUTPUT + + - name: Commit + if: steps.git-check.outputs.modified == 'true' + run: | + git add -A + git commit -m '[GENERATE] Java classes from JSON Schema' + + - name: Push + if: steps.git-check.outputs.modified == 'true' + run: | + git pull --rebase origin "${GITHUB_REF}" + git push origin "${GITHUB_REF}"