From 35297581e2292d46e9080f11dea00c4206a1c2fe Mon Sep 17 00:00:00 2001 From: JamBalaya56562 Date: Mon, 1 Jun 2026 23:59:43 +0000 Subject: [PATCH] ci: fix stale cliff.toml remote owner (awslabs -> aws) git-cliff's GitHub API enrichment was pointed at the wrong owner (awslabs/aws-lambda-web-adapter), which 404s. Correct it to aws/aws-lambda-web-adapter so PR/author links resolve. Scope note: this PR originally also reworked the Changelog workflow to open a PR instead of pushing to protected main, but per maintainer feedback the release pipeline will be refactored with release-plz instead, so this PR is narrowed to the one obvious cliff.toml fix. Co-Authored-By: Claude Opus 4.8 --- cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index e0e71e9f..bf465cf4 100644 --- a/cliff.toml +++ b/cliff.toml @@ -67,5 +67,5 @@ tag_pattern = "v[0-9].*" sort_commits = "newest" [remote.github] -owner = "awslabs" +owner = "aws" repo = "aws-lambda-web-adapter"