Bump coverlet.collector from 6.0.4 to 8.0.1 #154
Workflow file for this run
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: Greetings | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| issues: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Greet new contributors | |
| uses: actions/first-interaction@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: | | |
| 👋 Thanks for opening your first issue! We appreciate your interest in C# Algorithms. | |
| We'll review it as soon as possible. In the meantime, feel free to check out our [Contributing Guidelines](https://github.com/aalhour/C-Sharp-Algorithms/blob/master/.github/CONTRIBUTING.md). | |
| pr-message: | | |
| 🎉 Congratulations on your first pull request to C# Algorithms! | |
| Thank you for contributing! We'll review your changes soon. Make sure all CI checks pass. |