Introduce a separate GHA workflow for Pull Request Validation to validate the correct commit hashes #2
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: Pull Request Validations | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
concurrency: | |
group: ci-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-gradle-project: | |
name: Build Latest commit and run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project sources using merge commit hash | |
uses: actions/checkout@v4 | |
- name: Build repository and run tests | |
uses: ./.github/workflows/composite-actions/build-run-tests/action.yml |