Skip to content

Commit 5757b24

Browse files
authored
Merge branch 'main' into main
2 parents 7e851e8 + 6312851 commit 5757b24

File tree

3 files changed

+68
-50
lines changed

3 files changed

+68
-50
lines changed

.github/workflows/Chia-Docker-Arm.yml

-49
This file was deleted.

.github/workflows/Chia-Docker.yml

+33-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
default: 'unstable'
1414

1515
jobs:
16-
docker_build_and_publish:
16+
docker_build_and_publish_github:
1717
runs-on: [Bootstrap]
1818
steps:
1919
- name: Set up QEMU
@@ -52,3 +52,35 @@ jobs:
5252
build-args: |
5353
"BRANCH=${{ github.event.inputs.upstream_branch }}"
5454
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 }}

.github/workflows/stale-issue.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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.'

0 commit comments

Comments
 (0)