Skip to content

Commit a70bc9d

Browse files
LanikSJrestyled-io[bot]restyled-commits
authored
Update README.md (#212)
* Update README.md * Restyled by prettier-markdown (#213) Co-authored-by: Restyled.io <[email protected]> * Disable Docker Hub GitHub Action * Update Lock Threads and Add Stale Issues --------- Co-authored-by: restyled-io[bot] <32688539+restyled-io[bot]@users.noreply.github.com> Co-authored-by: Restyled.io <[email protected]>
1 parent 57fa665 commit a70bc9d

7 files changed

+78
-27
lines changed

.github/workflows/docker-hub.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: docker-hub
1+
name: Docker Hub
22

33
on:
4-
push:
5-
branches: [ master ]
6-
paths:
7-
- Dockerfile
8-
- entrypoint.*
9-
- requirements.txt
4+
# push:
5+
# branches: [ master ]
6+
# paths:
7+
# - Dockerfile
8+
# - entrypoint.*
9+
# - requirements.txt
1010
workflow_dispatch:
1111

1212
env:

.github/workflows/docker-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: docker-publish
1+
name: Docker Publish
22

33
on:
44
push:

.github/workflows/lock-threads.yml

+19-7
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,34 @@
1-
name: 'lock-threads'
1+
name: Lock Threads
22

33
on:
4+
push:
5+
paths:
6+
- .github/workflows/lock-threads.yml
7+
branches-ignore:
8+
- dependabot/**
49
schedule:
5-
- cron: '0 9 * * *'
6-
workflow_dispatch:
10+
# Once every day at 1am UTC
11+
- cron: "0 1 * * *"
12+
issue_comment:
713

814
permissions:
915
issues: write
1016
pull-requests: write
1117

1218
concurrency:
13-
group: lock
14-
cancel-in-progress: true
19+
group: lock-threads
20+
cancel-in-progress: ${{ github.event_name != 'issue_comment' }}
1521

1622
jobs:
17-
action:
23+
lock-threads:
1824
runs-on: ubuntu-latest
1925
steps:
20-
- uses: dessant/lock-threads@v5
26+
- name: Lock Outdated Threads
27+
uses: dessant/lock-threads@v5
2128
with:
29+
github-token: ${{ secrets.GITHUB_TOKEN }}
2230
process-only: 'issues, prs'
31+
issue-inactive-days: 30
32+
add-issue-labels: outdated
33+
pr-inactive-days: 30
34+
add-pr-labels: outdated

.github/workflows/shiftleft-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: shiftleft-scan
1+
name: ShiftLeft Scan
22

33
on: pull_request
44

@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
output: reports
1919

20-
- name: Upload report
20+
- name: Upload Report
2121
uses: github/codeql-action/upload-sarif@v3
2222
with:
2323
sarif_file: reports

.github/workflows/stale-issues.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Manage Stale Issues
2+
3+
on:
4+
push:
5+
paths:
6+
- .github/workflows/stale-issues.yml
7+
branches-ignore:
8+
- dependabot/**
9+
schedule:
10+
# Once every day at midnight UTC
11+
- cron: "0 0 * * *"
12+
issue_comment:
13+
14+
permissions:
15+
issues: write
16+
pull-requests: write
17+
18+
concurrency:
19+
group: stale-issues
20+
cancel-in-progress: ${{ github.event_name != 'issue_comment' }}
21+
22+
jobs:
23+
stale:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Mark/Close Stale Issues and Pull Requests
27+
uses: actions/stale@v9
28+
with:
29+
repo-token: ${{ secrets.GITHUB_TOKEN }}
30+
days-before-stale: 21
31+
days-before-close: 7
32+
stale-issue-message: >
33+
This issue has been automatically marked as stale because it has not had
34+
recent activity. It will be closed if no further activity occurs.
35+
stale-pr-message: >
36+
This pull request has been automatically marked as stale because it has not had
37+
recent activity. It will be closed if no further activity occurs.
38+
exempt-issue-labels: "help wanted,in progress"
39+
exempt-pr-labels: "help wanted,in progress"

.github/workflows/update-license.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: update-copyright-year
1+
name: Update License
22

33
on:
44
schedule:
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
commitAuthorEmail: [email protected]
18-
- name: Merge pull request
18+
- name: Merge Pull Request
1919
env:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2121
run: |

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ Then you can use it as a service from any Docker orchestration tools.
3838

3939
## Examples
4040

41-
[AWS Elastic Container Service (ECS)](https://aws.amazon.com/ecs/)
42-
[Azure Container Service (ACS)](https://azure.microsoft.com/en-us/blog/azure-container-service-preview/)
43-
[Cloud Foundry’s Diego](https://docs.cloudfoundry.org/concepts/diego/diego-architecture.html)
44-
[CoreOS Fleet](https://coreos.com/using-coreos/clustering/)
45-
[Docker Swarm](https://www.docker.com/products/docker-swarm)
46-
[Google Container Engine](https://cloud.google.com/container-engine/)
47-
[Kubernetes](https://kubernetes.io)
48-
[Mesosphere Marathon](https://mesosphere.github.io/marathon/)
41+
- [AWS Elastic Container Service (ECS)](https://aws.amazon.com/ecs/)
42+
- [Azure Container Service (ACS)](https://azure.microsoft.com/en-us/blog/azure-container-service-preview/)
43+
- [Cloud Foundry’s Diego](https://docs.cloudfoundry.org/concepts/diego/diego-architecture.html)
44+
- [CoreOS Fleet](https://coreos.com/using-coreos/clustering/)
45+
- [Docker Swarm](https://www.docker.com/products/docker-swarm)
46+
- [Google Container Engine](https://cloud.google.com/container-engine/)
47+
- [Kubernetes](https://kubernetes.io)
48+
- [Mesosphere Marathon](https://mesosphere.github.io/marathon/)
4949

5050
Source: [8 Container Orchestration Tools to Know](https://www.linux.com/NewS/8-OPEN-SOURCE-CONTAINER-ORCHESTRATION-TOOLS-KNOW)
5151

0 commit comments

Comments
 (0)