File uploads: Uploaded files with spaces in the filename are not URL-encoded, making them inaccessible for download #756
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: Greet first-time contributors | |
on: [pull_request, issues] | |
jobs: | |
greeting: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
issues: write | |
steps: | |
- name: Greet first-time contributors | |
uses: actions/first-interaction@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: 'Welcome to Manifest, thank you for adding your first issue !' | |
pr-message: 'Welcome to Manifest, thank you for adding your first PR !' |