diff --git a/.github/workflows/latest-changes.yml b/.github/workflows/latest-changes.yml new file mode 100644 index 0000000..02a0e92 --- /dev/null +++ b/.github/workflows/latest-changes.yml @@ -0,0 +1,23 @@ +name: Latest Changes + +on: + pull_request_target: + branches: + - master + types: + - closed + # For manually triggering it + 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 }}