Skip to content

chore(deps): update dependency org.apache.maven.plugins:maven-surefir… #348

chore(deps): update dependency org.apache.maven.plugins:maven-surefir…

chore(deps): update dependency org.apache.maven.plugins:maven-surefir… #348

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Auto commit client updates
on:
workflow_dispatch:
push:
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: GitHub user
run: |
git config --global user.name 'equinix-labs@auto-commit-workflow'
git config --global user.email '[email protected]'
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Apply spec patches
id: patch
run: |
make patch
git add spec/oas3.patched
echo `git commit -m 'sync: apply patches to existing spec'`
- name: Generate code
id: generate
run: |
make generate
git add equinix-openapi-metal
echo `git commit -m 'sync: generate client with patched spec'`
- name: Push changes
run: |
echo `git push`