Support for fallback hubUrls #94
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: Label Issue | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
reply-labeled: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label needs reproduction | |
if: github.event.label.name == 'Needs Reproduction' | |
uses: peter-evans/close-issue@v3 | |
with: | |
close-reason: not_planned | |
comment: | | |
Hello @${{ github.event.issue.user.login }}. | |
Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using [StackBlitz](https://stackblitz.com), [TypeScript Playground](https://www.typescriptlang.org/play) (for type issues), or a separate minimal GitHub repository. | |
Minimal reproductions are required as they save us a lot of time reproducing your config & environment, and trying to reproduce your issue. See [Why reproductions are required](https://antfu.me/posts/why-reproductions-are-required). | |
Please reopen this issue when a reproduction is added. | |
issue-number: ${{ github.event.issue.number }} | |
token: ${{ secrets.GITHUB_TOKEN }} |