diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 6d6a9bf74d23..e285e2717d80 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -12,7 +12,7 @@ Network: `mainnet`/`testnet`/`local` if you are running a local node, please provide the following information: op-node version: `op-node version` -op-geth version: `op-node -v` +op-geth version: `op-geth -v` OS & Version: Windows/Linux/OSX #### Expected behaviour diff --git a/.github/workflows/close-stale.yml b/.github/workflows/close-stale.yml index fe1d1703ad1f..0a1a5fe8b62f 100644 --- a/.github/workflows/close-stale.yml +++ b/.github/workflows/close-stale.yml @@ -9,10 +9,11 @@ jobs: steps: - uses: actions/stale@v4 with: - stale-pr-message: 'This PR is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 5 days.' + stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 5 days.' + close-issue-message: 'The issue is closed due to long inactivity. You can reopen it for further questions or comments.' stale-issue-label: 'S-stale' exempt-pr-labels: exempt-stale - days-before-issue-stale: 999 - days-before-pr-stale: 14 + days-before-pr-stale: 999 + days-before-issue-stale: 14 days-before-close: 5 repo-token: ${{ secrets.GITHUB_TOKEN }}