Bump OCP4 STIG from V2R2/V2R3 to V2R6 #4260
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: Merge Commit Check | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-no-merges-${{ github.event.number || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| validate-merge-commits: | |
| name: Ensure No Merge Commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4 | |
| - name: Check for Merge Commits | |
| uses: NexusPHP/no-merge-commits@109a3342781ddcf26b2fa739f29e8ee9f68b7d8e # v2.4.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |