Rename Irmin.Node.S.effect type to read_effect #4117
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: Changelog check | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [ opened, synchronize, reopened, labeled, unlabeled ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: git diff | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-changelog-needed') }} | |
env: | |
BASE_REF: ${{ github.event.pull_request.base.ref }} | |
run: | | |
! git diff --exit-code origin/$BASE_REF -- CHANGES.md |