Skip to content

Commit

Permalink
ci: update concurrency/"on" to match some best practices
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed May 25, 2022
1 parent d92bb65 commit ccfa736
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/sqlite3-ruby.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
name: CI

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

jobs:
CI:
Expand Down

0 comments on commit ccfa736

Please sign in to comment.