File tree 3 files changed +68
-50
lines changed
3 files changed +68
-50
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
default : ' unstable'
14
14
15
15
jobs :
16
- docker_build_and_publish :
16
+ docker_build_and_publish_github :
17
17
runs-on : [Bootstrap]
18
18
steps :
19
19
- name : Set up QEMU
52
52
build-args : |
53
53
"BRANCH=${{ github.event.inputs.upstream_branch }}"
54
54
tags : ghcr.io/chia-network/chia:${{ github.event.inputs.image_tag }}
55
+
56
+ docker_build_and_publish_dockerhub :
57
+ runs-on : ubuntu-latest
58
+ steps :
59
+ - name : Set up QEMU
60
+ uses : docker/setup-qemu-action@v1
61
+
62
+ - name : Set up Docker Buildx
63
+ uses : docker/setup-buildx-action@v1
64
+
65
+ - name : Login to DockerHub
66
+ uses : docker/login-action@v1
67
+ with :
68
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
69
+ password : ${{ secrets.DOCKERHUB_PAT }}
70
+
71
+ - name : Checkout repo
72
+ uses : actions/checkout@v2
73
+
74
+ - name : Docker Prune
75
+ run : docker system prune --all
76
+
77
+ - name : Build and push
78
+ uses : docker/build-push-action@v2
79
+ with :
80
+ context : .
81
+ platforms : linux/amd64,linux/arm64
82
+ no-cache : true
83
+ push : true
84
+ build-args : |
85
+ "BRANCH=${{ github.event.inputs.upstream_branch }}"
86
+ tags : chianetwork/chia-docker:${{ github.event.inputs.image_tag }}
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : ' Close stale issues'
3
+ on :
4
+ schedule :
5
+ - cron : ' 0 11 * * *'
6
+
7
+ jobs :
8
+ stale :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : chia-network/stale@main
12
+ with :
13
+ operations-per-run : 10000
14
+ ascending : true
15
+ days-before-issue-stale : 14
16
+ days-before-issue-close : 7
17
+ days-before-pr-stale : 60
18
+ days-before-pr-close : -1
19
+ exempt-all-pr-milestones : true
20
+ exempt-all-issue-milestones : true
21
+ exempt-all-assignees : true
22
+ stale-issue-label : stale-issue
23
+ stale-pr-label : stale-pr
24
+ remove-stale-when-updated : true
25
+ stale-issue-message : >
26
+ 'This issue has been flagged as stale as there has been no
27
+ activity on it in 14 days. If this issue is still affecting you
28
+ and in need of review, please update it to keep it open.'
29
+ close-issue-message : >
30
+ 'This issue was automatically closed because it has been flagged
31
+ as stale and subsequently passed 7 days with no further activity.'
32
+ stale-pr-message : >
33
+ 'This PR has been flagged as stale due to no activity for over 60
34
+ days. It will not be automatically closed, but it has been given
35
+ a stale-pr label and should be manually reviewed.'
You can’t perform that action at this time.
0 commit comments