File tree Expand file tree Collapse file tree 5 files changed +24
-2
lines changed Expand file tree Collapse file tree 5 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 66 - ' main'
77 tags-ignore :
88 - ' **'
9+ workflow_dispatch :
910
1011jobs :
1112 test :
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: publish
33on :
44 release :
55 types : [published]
6+ workflow_dispatch :
67
78jobs :
89 publish :
Original file line number Diff line number Diff line change 1+ name : delete-workflow-runs
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ days :
7+ description : ' Number of days.'
8+ required : true
9+ default : 60
10+
11+ jobs :
12+ del_old_runs :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Delete old workflow runs
16+ uses : bencgreen/delete-workflow-runs@main
17+ with :
18+ token : ${{ secrets.GITHUB_TOKEN }}
19+ repository : ${{ github.repository }}
20+ retain_days : ${{ github.event.inputs.days }}
Original file line number Diff line number Diff line change 1- FROM bcgdesign/nginx:alpine3.13-2.1.1
1+ FROM bcgdesign/nginx:alpine3.13-2.1.2
22
33LABEL maintainer="Ben Green <ben@bcgdesign.com>" \
44 org.label-schema.name="Nginx Proxy" \
Original file line number Diff line number Diff line change 1- 2.1.1
1+ 2.1.2
You can’t perform that action at this time.
0 commit comments