File tree Expand file tree Collapse file tree 1 file changed +85
-0
lines changed
Expand file tree Collapse file tree 1 file changed +85
-0
lines changed Original file line number Diff line number Diff line change 1+ #
2+ # Author: Hari Sekhon
3+ # Date: Tue Feb 4 09:53:28 2020 +0000
4+ #
5+ # vim:ts=2:sts=2:sw=2:et
6+ #
7+ # https://github.com/HariSekhon/DevOps-Python-tools
8+ #
9+ # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
10+ #
11+ # https://www.linkedin.com/in/HariSekhon
12+ #
13+
14+ ---
15+ name : Debian 12
16+
17+ on :
18+ push :
19+ branches :
20+ - master
21+ paths-ignore :
22+ - ' **/*.md'
23+ - ' .github/workflows/*'
24+ - ' !.github/workflows/debian_11.yaml'
25+ - ' **/Dockerfile'
26+ - ' **/Jenkinsfile'
27+ - ' **/.envrc*'
28+ - .checkov.yaml
29+ - .dockerignore
30+ - .gcloudignore
31+ - .editorconfig
32+ - ' .gitconfig*'
33+ - .gitignore
34+ - .grype.yaml
35+ - .hound.yml
36+ - .terraformignore
37+ - Jenkinsfile
38+ - .appveyor.yml
39+ - .buildkite/pipeline.yml
40+ - .circleci/config.yml
41+ - .cirrus.yml
42+ - .concourse.yml
43+ - .drone.yml
44+ - .gitlab-ci.yml
45+ - .gocd.yml
46+ - .scrutinizer.yml
47+ - .semaphore/semaphore.yml
48+ - .travis.yml
49+ - .werckerignore
50+ - azure-pipelines.yml
51+ - bitbucket-pipelines.yml
52+ - buddy.yml
53+ - buildspec.yml
54+ - cloudbuild.yaml
55+ - codefresh.yml
56+ - codeship.yml
57+ - shippable.yml
58+ - wercker.yml
59+ workflow_dispatch :
60+ inputs :
61+ debug :
62+ type : boolean
63+ required : false
64+ default : false
65+ schedule :
66+ - cron : ' 0 7 * * *'
67+
68+ permissions :
69+ contents : read
70+
71+ concurrency :
72+ group : ${{ github.ref }}-${{ github.workflow }}
73+ cancel-in-progress : true
74+
75+ jobs :
76+ build :
77+ # github.event.repository context not available in scheduled workflows
78+ # if: github.event.repository.fork == false
79+ if : github.repository_owner == 'HariSekhon'
80+ name : Build
81+ uses : HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
82+ with :
83+ container : debian:12
84+ caches : apt pip cpanm
85+ debug : ${{ github.event.inputs.debug }}
You can’t perform that action at this time.
0 commit comments