Skip to content

Commit

Permalink
Update concurrency.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysson1710 authored Feb 12, 2024
1 parent 677cf18 commit ae05499
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/concurrency.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## sample to use concurrency to avoid excessive use from GitHub agents,
## Avoid leaving these queue, the option cancel the older running

## additional use option default for setting general configuration for all tasks

name: concurrent workflow

on: [workflow_dispatch]
Expand All @@ -14,4 +19,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: test
run: echo "$(PWD)"
run: |
$PWD
echo "${{ toJson(github.event) }}"

0 comments on commit ae05499

Please sign in to comment.