aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-02-23 14:25:05 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-02-23 14:25:28 -0500
commit556bf55b5fbb3bd0592363875ed108ed7c93b3e3 (patch)
treec8156a56a84ff5f99184299f1c22994a5ab0521e
parenta63ed0801a341499e20ff6e3ecc8b8b685b15c44 (diff)
downloadbashflows-556bf55b5fbb3bd0592363875ed108ed7c93b3e3.tar.gz
Initial workflows/actions
-rw-r--r--.github/actions/tasks/main.yml16
-rw-r--r--.github/workflows/hst_rt.yml12
2 files changed, 28 insertions, 0 deletions
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