Sign-up form incorrectly treats blank spaces as special characters, causing validation errors #1081
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
############################################################################## | |
############################################################################## | |
# | |
# NOTE! | |
# | |
# Please read the README.md file in this directory that defines what should | |
# be placed in this file | |
# | |
############################################################################## | |
############################################################################## | |
name: Issue Workflow | |
on: | |
issues: | |
types: ['opened'] | |
jobs: | |
Opened-issue-label: | |
name: Adding Issue Label | |
runs-on: ubuntu-latest | |
steps: | |
- uses: Renato66/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
ignore-comments: true | |
default-labels: '["unapproved"]' | |
Issue-Greeting: | |
name: Greeting Message to User | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/first-interaction@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: "Congratulations on making your first Issue! :confetti_ball: If you haven't already, check out our [Contributing Guidelines](https://github.com/PalisadoesFoundation/talawa-admin/blob/develop/CONTRIBUTING.md) and [Issue Reporting Guidelines](https://github.com/PalisadoesFoundation/talawa-admin/blob/develop/ISSUE_GUIDELINES.md) to ensure that you are following our guidelines for contributing and making issues." | |