Add rhcos4 Profile for BSI Grundschutz #1871
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4 | |
| - name: Check for Merge Commits | |
| uses: NexusPHP/no-merge-commits@8c8c0fc273903ab75038323e3959179e89db480b # v2.2.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |