Browse Source

👷 Add latest-changes GitHub Action (#544)

pull/13907/head
Sebastián Ramírez 2 years ago
committed by GitHub
parent
commit
5729eceb83
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 29
      .github/workflows/latest-changes.yml

29
.github/workflows/latest-changes.yml

@ -0,0 +1,29 @@
name: Latest Changes
on:
pull_request_target:
branches:
- master
types:
- closed
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@v4
with:
token: ${{ secrets.POETRY_VERSION_PLUGIN_LATEST_CHANGES }}
- uses: docker://tiangolo/latest-changes:0.2.0
- uses: tiangolo/latest-changes@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save