OSCER-408: Staff case Activity Report income, compliance UI, and income aggregation fixes #1031
Workflow file for this run
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: CI reporting-app PR Environment Checks | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| required: true | |
| type: string | |
| commit_hash: | |
| required: true | |
| type: string | |
| pull_request: | |
| jobs: | |
| # Fork PRs often fail at configure-aws-credentials (no OIDC). Reliable fork detection in job-level `if` is flaky | |
| # because `pull_request` payload fields differ from the REST API — do not re-add a “fork skip” job without verifying | |
| # in Actions logs. Use branch protection to treat this check as optional for external contributors if needed. | |
| update: | |
| name: " " # GitHub UI is noisy when calling reusable workflows, so use whitespace for name to reduce noise | |
| uses: ./.github/workflows/pr-environment-checks.yml | |
| if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.state == 'open') | |
| with: | |
| app_name: "reporting-app" | |
| environment: "dev" | |
| pr_number: ${{ inputs.pr_number || github.event.number }} | |
| commit_hash: ${{ inputs.commit_hash || github.event.pull_request.head.sha }} |