chore(deps-dev): bump aws-cdk-lib from 2.172.0 to 2.173.0 (#5731) #3771
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Drafter | |
# PROCESS | |
# | |
# 1. Enumerate all PRs in merged state | |
# 2. Filter out any PR labeled `skip-changelog` | |
# 3. Updates or creates a new release in Draft mode | |
# USAGE | |
# | |
# Always run on merged PRs or manually via GitHub UI for debugging purposes. | |
# | |
# see .github/release-drafter.yml for configuration | |
on: | |
push: | |
branches: | |
- develop | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
update_release_draft: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # create release in draft mode | |
steps: | |
- uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 # v5.20.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |