Skip to content

Commit e87c203

Browse files
authored
👷 Add GitHub Action latest-changes (tiangolo#20)
1 parent c35cc3d commit e87c203

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/latest-changes.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Latest Changes
2+
3+
on:
4+
pull_request_target:
5+
branches:
6+
- master
7+
types:
8+
- closed
9+
# For manually triggering it
10+
workflow_dispatch:
11+
inputs:
12+
number:
13+
description: PR number
14+
required: true
15+
16+
jobs:
17+
latest-changes:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: docker://tiangolo/latest-changes:0.0.3
22+
with:
23+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)