Update Issues #43382
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
# Install this in .github/workflows/ to automate issue maintenance. | |
name: Update Issues | |
on: | |
workflow_dispatch: | |
# Allows for manual triggering. | |
schedule: | |
# Run every 30 minutes | |
- cron: '*/30 * * * *' | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
update-issues: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
repository: shaka-project/shaka-github-tools | |
- name: Update Issues | |
env: | |
# Use SHAKA_BOT_TOKEN if found, otherwise the default GITHUB_TOKEN. | |
GITHUB_TOKEN: ${{ secrets.SHAKA_BOT_TOKEN || secrets.GITHUB_TOKEN }} | |
run: | | |
cd update-issues | |
npm ci | |
node main.js |