diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-02-23 14:25:05 -0500 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-02-23 14:25:28 -0500 |
| commit | 556bf55b5fbb3bd0592363875ed108ed7c93b3e3 (patch) | |
| tree | c8156a56a84ff5f99184299f1c22994a5ab0521e /.github | |
| parent | a63ed0801a341499e20ff6e3ecc8b8b685b15c44 (diff) | |
| download | bashflows-556bf55b5fbb3bd0592363875ed108ed7c93b3e3.tar.gz | |
Initial workflows/actions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/actions/tasks/main.yml | 16 | ||||
| -rw-r--r-- | .github/workflows/hst_rt.yml | 12 |
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 |
