Skip to content

Commit

Permalink
Add placeholder workflow for long-running server tests
Browse files Browse the repository at this point in the history
Create a dummy workflow. 
The existence of this workflow on the main branch enables development 
and testing of the same workflow in a different branch.
  • Loading branch information
mprimi committed Sep 23, 2024
1 parent 1242c21 commit 7902859
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 7902859

Please sign in to comment.