mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 04:17:10 +02:00
Merge pull request #555 from meilisearch/add-changelog
Add a CHANGELOG.md file
This commit is contained in:
commit
67348f2251
2 changed files with 20 additions and 0 deletions
15
.github/workflows/check-updated-changelog.yml
vendored
Normal file
15
.github/workflows/check-updated-changelog.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: Check if the CHANGELOG.md has been updated
|
||||
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
check:
|
||||
name: Test on ${{ matrix.os }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checking the CHANGELOG.md has been updated in this PR
|
||||
run: |
|
||||
set -e
|
||||
git fetch origin ${{ github.base_ref }}
|
||||
git diff --name-only origin/${{ github.base_ref }} | grep -q CHANGELOG.md
|
5
CHANGELOG.md
Normal file
5
CHANGELOG.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
## 0.9.1 (unreleased)
|
||||
|
||||
- Add the number of hits in search result (#541)
|
||||
- Add support for aligned crop in search result (#543)
|
||||
- Sanitize the content displayed in the web interface (#539)
|
Loading…
Add table
Add a link
Reference in a new issue