Skip to content

jbranchaud is testing scheduled GitHub Actions πŸš€ #171

jbranchaud is testing scheduled GitHub Actions πŸš€

jbranchaud is testing scheduled GitHub Actions πŸš€ #171

name: Scheduled Actions Demo
run-name: ${{ github.actor }} is testing scheduled GitHub Actions πŸš€
on:
schedule:
- cron: '0 14-23 * * 1-5'
- cron: '30 14-23 * * 1-5'
jobs:
Scheduled-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: node scheduled-script.js
- run: echo "🍏 This job's status is ${{ job.status }}."