Skip to content

Commit

Permalink
Don't try and gem push on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
bert-mccutchen committed Feb 11, 2022
1 parent 78795c6 commit 030452a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: CodeQL

on:
push:
branches: [ master ]
branches:
- master
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches:
- master
schedule:
- cron: '27 5 * * 4'

Expand All @@ -32,7 +34,8 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'ruby' ]
language:
- ruby
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Ruby Gem

on:
push:
branches: [ master ]
branches:
- master
pull_request:
branches: [ master ]

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ on:
push:
branches:
- master

pull_request:
branches:
- master

jobs:
build:
Expand Down

0 comments on commit 030452a

Please sign in to comment.