Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
DOCKERHUB_REPOSITORY_INPUT: ${{ inputs.dockerhub_repository }}
HEAD_REPOSITORY: ${{ github.event.pull_request.head.repo.full_name }}
CURRENT_REPOSITORY: ${{ github.repository }}
PULL_REQUEST_AUTHOR: ${{ github.event.pull_request.user.login }}
run: |
set -euo pipefail

Expand All @@ -81,7 +82,7 @@ jobs:
echo "promote-dockerhub=false" >> "$GITHUB_OUTPUT"
fi

if [[ "$EVENT_NAME" == "pull_request" && "$HEAD_REPOSITORY" != "$CURRENT_REPOSITORY" ]]; then
if [[ "$EVENT_NAME" == "pull_request" && ( "$HEAD_REPOSITORY" != "$CURRENT_REPOSITORY" || "$PULL_REQUEST_AUTHOR" == "dependabot[bot]" ) ]]; then
echo "run-privileged-jobs=false" >> "$GITHUB_OUTPUT"
else
echo "run-privileged-jobs=true" >> "$GITHUB_OUTPUT"
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project are documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.0] - 2026-08-09
## [2.0.0] - 2026-08-10

This is a **major** release representing a deliberate modernization of the Static Content Provider. The application keeps its focus — a small, read-only, framework-first static content origin for CDN and segregated asset-host scenarios — but the implementation, configuration contract, container, and DevOps are fully modernized for .NET 10 and contemporary cloud-native patterns.

Expand Down Expand Up @@ -120,7 +120,7 @@ This is the initial release of the Static Content Provider.
- Last-Modified header support for HTTP conditional requests,
- Basic license and documentation.

[2.0.0]: https://github.com/codebeltnet/web-cdn-origin/compare/1.4.0...HEAD
[2.0.0]: https://github.com/codebeltnet/web-cdn-origin/compare/1.4.0...2.0.0
[1.4.0]: https://github.com/codebeltnet/web-cdn-origin/compare/1.3.0...1.4.0
[1.3.0]: https://github.com/codebeltnet/web-cdn-origin/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/codebeltnet/web-cdn-origin/compare/1.1.5...1.2.0
Expand Down
Loading