Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aiagentwithdhruv avatar

Github Actions Deploy

  • 1 installs
  • 5 repo stars
  • Updated June 22, 2026
  • aiagentwithdhruv/euron-future-proof-automation

github-actions-deploy is a Claude Code skill that deploys Python automations to run on a cron schedule using GitHub Actions.

About

github-actions-deploy is a Claude Code skill that deploys Python automations to run on a schedule using GitHub Actions. It writes a workflow file with cron and manual triggers, configures repository secrets, and covers scheduling gotchas. A developer uses it to run recurring tasks for free without a server.

  • Deploys Python automations to run on a cron schedule via GitHub Actions
  • Provides a ready workflow.yml with schedule and manual dispatch triggers
  • Documents secrets handling, cron schedules, and common gotchas

Github Actions Deploy by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,173 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

github-actions-deploy capabilities & compatibility

Free for public repos; private repos get 2,000 min/month

Capabilities
ci cd deploy · cron scheduling · workflow config
Works with
github
Use cases
ci cd · devops
Pricing
Free
From the docs

What github-actions-deploy says it does

Deploy any automation to run on schedule using GitHub Actions. Use when user asks to deploy with cron, schedule an automation, run code automatically, or deploy for free.
SKILL.md
Deploy any Python automation to run on a schedule (cron) using GitHub Actions. Free for public repos. No server needed.
SKILL.md
**Public repos = unlimited minutes** — private repos get 2,000 min/month free.
SKILL.md
npx skills add https://github.com/aiagentwithdhruv/euron-future-proof-automation --skill github-actions-deploy

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars5
Last updatedJune 22, 2026
Repositoryaiagentwithdhruv/euron-future-proof-automation

What it does

Deploy a Python automation to run on a cron schedule via GitHub Actions with no server.

Who is it for?

Running recurring Python tasks for free without managing a server

Skip if: Persistent bots or jobs longer than the 6-hour per-job limit

When should I use this skill?

Asked to deploy with cron, schedule an automation, or run code automatically

What you get

A scheduled GitHub Actions workflow running the automation on cron

  • GitHub Actions workflow file

By the numbers

  • 6 common cron schedule examples
  • 6 documented gotchas
  • 5-minute minimum cron interval

Files

SKILL.mdMarkdownGitHub ↗

GitHub Actions Deployment

Goal

Deploy any Python automation to run on a schedule (cron) using GitHub Actions. Free for public repos. No server needed.

When to Use

  • Daily/hourly/weekly automated tasks (social media posting, news digest, scraping, reports)
  • Anything that runs, does its job, and exits (not a persistent bot)
  • Student-friendly: $0 cost, no infrastructure

Prerequisites

  • GitHub account
  • Project in a git repo
  • requirements.txt in the project

Step-by-Step

1. Create the workflow file

mkdir -p .github/workflows

2. Write the workflow

Create .github/workflows/automate.yml:

name: Run Automation

on:
  schedule:
    # Runs daily at 9:00 AM UTC (2:30 PM IST)
    - cron: '0 9 * * *'
  workflow_dispatch:  # Manual trigger button in GitHub UI

jobs:
  run:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Set up Python
        uses: actions/setup-python@v5
        with:
          python-version: '3.11'

      - name: Install dependencies
        run: pip install -r requirements.txt

      - name: Run automation
        run: python tools/post_all.py --linkedin "$LINKEDIN_TEXT"
        env:
          EURI_API_KEY: ${{ secrets.EURI_API_KEY }}
          LINKEDIN_ACCESS_TOKEN: ${{ secrets.LINKEDIN_ACCESS_TOKEN }}
          LINKEDIN_PERSON_URN: ${{ secrets.LINKEDIN_PERSON_URN }}
          BLOTATO_API_KEY: ${{ secrets.BLOTATO_API_KEY }}
          BLOTATO_X_ID: ${{ secrets.BLOTATO_X_ID }}
          BLOTATO_INSTAGRAM_ID: ${{ secrets.BLOTATO_INSTAGRAM_ID }}
          BLOTATO_YOUTUBE_ID: ${{ secrets.BLOTATO_YOUTUBE_ID }}

3. Add secrets to GitHub

Go to: Repo → Settings → Secrets and variables → Actions → New repository secret

Add each key from .env as a secret. NEVER hardcode keys in the workflow file.

4. Push to GitHub

git add .github/workflows/automate.yml
git commit -m "Add GitHub Actions deployment"
git push origin main

5. Test manually

Go to: Repo → Actions tab → "Run Automation" → "Run workflow" button

6. Verify

Check the Actions tab for green checkmark. Check the target platform (LinkedIn, Telegram, etc.) for output.

Common Cron Schedules

ScheduleCron Expression
Every hour0 * * * *
Daily at 9 AM UTC0 9 * * *
Twice daily (9 AM + 6 PM UTC)0 9,18 * * *
Every Monday at 9 AM0 9 * * 1
Every 15 minutes*/15 * * * *
First of every month0 0 1 * *

Gotchas

1. Cron is UTC only — convert to your timezone. IST = UTC + 5:30. 2. Minimum interval is 5 minutes — GitHub doesn't support faster. 3. Schedule can be delayed — GitHub may delay runs by 5-15 min during peak load. 4. Max 6 hours per job — if your automation takes longer, split it. 5. Public repos = unlimited minutes — private repos get 2,000 min/month free. 6. Secrets are NOT available in forks — only in the original repo.

Debugging

# Check logs: Repo → Actions → click the failed run → click the job → read logs
# Re-run: Click "Re-run all jobs" button
# Test locally first: python tools/post_all.py (always test before pushing)

---

Schema

Inputs

NameTypeRequiredDescription
project_pathstringNoPath to the project (default: current directory)
schedulestringNoCron expression (default: daily at 9 AM UTC)
scriptstringYesPython script to run (e.g., tools/post_all.py)

Outputs

NameTypeDescription
workflow_filefile_pathCreated .github/workflows/automate.yml
deployedbooleanWhether push to GitHub succeeded

Credentials

NameSource
All project .env keysGitHub Repo → Settings → Secrets

Composable With

Any automation project — Social Media, Telegram Bot, Scraper, PDF Filler, etc.

Cost

Free (public repos), 2,000 min/month (private repos)

Related skills

DevOps & CI/CDdeployinfra

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.