Add DP-2.4 test code #246
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is to make sure we have 1 LGTM for business logic and 1 LGTM for code style | |
name: PR Approval Workflow | |
on: | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
check-approvals: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
pull-requests: read | |
steps: | |
- name: Check for required approvals | |
id: check-approvals | |
uses: skymoore/required-approvals@57612e00c501132dfb35ddaff54615b363f8e076 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
read_org_scoped_token: ${{ secrets.READ_ORG_SCOPED_TOKEN }} | |
org_name: openconfig | |
min_approvals: 2 | |
approval_mode: ALL | |
pr_number: ${{ github.event.number }} |