Don't mention that GET /_matrix/client/v3/profile/{userId}
can return additional properties because this is true for almost every endpoint
#1152
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
# workflow steps that ought to pass on a PR, but shouldn't block a preview. | |
name: "Checks" | |
on: | |
pull_request: | |
jobs: | |
check-newsfragments: | |
name: "🔎 Check that new newsfragments are valid" | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: scripts/check-newsfragments | |
env: | |
PULL_REQUEST_NUMBER: ${{ github.event.number }} |