Skip to content

JayTwoLab/daily-github-actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

daily-github-actions

  • GitHub Actions that work every day

Actions File

  • /.github/workflows/daily-workflow.yml
name: Daily Workflow

on:
  schedule:
    - cron: '0 15 * * *'  # Every midnight Korean time(KST) (UTC 15:00 = KST 00:00)
    # - cron: "0 12 * * 1-4" # Runs Monday through Thursday at 9:00 PM, Korean time

jobs:
  build:
    runs-on: ubuntu-latest # Ubuntu/Linux

    steps:
      - name: Checkout code
        uses: actions/checkout@v3
      
      # - name: Update Ubuntu 
      #  run: sudo apt-get update
      
      # - name: Upgrade Ubuntu
      #  run: sudo apt-get upgrade -y
      
      # - name: Install htop # Install software you need
      #  run: sudo apt-get install -y htop
      
      - name: Run a script
        run: echo "This is a daily run at $(date)" # TODO: Set your own script

License

  • daily-github-actions applies the MIT license.

About

GitHub Actions that work every day

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published