Migrate main to 3.3.2.0 #24
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: (5.x) Check email | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
| jobs: | |
| # Checks if the email domain is @wazuh.com, if not the workflow will fail | |
| verify-email: | |
| if: github.repository == 'wazuh/wazuh-indexer-reporting' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: wazuh/wazuh-indexer/.github/actions/5_codeanalysis_emailchecker@main | |
| with: | |
| email_domain: 'wazuh.com, @users.noreply.github.com' | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| error_on_fail: 'true' |