Skip to content

Commit

Permalink
Updated release note indicator
Browse files Browse the repository at this point in the history
(%release-note:Updated release note indicator%)
  • Loading branch information
Farshad DASHTI authored and Farshad DASHTI committed Oct 9, 2024
1 parent 97ce85d commit d0457ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nuget-package-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
id: extract_description
run: |
# Extracts multiline release-note between (%release-note: and %)
DESCRIPTION=$(git log -1 --pretty=format:"%b" | grep -oP '(?<=\(%release-note: ?).*?(?= ?%\))')
DESCRIPTION=$(git log -1 --pretty=format:"%b" | sed -n 's/.*(%release-note:*\([^%]*\) *%).*/\1/p')
if [[ -z "$DESCRIPTION" ]]; then
DESCRIPTION="No release notes provided."
Expand Down
1 change: 1 addition & 0 deletions src/DfE.CoreLibs.Caching/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dotnet add package DfE.CoreLibs.Caching
}
```


2. **Usage in Handlers:** Here's an example of how caching is used in one of your query handlers:

```csharp
Expand Down

0 comments on commit d0457ed

Please sign in to comment.