mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
Bumps [tj-actions/verify-changed-files](https://github.com/tj-actions/verify-changed-files) from 17.1.0 to 18.0.0.
- [Release notes](https://github.com/tj-actions/verify-changed-files/releases)
- [Changelog](https://github.com/tj-actions/verify-changed-files/blob/main/HISTORY.md)
- [Commits](2acec78834...eb6d385c0e)
---
updated-dependencies:
- dependency-name: tj-actions/verify-changed-files
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
810 B
YAML
29 lines
810 B
YAML
name: check-generated-files
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
check-ui-static-files:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Generate static files for UI
|
|
run: make ui-static
|
|
|
|
- name: Copy embedded files to Go sources
|
|
run: make prebuild
|
|
|
|
- name: Verify Changed files
|
|
uses: tj-actions/verify-changed-files@eb6d385c0e52fb28e2f6b70e15c835cb3cbfff17
|
|
id: verify-changed-files
|
|
|
|
- name: Some files have changed
|
|
if: steps.verify-changed-files.outputs.files_changed == 'true'
|
|
run: |
|
|
echo "::error Changed files: ${{ steps.verify-changed-files.outputs.changed_files }} -- Please regenerate with make ui-static / make prebuild"
|
|
exit 1
|