Skip to content

close-prs

close-prs #201

Workflow file for this run

name: close-prs
on:
schedule:
## https://crontab.guru/examples.html
# Every day
- cron: '0 1 * * *'
jobs:
close-pending:
name: close-pending
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Execute close-pending script
if: github.repository == 'AlexRogalskiy/github-action-open-jscharts'
run: ./.github/scripts/close-pending.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}