Skip to content
Latchkey

Close inactive issues workflow (codeceptjs/CodeceptJS)

The Close inactive issues workflow from codeceptjs/CodeceptJS, explained and optimized by Latchkey.

A

CI health: A - excellent

Point runs-on at Latchkey and get job timeouts, self-healing for flaky steps, and up to 58% lower cost, applied automatically.

Grade your own workflow free or run it on Latchkey →
Source: codeceptjs/CodeceptJS.github/workflows/close-inactive-issues.ymlLicense MITView source

What it does

This is the Close inactive issues workflow from the codeceptjs/CodeceptJS repository, a real project running GitHub Actions. It is shown here with attribution under its MIT license.

Below, Latchkey shows a faster, safer version produced by its optimization engine.

The workflow

workflow (.yml)
name: Close inactive issues
on:
  schedule:
    - cron: '30 1 * * *'

jobs:
  close-issues:
    runs-on: ubuntu-22.04
    permissions:
      issues: write
      pull-requests: write
    steps:
      - uses: actions/stale@v10
        with:
          days-before-issue-stale: 90
          days-before-issue-close: 365
          stale-issue-label: 'stale'
          stale-issue-message: 'This issue is stale because it has been open for 90 days with no activity.'
          close-issue-message: 'Please reopen and send PR to fix it, as looks like our team could not fix it on our own'
          days-before-pr-stale: -1
          days-before-pr-close: -1
          repo-token: ${{ secrets.GITHUB_TOKEN }}

The same workflow, on Latchkey

Removes redundant runs and caps runaway jobs. Added and changed lines are highlighted.

name: Close inactive issues
on:
  schedule:
    - cron: '30 1 * * *'
 
jobs:
  close-issues:
    timeout-minutes: 30
    runs-on: latchkey-small
    permissions:
      issues: write
      pull-requests: write
    steps:
      - uses: actions/stale@v10
        with:
          days-before-issue-stale: 90
          days-before-issue-close: 365
          stale-issue-label: 'stale'
          stale-issue-message: 'This issue is stale because it has been open for 90 days with no activity.'
          close-issue-message: 'Please reopen and send PR to fix it, as looks like our team could not fix it on our own'
          days-before-pr-stale: -1
          days-before-pr-close: -1
          repo-token: ${{ secrets.GITHUB_TOKEN }}
 

What changed

This workflow runs 1 job per trigger. On Latchkey the same minutes cost up to 58% less than GitHub-hosted, with zero queue time.

Actions used in this workflow