Apply metadata from the pre-MIRA model to the post-MIRA model if the name of variables matches #2682
Workflow file for this run
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: Lint Generated Types | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_call: | |
push: | |
paths: | |
- 'packages/client/hmi-client/src/types/Types.ts' | |
- 'packages/server/src/main/java/**' | |
branches: ['main'] | |
pull_request: | |
paths: | |
- 'packages/client/hmi-client/src/types/Types.ts' | |
- 'packages/server/src/main/java/**' | |
branches: ['main'] | |
jobs: | |
lintTypes: | |
name: Lint Generated Types | |
runs-on: ubuntu-24.04 | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java v17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: gradle | |
- name: Check Generated Types | |
run: ./gradlew generateTypeScript | |
- name: Commit all changed files | |
uses: stefanzweifel/git-auto-commit-action@7d0ca8f849305c56d36f992cfb1519b1af5b33f8 | |
with: | |
commit_message: "chore: update generated types" |