[WebToolsE2E][Aspire] When running the "Tutorial: Use .NET Aspire messaging integrations in ASP.NET Core" document using .NET CLI, there is an error. #3674
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
name: Profanity filter | |
on: | |
issue_comment: | |
types: [created, edited] | |
issues: | |
types: [opened, edited, reopened] | |
pull_request: | |
types: [opened, edited, reopened] | |
permissions: | |
contents: read | |
jobs: | |
apply-filter: | |
name: Apply profanity filter | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Profanity filter | |
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' }} | |
uses: IEvangelist/profanity-filter@main | |
id: profanity-filter | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
replacement-strategy: bold-grawlix |