issue-labeled.yml 993 B

1234567891011121314151617181920212223242526
  1. name: Issue Labeled
  2. on:
  3. issues:
  4. types: [labeled]
  5. permissions:
  6. contents: read
  7. jobs:
  8. issue-labeled:
  9. permissions:
  10. # allow actions-cool/issues-helper to update issues and PRs
  11. issues: write
  12. pull-requests: write
  13. if: github.repository == 'twbs/bootstrap'
  14. runs-on: ubuntu-latest
  15. steps:
  16. - name: awaiting reply
  17. if: github.event.label.name == 'needs-example'
  18. uses: actions-cool/issues-helper@v3
  19. with:
  20. actions: "create-comment"
  21. token: ${{ secrets.GITHUB_TOKEN }}
  22. body: |
  23. Hello @${{ github.event.issue.user.login }}. Bug reports must include a **live demo** of the issue. Per our [contributing guidelines](https://github.com/twbs/bootstrap/blob/main/.github/CONTRIBUTING.md), please create a reduced test case on [CodePen](https://codepen.io/) or [StackBlitz](https://stackblitz.com/) and report back with your link, Bootstrap version, and specific browser and Operating System details.