Skip to content

Commit

Permalink
Create concurrency.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysson1710 authored Feb 12, 2024
1 parent 278aed2 commit e39e586
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/concurrency.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: concurrent workflow

on: [workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
defaults:
run:
shell: bash
working-directory: .
runs-on: ubuntu-latest
steps:
- name: test
run: echo "${{ github.event }}"

0 comments on commit e39e586

Please sign in to comment.