Skip to content

Commit

Permalink
Trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Farshad DASHTI authored and Farshad DASHTI committed Oct 9, 2024
1 parent d505b53 commit 23c5b13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
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; next} /*%\)/{flag=0} flag')
if [[ -z "$DESCRIPTION" ]]; then
DESCRIPTION="No release notes provided."
Expand Down
1 change: 0 additions & 1 deletion src/DfE.CoreLibs.Caching/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ dotnet add package DfE.CoreLibs.Caching

## Usage


**Usage in Handlers**

1. **Service Registration:** You use `ICacheService` in your handlers to store and retrieve data from memory to avoid unnecessary processing and database queries. Here's how you register the caching service:
Expand Down

0 comments on commit 23c5b13

Please sign in to comment.