Skip to content

Commit

Permalink
Update README.md (#212)
Browse files Browse the repository at this point in the history
* Update README.md

* Restyled by prettier-markdown (#213)

Co-authored-by: Restyled.io <commits@restyled.io>

* 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 <commits@restyled.io>
  • Loading branch information
3 people authored Jul 15, 2024
1 parent 57fa665 commit a70bc9d
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 27 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/docker-hub.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: docker-hub
name: Docker Hub

on:
push:
branches: [ master ]
paths:
- Dockerfile
- entrypoint.*
- requirements.txt
# push:
# branches: [ master ]
# paths:
# - Dockerfile
# - entrypoint.*
# - requirements.txt
workflow_dispatch:

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: docker-publish
name: Docker Publish

on:
push:
Expand Down
26 changes: 19 additions & 7 deletions .github/workflows/lock-threads.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,34 @@
name: 'lock-threads'
name: Lock Threads

on:
push:
paths:
- .github/workflows/lock-threads.yml
branches-ignore:
- dependabot/**
schedule:
- cron: '0 9 * * *'
workflow_dispatch:
# Once every day at 1am UTC
- cron: "0 1 * * *"
issue_comment:

permissions:
issues: write
pull-requests: write

concurrency:
group: lock
cancel-in-progress: true
group: lock-threads
cancel-in-progress: ${{ github.event_name != 'issue_comment' }}

jobs:
action:
lock-threads:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v5
- name: Lock Outdated Threads
uses: dessant/lock-threads@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
process-only: 'issues, prs'
issue-inactive-days: 30
add-issue-labels: outdated
pr-inactive-days: 30
add-pr-labels: outdated
4 changes: 2 additions & 2 deletions .github/workflows/shiftleft-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: shiftleft-scan
name: ShiftLeft Scan

on: pull_request

Expand All @@ -17,7 +17,7 @@ jobs:
with:
output: reports

- name: Upload report
- name: Upload Report
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: reports
39 changes: 39 additions & 0 deletions .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Manage Stale Issues

on:
push:
paths:
- .github/workflows/stale-issues.yml
branches-ignore:
- dependabot/**
schedule:
# Once every day at midnight UTC
- cron: "0 0 * * *"
issue_comment:

permissions:
issues: write
pull-requests: write

concurrency:
group: stale-issues
cancel-in-progress: ${{ github.event_name != 'issue_comment' }}

jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Mark/Close Stale Issues and Pull Requests
uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 21
days-before-close: 7
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs.
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs.
exempt-issue-labels: "help wanted,in progress"
exempt-pr-labels: "help wanted,in progress"
4 changes: 2 additions & 2 deletions .github/workflows/update-license.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: update-copyright-year
name: Update License

on:
schedule:
Expand All @@ -15,7 +15,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
commitAuthorEmail: noreply@github.com
- name: Merge pull request
- name: Merge Pull Request
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ Then you can use it as a service from any Docker orchestration tools.

## Examples

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

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

Expand Down

0 comments on commit a70bc9d

Please sign in to comment.