mirror of https://github.com/tiangolo/fastapi.git
26 lines
559 B
YAML
26 lines
559 B
YAML
name: Latest Changes
|
|
|
|
on:
|
|
pull_request_target:
|
|
branches:
|
|
- master
|
|
types:
|
|
- closed
|
|
workflow_dispatch:
|
|
inputs:
|
|
number:
|
|
description: PR number
|
|
required: true
|
|
|
|
jobs:
|
|
latest-changes:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: docker://tiangolo/latest-changes:0.0.3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
latest_changes_file: docs/en/docs/release-notes.md
|
|
latest_changes_header: '## Latest Changes\n\n'
|
|
debug_logs: true
|