When checking for Power Admin State, ignore FRU component slots that are empty #9672
Workflow file for this run
This file contains hidden or 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
| 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: 1 | |
| approval_mode: ALL | |
| pr_number: ${{ github.event.pull_request.number }} | |
| require_all_approvals_latest_commit: false | |
| limit_org_teams_to_codeowners_file: true |