Skip to content

feat(docker): Comprehensive Docker Setup Enhancement with Performance & Security Improvements #36

feat(docker): Comprehensive Docker Setup Enhancement with Performance & Security Improvements

feat(docker): Comprehensive Docker Setup Enhancement with Performance & Security Improvements #36

Workflow file for this run

name: Release Drafter
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize, edited]
permissions:
contents: read
pull-requests: read
jobs:
update_release_draft:
# Only run for same-repo PRs and main branch pushes
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push'
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: release-drafter/release-drafter@v6
with:
config-name: .github/release-drafter.yml
disable-autolabeler: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}