Skip to content

Commit

Permalink
Add placeholder workflow for long-running server tests (#5919)
Browse files Browse the repository at this point in the history
Create a dummy workflow, only triggered by manual user action.

The existence of this workflow on the main branch enables development
and testing of the same workflow in a different branch.

Signed-off-by: Your Name <[email protected]>
  • Loading branch information
derekcollison authored Sep 23, 2024
2 parents 1242c21 + 7902859 commit 263f512
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/long-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: NATS Server Long-Running Tests

on:
workflow_dispatch:

concurrency:
# At most one of these workflow per ref running
group: ${{ github.workflow }}-${{ github.ref }}
# New one cancels in-progress one
cancel-in-progress: true

jobs:
placeholder:
name: Placeholder job
runs-on: ${{ vars.GHA_WORKER_SMALL }}
steps:
- name: Dummy step
run: echo "Hello World"

0 comments on commit 263f512

Please sign in to comment.