chore: simplify code generation logic for a faster and better UX #1089
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: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
- ready_for_review | |
paths: | |
- '**.go' | |
- '**/go.mod' | |
- '**/go.sum' | |
jobs: | |
changelog: | |
if: contains(github.event.pull_request.title, '[skip changelog]') == false && | |
contains(github.event.pull_request.labels.*.name, 'skip/changelog') == false && | |
github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
name: Changelog | |
steps: | |
- id: changelog | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
ENDPOINT: repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files | |
SELECTOR: 'map(select(.filename == "CHANGELOG.md")) | length' | |
run: gh api "$ENDPOINT" --jq "$SELECTOR" | xargs -I{} echo "modified={}" | tee -a $GITHUB_OUTPUT | |
- if: steps.changelog.outputs.modified == '0' | |
env: | |
MESSAGE: | | |
docs/changelogs/ was not modified in this PR. Please do one of the options in [changelog management conventions](https://github.com/filecoin-project/lotus/blob/master/CONTRIBUTING.md#changelog-management) | |
run: | | |
echo "::error::${MESSAGE//$'\n'/%0A}" | |
exit 1 |