Skip to content

Commit

Permalink
Require approval for pull request tests
Browse files Browse the repository at this point in the history
  • Loading branch information
F21 committed Jun 24, 2024
1 parent 44e1f5c commit 400f842
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ on:
pull_request_target:

jobs:
test:
approve-pr-tests:
runs-on: ubuntu-latest
environment:
name: "Pull Request Tests"
steps:
- run: "echo 'Execution of tests pending approval'"

test:
needs: ["approve-pr-tests"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 400f842

Please sign in to comment.