We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d047655 commit 6587c92Copy full SHA for 6587c92
.github/workflows/build.yml
@@ -3,9 +3,20 @@ name: Build-CI
3
on: [pull_request, push]
4
5
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
14
build:
15
runs-on: ubuntu-latest
16
17
+ needs: [approve] # Require the first step to finish
18
+ environment:
19
+ name: IO
20
steps:
21
- uses: actions/checkout@v2
22
0 commit comments