mirror of
https://github.com/gofiber/storage.git
synced 2025-12-24 13:29:30 +08:00
20 lines
549 B
YAML
20 lines
549 B
YAML
name: Release Drafter Postgres
|
|
on:
|
|
push:
|
|
# branches to consider in the event; optional, defaults to all
|
|
branches:
|
|
- master
|
|
- main
|
|
paths:
|
|
- 'postgres/**'
|
|
jobs:
|
|
draft_release_postgres:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- uses: release-drafter/release-drafter@v5
|
|
with:
|
|
config-name: release-drafter-postgres.yml
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|