Skip to content

Commit 401738f

Browse files
authored
👷 Add latest-changes GitHub Action (#16)
1 parent 4d1b7e0 commit 401738f

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/latest-changes.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,24 @@ on:
66
- master
77
types:
88
- closed
9-
# For manually triggering it
109
workflow_dispatch:
1110
inputs:
1211
number:
1312
description: PR number
1413
required: true
14+
debug_enabled:
15+
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
16+
required: false
17+
default: 'false'
1518

1619
jobs:
1720
latest-changes:
1821
runs-on: ubuntu-latest
1922
steps:
20-
- uses: actions/checkout@v2
21-
- uses: docker://tiangolo/latest-changes:0.0.3
23+
- uses: actions/checkout@v4
24+
with:
25+
token: ${{ secrets.ISSUE_MANAGER_LATEST_CHANGES }}
26+
- uses: docker://tiangolo/latest-changes:0.2.0
27+
# - uses: tiangolo/latest-changes@main
2228
with:
2329
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)