Error: Failed to send message due to: Error: Error encrypting message: Could not find valid self-signature in key c8ab232c7f675ec4 #7458
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: check-for-emails | |
| on: | |
| issue_comment: | |
| types: [created, edited] | |
| issues: | |
| types: [opened, edited] | |
| jobs: | |
| find_emails: | |
| runs-on: ubuntu-latest | |
| name: Check for emails in issue comments | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Scan comment | |
| id: scan | |
| uses: FlowCrypt/comment-email-address-alerts@v21 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| exemptions: test,example.com,flowcrypt.com | |
| ignoredEmails: flowcrypt.compatibility@gmail.com |