Browse Source
Merge pull request #287 from TheCyberRonin/feature/scope-ci-to-push-on-master
feat: Only do `CI` GHA on push to `master`
pull/288/head
Hunter Thornsberry
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
1 deletions
-
.github/workflows/ci.yml
|
|
|
@ -1,6 +1,9 @@ |
|
|
|
name: CI |
|
|
|
|
|
|
|
on: push |
|
|
|
on: |
|
|
|
push: |
|
|
|
branches: |
|
|
|
- master |
|
|
|
|
|
|
|
permissions: |
|
|
|
contents: write |
|
|
|
|