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
parent
commit
b9a8a2ba6c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      .github/workflows/ci.yml

5
.github/workflows/ci.yml

@ -1,6 +1,9 @@
name: CI
on: push
on:
push:
branches:
- master
permissions:
contents: write

Loading…
Cancel
Save