Fix timestamps for data-stream composition #37
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: 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Check for Merge Commits | |
uses: NexusPHP/no-merge-commits@eccbaccbf7981d5c32f965339efc649b5b0d6df4 # v2.1.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |