UHB Deployment Workflow Scheduler #1224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UHB Deployment Workflow Scheduler | |
on: | |
schedule: | |
- cron: "50 18 * * *" | |
workflow_dispatch: {} | |
env: | |
GIT_NAME: "${{ secrets.GIT_BOT_NAME }}" | |
GIT_EMAIL: "${{ secrets.GIT_BOT_EMAIL }}" | |
GITHUB_TOKEN: "${{ secrets.BOT_REPO_PAT }}" | |
jobs: | |
trigger: | |
name: Trigger action | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
python_version: | |
- "3.11" | |
os: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Clone repository | |
with: | |
token: "${{ secrets.BOT_REPO_PAT }}" | |
- name: Create local change | |
run: | | |
date +%s > "${{ github.workspace }}/.trigger" | |
- name: Commit changes | |
run: | | |
git config --local user.email "$GIT_EMAIL" | |
git config --local user.name "$GIT_NAME" | |
git commit -m "[Ultimate Hosts Blacklist][Deployment Scheduler]" -a | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.BOT_REPO_PAT }} | |
branch: ${{ github.ref }} |