Test Template PR: kev/period #390
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 app-rails PR Environment Checks | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| required: true | |
| type: string | |
| commit_hash: | |
| required: true | |
| type: string | |
| pull_request: | |
| jobs: | |
| 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.pull_request.state == 'open' | |
| with: | |
| app_name: "app-rails" | |
| environment: "dev" | |
| pr_number: ${{ inputs.pr_number || github.event.number }} | |
| commit_hash: ${{ inputs.commit_hash || github.event.pull_request.head.sha }} |