Skip to content

Commit

Permalink
Fixes #2220
Browse files Browse the repository at this point in the history
  • Loading branch information
poorvi4 committed Jul 25, 2022
1 parent d65b47d commit 18335f5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/schedule-fri-0700.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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@v2
- uses: actions/github-script@v4
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);

0 comments on commit 18335f5

Please sign in to comment.