Skip to content

Commit

Permalink
馃懛 Add latest-changes GitHub Action (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangolo committed Nov 4, 2023
1 parent 4d1b7e0 commit 401738f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/latest-changes.yml
Expand Up @@ -6,18 +6,24 @@ on:
- master
types:
- closed
# For manually triggering it
workflow_dispatch:
inputs:
number:
description: PR number
required: true
debug_enabled:
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: 'false'

jobs:
latest-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker://tiangolo/latest-changes:0.0.3
- uses: actions/checkout@v4
with:
token: ${{ secrets.ISSUE_MANAGER_LATEST_CHANGES }}
- uses: docker://tiangolo/latest-changes:0.2.0
# - uses: tiangolo/latest-changes@main
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 401738f

Please sign in to comment.