mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
a65a1cd416
This replaces an internal tool that we have been running on a private Jenkins server.
27 lines
507 B
YAML
27 lines
507 B
YAML
name: Update Issues
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# Allows for manual triggering.
|
|
schedule:
|
|
# Run every 30 minutes
|
|
- cron: '*/30 * * * *'
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
update-issues:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Update Issues
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
cd .github/workflows/tools/update-issues
|
|
npm install
|
|
node main.js
|