From 1958e035fc185e45f2f0855093ae2ff57e1a510e Mon Sep 17 00:00:00 2001 From: Dustin Farris Date: Sat, 28 Jun 2025 15:34:54 -0700 Subject: [PATCH] build: do not lock issues Allow folks to revisit issues at any time if they want to restart the conversation. See Discourse conversation: https://org-roam.discourse.group/t/org-roam-development-status-may-2025/3810/15 Amend: d099204129e8421c5d523d48fa483f476180868a --- .github/workflows/tidy-issues.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/tidy-issues.yml b/.github/workflows/tidy-issues.yml index 7ddec8c..b028175 100644 --- a/.github/workflows/tidy-issues.yml +++ b/.github/workflows/tidy-issues.yml @@ -71,12 +71,6 @@ jobs: This pull request was automatically closed due to **6 months of inactivity** followed by 2 weeks notice. - **To reopen:** - - If still relevant, comment below or push new commits - - Or create a new PR with updated changes - - If this PR is not reopened in 2 weeks, it will be locked. - # Timing (6 months + 2 weeks) days-before-stale: 182 # ~6 months days-before-close: 14 # 2 weeks notice @@ -97,26 +91,3 @@ jobs: echo "2. Click 'Run workflow'" echo "3. Leave 'Dry run mode' unchecked" echo "4. Click 'Run workflow'" - - lock: - runs-on: ubuntu-latest - needs: stale - # Only run lock job if NOT in dry run mode - if: github.event.inputs.dry_run != 'true' - steps: - # Lock issues/PRs that have been closed for 2 weeks or more - - name: Lock closed issues - uses: dessant/lock-threads@v5 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - issue-inactive-days: 14 - issue-lock-reason: 'resolved' - process-only: 'issues' - - - name: Lock closed PRs - uses: dessant/lock-threads@v5 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - pr-inactive-days: 14 - pr-lock-reason: 'resolved' - process-only: 'prs'