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