Skip to content

Commit

Permalink
[Dead-Hosts::Infrastructure][AuthChecker]
Browse files Browse the repository at this point in the history
a4DCiuGlhAKT-WCrCiSgm3TV
  • Loading branch information
dead-hostsbot committed May 21, 2024
1 parent 4ed70aa commit e77adf8
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
60 changes: 60 additions & 0 deletions .github/workflows/worker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Platform Worker
on:
# schedule:
# - cron: "0 */1 * * *"
workflow_dispatch: {}

env:
PYFUNCEBLE_AUTO_CONFIGURATION: "YES"
GIT_NAME: "${{ secrets.GIT_BOT_NAME }}"
GIT_EMAIL: "${{ secrets.GIT_BOT_EMAIL }}"
GIT_BRANCH: "${{ github.head_ref || github.ref_name }}"
GIT_DISTRIBUTION_BRANCH: "${{ github.head_ref || github.ref_name }}"
PYFUNCEBLE_CONFIG_DIR: "${{ github.workspace }}/.pyfunceble"
GITHUB_TOKEN: "${{ secrets.BOT_REPO_PAT }}"
PLATFORM_API_URL: "${{ secrets.PLATFORM_API_URL }}"
PLATFORM_API_TOKEN: "${{ secrets.PLATFORM_API_TOKEN }}"
PLATFORM_SCOPE: "${{ secrets.PLATFORM_SCOPE }}"
PLATFORM_WORKER: "yes"
PYFUNCEBLE_COLLECTION_API_TOKEN: "${{ secrets.PLATFORM_WORKER_TOKEN }}"

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: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}

- name: Install dependencies
run: |
pip install --pre git+https://github.com/dead-hosts/infrastructure-launcher.git@dev
pip install --upgrade PyFunceble-dev
- name: Get PyFunceble version
run: |
PyFunceble --version
- name: Get Launcher version
run: |
dead-hosts-launcher --version
- name: Run Launcher
run: |
dead-hosts-launcher -d
2 changes: 1 addition & 1 deletion .trigger
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1716182583.403273
1716268933.685985

0 comments on commit e77adf8

Please sign in to comment.