Issue Management #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Management | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs daily at midnight UTC. | |
workflow_dispatch: # Allows us to manually trigger the action. | |
jobs: | |
manage-issues: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Manage inactive issues | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const manageIssues = require('./.github/scripts/manage-issues.js'); | |
await manageIssues({ context, github }); |