Upgrade packages, replace mirage-crypto hashes with digestif #76
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 | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [ opened, synchronize, reopened, labeled, unlabeled ] | |
jobs: | |
build: | |
name: Check changelog entry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Check CHANGES.md changed | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no changelog') }} | |
env: | |
BASE_REF: ${{ github.event.pull_request.base.ref }} | |
run: | | |
! git diff --exit-code origin/$BASE_REF -- CHANGES.md |