Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Collect Program Data #227

Collect Program Data

Collect Program Data #227

name: Collect Program Data
on:
schedule:
- cron: "7 0 * * *"
workflow_dispatch:
inputs:
TEST:
description: "This is a test ?"
required: true
type: boolean
default: false
jobs:
collect-program-data:
# run only if repo is not a fork
if: github.repository == 'codinasion/codinasion'
name: Collect Program Data
runs-on: "ubuntu-latest"
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Check Program Files
run: |
cd scripts/
python3 program/rename_files.py
- name: Collect Program Data
id: collect-program-data
uses: ./action/
with:
TEST: ${{ inputs.TEST || 'false' }}
# Trigger
TRIGGER_COLLECT_PROGRAM_DATA: true
# Secrets
GITHUB_TOKEN: ${{ secrets.CODINASION_GITHUB_TOKEN }}
- name: Get Time
if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.TEST == 'false')
id: time
uses: nanzm/get-time-action@master
with:
timeZone: UTC+5.5
format: "YYYY-MM-DD-HH-mm-ss"
- name: Commit Program Data
if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.TEST == 'false')
uses: crazy-max/ghaction-github-pages@v3.0.0
with:
target_branch: "program-data"
build_dir: program-data
keep_history: false
committer: Harsh Raj <harshraj8843@users.noreply.github.com>
author: Harsh Raj <harshraj8843@users.noreply.github.com>
commit_message: |
Collect Program Data - ${{ steps.time.outputs.time }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}