Skip to content

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yml

+11
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,20 @@ name: Build-CI
33
on: [pull_request, push]
44

55
jobs:
6+
7+
approve: # First step
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Approve
12+
run: echo For security reasons, all pull requests to this repository need to be approved first before running any automated CI.
13+
614
build:
715
runs-on: ubuntu-latest
816

17+
needs: [approve] # Require the first step to finish
18+
environment:
19+
name: IO
920
steps:
1021
- uses: actions/checkout@v2
1122

0 commit comments

Comments
 (0)