Arc and ellipse use Radians type #65
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: Verify | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
changelog: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Check `CHANGELOG.md` has changes | |
run: | | |
! git diff --exit-code origin/master HEAD -- CHANGELOG.md | |
- name: Check `CHANGELOG.md` thanks the PR author | |
if: ${{ github.event.pull_request.user.login != 'hecrj' }} | |
run: | | |
sed -n '/## \[Unreleased\]/,/^## /p' CHANGELOG.md | sed -n '/Many thanks to.../,//p' | grep '@${{ github.event.pull_request.user.login }}' |