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  2%)
  • Loading branch information
Farshad DASHTI authored and Farshad DASHTI committed Oct 9, 2024
1 parent 882977c commit cf7c3ff
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" | awk '/\(%release-note:/{flag=1; next} /%\)/{flag=0} flag')
DESCRIPTION=$(git log -1 --pretty=format:"%b" | awk '/\(%release-note:/{flag=1; sub(/.*\(%release-note:/, ""); next} /%\)/{flag=0; sub(/%\).*/, ""); print; next} flag {print}')
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 cf7c3ff

Please sign in to comment.