BILL-5590: Add descriptor_code support to bank account verification #413
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: Verify Automation Health | |
| on: | |
| pull_request: | |
| types: [opened, reopened, edited, synchronize] | |
| branches: | |
| - main | |
| env: | |
| BASE_BRANCH: main | |
| jobs: | |
| verify_authors: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Get branch names | |
| id: branch-name | |
| uses: tj-actions/branch-names@v4.9 | |
| - name: Check commit authors | |
| run: | | |
| chmod +x scripts/verify_automation_health.sh | |
| ./scripts/verify_automation_health.sh $BASE_BRANCH "${{ steps.branch-name.outputs.current_branch }}" |