File tree 7 files changed +78
-27
lines changed
7 files changed +78
-27
lines changed Original file line number Diff line number Diff line change 1
- name : docker-hub
1
+ name : Docker Hub
2
2
3
3
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
10
10
workflow_dispatch :
11
11
12
12
env :
Original file line number Diff line number Diff line change 1
- name : docker-publish
1
+ name : Docker Publish
2
2
3
3
on :
4
4
push :
Original file line number Diff line number Diff line change 1
- name : ' lock-threads '
1
+ name : Lock Threads
2
2
3
3
on :
4
+ push :
5
+ paths :
6
+ - .github/workflows/lock-threads.yml
7
+ branches-ignore :
8
+ - dependabot/**
4
9
schedule :
5
- - cron : ' 0 9 * * *'
6
- workflow_dispatch :
10
+ # Once every day at 1am UTC
11
+ - cron : " 0 1 * * *"
12
+ issue_comment :
7
13
8
14
permissions :
9
15
issues : write
10
16
pull-requests : write
11
17
12
18
concurrency :
13
- group : lock
14
- cancel-in-progress : true
19
+ group : lock-threads
20
+ cancel-in-progress : ${{ github.event_name != 'issue_comment' }}
15
21
16
22
jobs :
17
- action :
23
+ lock-threads :
18
24
runs-on : ubuntu-latest
19
25
steps :
20
- - uses : dessant/lock-threads@v5
26
+ - name : Lock Outdated Threads
27
+ uses : dessant/lock-threads@v5
21
28
with :
29
+ github-token : ${{ secrets.GITHUB_TOKEN }}
22
30
process-only : ' issues, prs'
31
+ issue-inactive-days : 30
32
+ add-issue-labels : outdated
33
+ pr-inactive-days : 30
34
+ add-pr-labels : outdated
Original file line number Diff line number Diff line change 1
- name : shiftleft-scan
1
+ name : ShiftLeft Scan
2
2
3
3
on : pull_request
4
4
17
17
with :
18
18
output : reports
19
19
20
- - name : Upload report
20
+ - name : Upload Report
21
21
uses : github/codeql-action/upload-sarif@v3
22
22
with :
23
23
sarif_file : reports
Original file line number Diff line number Diff line change
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"
Original file line number Diff line number Diff line change 1
- name : update-copyright-year
1
+ name : Update License
2
2
3
3
on :
4
4
schedule :
15
15
with :
16
16
token : ${{ secrets.GITHUB_TOKEN }}
17
17
commitAuthorEmail :
[email protected]
18
- - name : Merge pull request
18
+ - name : Merge Pull Request
19
19
env :
20
20
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
21
21
run : |
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ Then you can use it as a service from any Docker orchestration tools.
38
38
39
39
## Examples
40
40
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/ )
49
49
50
50
Source: [ 8 Container Orchestration Tools to Know] ( https://www.linux.com/NewS/8-OPEN-SOURCE-CONTAINER-ORCHESTRATION-TOOLS-KNOW )
51
51
You can’t perform that action at this time.
0 commit comments