mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 23:05:47 +00:00
Merge pull request #3 from octfx/feature/actions_on_pr
Make GitHub Actions run on prs too
This commit is contained in:
commit
d8b5c0a88a
8
.github/workflows/composer.yml
vendored
8
.github/workflows/composer.yml
vendored
|
@ -1,6 +1,12 @@
|
|||
name: Composer
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
8
.github/workflows/grunt.yml
vendored
8
.github/workflows/grunt.yml
vendored
|
@ -1,6 +1,12 @@
|
|||
name: Grunt
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue