Skip to content

Schedule Friday 0700 #11

Schedule Friday 0700

Schedule Friday 0700 #11

name: Schedule Friday 0700
on:
schedule:
- cron: '0 7 * * 5'
jobs:
Add-Update-Label-to-Issues-Weekly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/github-script@v6
env:
IN_PROGRESS_COLUMN_ID: ${{ secrets.IN_PROGRESS_COLUMN_ID }}
with:
script: |
const { IN_PROGRESS_COLUMN_ID } = process.env;
const script = require('./github-actions/trigger-schedule/add-update-label-weekly/add-label.js');
script({ g: github, c: context }, IN_PROGRESS_COLUMN_ID);