add crop handling to app readme #2443
This file contains hidden or 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: Error codes and events | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main, develop ] | |
| pull_request: | |
| jobs: | |
| inspect: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Validate error codes | |
| run: .github/workflows/scripts/validate_errorcodes.sh | |
| - run: mkdir tmp | |
| - name: Find all error codes | |
| run: .github/workflows/scripts/list_all_errorcodes.sh > tmp/errorcodes.md | |
| - name: Archive error codes | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: error-codes | |
| path: tmp/errorcodes.md | |
| - name: Validate events | |
| run: .github/workflows/scripts/validate_events.sh |