mirror of https://github.com/wg-easy/wg-easy
committed by
GitHub
15 changed files with 2923 additions and 1762 deletions
@ -0,0 +1,3 @@ |
|||
# These are supported funding model platforms |
|||
|
|||
github: weejewel |
@ -0,0 +1,38 @@ |
|||
--- |
|||
name: Bug report |
|||
about: Create a report to help us improve |
|||
title: '' |
|||
labels: '' |
|||
assignees: '' |
|||
|
|||
--- |
|||
|
|||
**Describe the bug** |
|||
A clear and concise description of what the bug is. |
|||
|
|||
**To Reproduce** |
|||
Steps to reproduce the behavior: |
|||
1. Go to '...' |
|||
2. Click on '....' |
|||
3. Scroll down to '....' |
|||
4. See error |
|||
|
|||
**Expected behavior** |
|||
A clear and concise description of what you expected to happen. |
|||
|
|||
**Screenshots** |
|||
If applicable, add screenshots to help explain your problem. |
|||
|
|||
**Desktop (please complete the following information):** |
|||
- OS: [e.g. iOS] |
|||
- Browser [e.g. chrome, safari] |
|||
- Version [e.g. 22] |
|||
|
|||
**Smartphone (please complete the following information):** |
|||
- Device: [e.g. iPhone6] |
|||
- OS: [e.g. iOS8.1] |
|||
- Browser [e.g. stock browser, safari] |
|||
- Version [e.g. 22] |
|||
|
|||
**Additional context** |
|||
Add any other context about the problem here. |
@ -0,0 +1,34 @@ |
|||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. |
|||
# |
|||
# You can adjust the behavior by modifying this file. |
|||
# For more information, see: |
|||
# https://github.com/actions/stale |
|||
name: Mark stale issues and pull requests |
|||
|
|||
on: |
|||
workflow_dispatch: |
|||
schedule: |
|||
- cron: '*/5 * * * *' |
|||
|
|||
jobs: |
|||
stale: |
|||
|
|||
runs-on: ubuntu-latest |
|||
permissions: |
|||
issues: write |
|||
pull-requests: write |
|||
|
|||
steps: |
|||
- uses: actions/stale@v5 |
|||
with: |
|||
days-before-issue-stale: 14 |
|||
days-before-issue-close: 7 |
|||
stale-issue-label: "stale" |
|||
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity." |
|||
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." |
|||
days-before-pr-stale: 30 |
|||
days-before-pr-close: 14 |
|||
stale-pr-message: "This PR is stale because it has been open for 30 days with no activity." |
|||
close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale." |
|||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
|||
operations-per-run: 300 |
File diff suppressed because it is too large
Loading…
Reference in new issue