Skip to content
View jgleonard's full-sized avatar
Block or Report

Block or report jgleonard

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. aws-ip-ranges aws-ip-ranges Public

    A simple GitHub Flat workflow that pulls in the current AWS IP ranges

    Shell 1 1

  2. Wrapper script to ensure output duri... Wrapper script to ensure output during long-running command
    1
    #!/bin/bash
    2
    while true; do /bin/echo -n .; sleep 30; done &
    3
    eval $*
    4
    STATUS=$?
    5
    kill $!
  3. Actions workflow that bypasses Actio... Actions workflow that bypasses Actions Checks and approves itself in PRs
    1
    name: CI
    2
    
                  
    3
    # This workflow will purposely fail a check, then change that status to success.
    4
    # It will then approve and merge itself when a PR has been created.
    5
    # This is certainly not something you should usually do and I take no responsibility for how it's used.
  4. Dockerfile for Centos image with all... Dockerfile for Centos image with all utils needed for ROSA, AWS, OCP
    1
    FROM centos:8
    2
    
                  
    3
    # Grab dependencies
    4
    RUN yum -y update && yum -y install python3-pip golang git
    5