Skip to content

Commit

Permalink
Merge pull request #273 from active-hash/flavorjones-better-ci-config
Browse files Browse the repository at this point in the history
ci: avoid running multiple times on the same commit
  • Loading branch information
kbrock authored Jan 17, 2023
2 parents cd24253 + 624e2d9 commit 9d39ede
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
name: Ruby

on: [push, pull_request]
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
push:
branches:
- master
tags:
- v*.*.*
pull_request:
types: [opened, synchronize]
branches:
- '*'

jobs:
build:
Expand Down

0 comments on commit 9d39ede

Please sign in to comment.