Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Jun 5, 2024
1 parent 380b385 commit 16ea730
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/custom_command.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@


on:
push:
branches:
- add-custom-script-workflow
workflow_dispatch:
inputs:
command-to-run:
description: Command to run
required: false
default: |
echo "Hello!"
type: string

name: Custom script runner

jobs:
custom-script:
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.repository_owner }}/rbmi:latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run command
run: |
${{ inputs.command-to-run }}
shell: bash

0 comments on commit 16ea730

Please sign in to comment.