Skip to content

On Schedule

On Schedule #1880

Workflow file for this run

name: On Schedule
permissions:
contents: write
pull-requests: write
env:
BUILD_REPO: chaotic-aur
GIT_AUTHOR_EMAIL: [email protected]
GIT_AUTHOR_NAME: GitLab CI
REDIS_SSH_HOST: builds.garudalinux.org
REDIS_SSH_PORT: 400
REDIS_SSH_USER: package-deployer
REPO_NAME: chaotic-aur
CI_HUMAN_REVIEW: true
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Controls when the workflow will run
on:
schedule:
# Hourly
- cron: '0 * * * *'
# Manually
workflow_dispatch:
concurrency:
group: chaotic
cancel-in-progress: false
jobs:
process:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: awalsh128/cache-apt-pkgs-action@v1
with:
packages: shfmt jq rsync
version: 1.0
- name: Execute on-schedule tasks...
id: process
run: |
.ci/on-schedule.sh
if [ -f .ci/schedule-params.txt ]; then
params="$(cat .ci/schedule-params.txt)"
echo "SCHEDULE_PARAMS=$params" >> "$GITHUB_OUTPUT"
fi
outputs:
SCHEDULE_PARAMS: ${{ steps.process.outputs.SCHEDULE_PARAMS }}
schedule:
runs-on: ubuntu-latest
needs: process
container:
image: registry.gitlab.com/garuda-linux/tools/chaotic-manager/manager
steps:
- name: Schedule jobs
run: |
[[ -z ${DEPLOY_KEY+x} ]] && echo "No deploy key available, backing off!" && exit 1
echo "$DEPLOY_KEY" >/app/sshkey
chmod 400 /app/sshkey
bash -c 'eval "$1"; /entry_point.sh "${PARAMS[@]}"' -- "${SCHEDULE_PARAMS}"
env:
SCHEDULE_PARAMS: ${{ needs.process.outputs.SCHEDULE_PARAMS }}
REDIS_PASSWORD: ${{ secrets.REDIS_PASSWORD }}
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
if: ${{ needs.process.outputs.SCHEDULE_PARAMS != '' }}