From b1252bc6a2ea519125c166c1a25c175db8d12493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 17 Sep 2021 14:11:30 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20Latest=20Changes=20GitHub?= =?UTF-8?q?=20Action=20(#29)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/latest-changes.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..3c9e70c --- /dev/null +++ b/.github/workflows/latest-changes.yml @@ -0,0 +1,25 @@ +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 + with: + # To allow latest-changes to commit to master + token: ${{ secrets.ACTIONS_TOKEN }} + - uses: docker://tiangolo/latest-changes:0.0.3 + with: + token: ${{ secrets.GITHUB_TOKEN }}