Skip to content
Draft
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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ changelog/fragments/
/.ci/ @elastic/elastic-agent-data-plane @elastic/observablt-ci
/.github/actions @elastic/observablt-ci
/.github/workflows @elastic/observablt-ci
/.github/workflows/release-notes.yml @elastic/ingest-docs @elastic/elastic-agent-data-plane
/.github/CODEOWNERS @elastic/beats-tech-leads
/auditbeat/ @elastic/sec-linux-platform
/deploy/ @elastic/elastic-agent-data-plane
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Generate release notes

on:
workflow_dispatch:
inputs:
bc_commit_sha:
description: 'Commit SHA for the build candidate'
type: string
required: true
version:
description: 'Version to be released (for example, `9.2.1`)'
type: string
required: true

jobs:
build-release-notes:
uses: elastic/elastic-agent-changelog-tool/.github/workflows/generate-release-notes.yml@main
with:
product: Beats
labels: docs,forwardport-main,release,skip-changelog,Team:Docs
bc_commit_sha: ${{ inputs.bc_commit_sha }}
version: ${{ inputs.version }}
release_manager: ${{ github.triggering_actor }}
permissions:
contents: write
pull-requests: write