能否为这个库支持postcss-px-to-viewport插件呢 #25
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: Issue Helper | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
reply-helper: | |
runs-on: ubuntu-latest | |
steps: | |
- name: help wanted | |
if: github.event.label.name == 'help wanted' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
👋 @${{ github.event.issue.user.login }}. We totally like your proposal/feedback, welcome PR。 | |
- name: need reproduce | |
if: github.event.label.name == 'need reproduce' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
👋 @${{ github.event.issue.user.login }}. Thank you for reporting this issue. In order for us to address it effectively, could you please provide a minimal reproducible demo or step? This will help us better understand the problem and work towards a solution. Thank you! |