diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 952472001d0..5a2de8703bf 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -30,7 +30,7 @@ jobs: - 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/README.md#changelog-management) + 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 diff --git a/.github/workflows/pr-title-check.yml b/.github/workflows/pr-title-check.yml index 1f75f286c5f..2bd937c889e 100644 --- a/.github/workflows/pr-title-check.yml +++ b/.github/workflows/pr-title-check.yml @@ -26,7 +26,7 @@ jobs: await github.rest.pulls.createReview({ ...context.repo, pull_number: context.payload.pull_request.number, - body: 'Please update the PR title to match https://github.com/filecoin-project/lotus/blob/master/README.md#pr-title-conventions', + body: 'Please update the PR title to match https://github.com/filecoin-project/lotus/blob/master/CONTRIBUTING.md#pr-title-conventions', event: 'REQUEST_CHANGES' }); core.setFailed('PR title does not match the required format');