mirror of
https://github.com/meteor/meteor.git
synced 2026-01-09 07:38:15 -05:00
25 lines
603 B
YAML
25 lines
603 B
YAML
name: Inactive Issues Management
|
|
|
|
on:
|
|
schedule:
|
|
# “At 01:00 on Saturday.”
|
|
- cron: '0 1 * * 6'
|
|
# Allows to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
manage-inactive-issues:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Manage inactive issues
|
|
uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
const script = require('./.github/scripts/inactive-issues.js')
|
|
await script({github, context})
|