Skip to content

Commit

Permalink
Create testing-dispatch.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LandonTClipp authored Jan 1, 2025
1 parent afe092f commit ae26fa3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/testing-dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Go Test (manual run)

on:
workflow_dispatch:
inputs:
tag:
description: "Tag to checkout."
type: string
required: true

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.inputs.tag }}
- uses: ./.github/workflows/reusable-testing.yml

0 comments on commit ae26fa3

Please sign in to comment.