Repo Dispatcher #313
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
#================================================= | |
# https://github.com/P3TERX/Actions-OpenWrt | |
# Description: Build OpenWrt using GitHub Actions | |
# Lisence: MIT | |
# Author: P3TERX | |
# Blog: https://p3terx.com | |
#================================================= | |
name: Repo Dispatcher | |
on: | |
# push: | |
# branches: | |
# - master | |
schedule: | |
- cron: '0 6 * * *' | |
workflow_dispatch: | |
inputs: | |
param: | |
description: 'parameter' | |
required: false | |
default: '' | |
env: | |
TOKEN_MGZ0227: ${{ secrets.TOKEN_MGZ0227 }} | |
TZ: Asia/Shanghai | |
jobs: | |
build: | |
runs-on: Ubuntu-latest | |
#runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: cancel running workflows | |
uses: styfle/cancel-workflow-action@main | |
if: contains(github.event.inputs.param, 'cw') | |
with: | |
workflow_id: all | |
access_token: ${{ secrets.TOKEN_MGZ0227 }} | |
- name: Load Settings.ini | |
run: | | |
source "${GITHUB_WORKSPACE}/devices/common/settings.ini" | |
if [ -f "devices/${{matrix.target}}/settings.ini" ]; then | |
source "${GITHUB_WORKSPACE}/devices/${{matrix.target}}/settings.ini" | |
fi | |
echo "REPO_URL=${REPO_URL}" >> $GITHUB_ENV | |
echo "REPO_BRANCH=${REPO_BRANCH}" >> $GITHUB_ENV | |
- name: Trigger Packages Update | |
run: | | |
gitdate=$(curl -H "Authorization: token ${{ secrets.TOKEN_MGZ0227 }}" -s "https://api.github.com/repos/mgz0227/OP-Packages/actions/runs" | jq -r '.workflow_runs[0].created_at') | |
gitdate=$(date -d "$gitdate" +%s) | |
now=$(date -d "$(date)" +%s) | |
if [[ $(expr $gitdate + 120) < $now ]]; then | |
curl -X POST https://api.github.com/repos/mgz0227/OP-Packages/dispatches \ | |
-H "Accept: application/vnd.github.everest-preview+json" \ | |
-H "Authorization: token ${{ secrets.TOKEN_MGZ0227 }}" \ | |
--data '{"event_type": "update"}' | |
fi | |
- name: Trigger Compile | |
run: | | |
sudo timedatectl set-timezone "$TZ" | |
curl \ | |
-X POST https://api.github.com/repos/${{ github.repository }}/dispatches \ | |
-H "Accept: application/vnd.github.everest-preview+json" \ | |
-H "Authorization: token ${{ secrets.TOKEN_MGZ0227 }}" \ | |
-d '{"event_type": "x86_64 ${{ github.event.inputs.param }}", "client_payload": {"target": "x86_64"}}' | |
# curl \ | |
# -X POST https://api.github.com/repos/${{ github.repository }}/dispatches \ | |
# -H "Accept: application/vnd.github.everest-preview+json" \ | |
# -H "Authorization: token ${{ secrets.TOKEN_MGZ0227 }}" \ | |
# -d '{"event_type": "x86_generic ${{ github.event.inputs.param }}", "client_payload": {"target": "x86_generic"}}' | |