Skip to content

Commit

Permalink
ci: if test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogyuchi authored May 20, 2024
1 parent d3f5327 commit 8151f19
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: test
on:
push:
branches: ["**"]
workflow_dispatch:
inputs: # null for another event
skip:
Expand All @@ -9,10 +11,16 @@ permissions: {}

jobs:
test1:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
if: ${{ inputs.skip == false}}
if: >
false
runs-on: ubuntu-latest
steps:
- run: sleep 120
- run: |
true
test2:
if: >-
false
runs-on: ubuntu-latest
steps:
- run: |
true

0 comments on commit 8151f19

Please sign in to comment.