Merge pull request #2528 from iBotPeaches/action-fix

build: support actions on prs or pushes
This commit is contained in:
Connor Tumbleson 2021-03-06 06:44:12 -05:00 committed by GitHub
commit a8f87a8b16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

View File

@ -2,13 +2,13 @@ name: "CodeQL"
on:
push:
branches: [ master ]
paths:
- '**.java'
- '**.gradle'
- 'brut.apktool/apktool-lib/src/main/resources/**'
pull_request:
branches: [ master ]
branches:
- master
paths:
- '**.java'
- '**.gradle'
@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
language: ['java']
steps:
- name: Checkout repository

View File

@ -1,6 +1,13 @@
name: CI
on:
push:
branches:
- master
paths:
- '**.java'
- '**.gradle'
- 'brut.apktool/apktool-lib/src/main/resources/**'
pull_request:
paths:
- '**.java'
- '**.gradle'