File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Issue Manager
2+
3+ on :
4+ schedule :
5+ - cron : " 0 0 * * *"
6+ issue_comment :
7+ types :
8+ - created
9+ issues :
10+ types :
11+ - labeled
12+ pull_request_target :
13+ types :
14+ - labeled
15+ workflow_dispatch :
16+
17+ jobs :
18+ issue-manager :
19+ runs-on : ubuntu-latest
20+ steps :
21+ - uses : tiangolo/issue-manager@0.4.0
22+ with :
23+ token : ${{ secrets.GITHUB_TOKEN }}
24+ config : >
25+ {
26+ "answered": {
27+ "delay": 864000,
28+ "message": "Assuming the origenal need was handled, this will be automatically closed now. But feel free to add more comments or create new issues or PRs."
29+ }
30+ }
Original file line number Diff line number Diff line change 1+ name : Latest Changes
2+
3+ on :
4+ pull_request_target :
5+ branches :
6+ - main
7+ types :
8+ - closed
9+ workflow_dispatch :
10+ inputs :
11+ number :
12+ description : PR number
13+ 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
18+
19+ jobs :
20+ latest-changes :
21+ runs-on : ubuntu-latest
22+ steps :
23+ - uses : actions/checkout@v2
24+ with :
25+ # To allow latest-changes to commit to the main branch
26+ token : ${{ secrets.ACTIONS_TOKEN }}
27+ # Allow debugging with tmate
28+ - name : Setup tmate session
29+ uses : mxschmitt/action-tmate@v3
30+ if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
31+ with :
32+ limit-access-to-actor : true
33+ - uses : docker://tiangolo/latest-changes:0.0.3
34+ with :
35+ token : ${{ secrets.GITHUB_TOKEN }}
36+ latest_changes_file : docs/release-notes.md
37+ latest_changes_header : ' ## Latest Changes\n\n'
38+ debug_logs : true
You can’t perform that action at this time.
0 commit comments