From 556bf55b5fbb3bd0592363875ed108ed7c93b3e3 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 23 Feb 2026 14:25:05 -0500 Subject: Initial workflows/actions --- .github/actions/tasks/main.yml | 16 ++++++++++++++++ .github/workflows/hst_rt.yml | 12 ++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/actions/tasks/main.yml create mode 100644 .github/workflows/hst_rt.yml diff --git a/.github/actions/tasks/main.yml b/.github/actions/tasks/main.yml new file mode 100644 index 0000000..06857e3 --- /dev/null +++ b/.github/actions/tasks/main.yml @@ -0,0 +1,16 @@ +name: 'task' +description: 'Runs tasks' +inputs: + task-path: + description: 'Which task to run' + required: true + default: '' + +runs: + using: "composite" + steps: + - name: Run + run: | + bash tasks/task.sh ${{ inputs.task-path }} + shell: bash + diff --git a/.github/workflows/hst_rt.yml b/.github/workflows/hst_rt.yml new file mode 100644 index 0000000..8fff34a --- /dev/null +++ b/.github/workflows/hst_rt.yml @@ -0,0 +1,12 @@ +on: + workflow-dispatch: + +jobs: + rt: + runs-on: ubuntu-latest + name: RT HST + steps: + - uses: actions/checkout@v5 + - uses: ./.github/actions/tasks + with: + task-path: hst/rt -- cgit