Brent Rubell 2021-11-29 10:28:49 -05:00 committed by GitHub
parent d047655176
commit 6587c92bb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,9 +3,20 @@ name: Build-CI
on: [pull_request, push]
jobs:
approve: # First step
runs-on: ubuntu-latest
steps:
- name: Approve
run: echo For security reasons, all pull requests to this repository need to be approved first before running any automated CI.
build:
runs-on: ubuntu-latest
needs: [approve] # Require the first step to finish
environment:
name: IO
steps:
- uses: actions/checkout@v2