This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
fix(deps): update logback monorepo to v1.5.14 #369
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
# 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 'bot@equinix.noreply.github.com' | |
- 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` |