From 026fba9e0eb3683b84bbebd5a9b7b6ed905f930a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 16 May 2021 20:15:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20Latest=20Changes=20GitHub?= =?UTF-8?q?=20Action=20(#13)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/latest-changes.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/latest-changes.yml 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 }}