mirror of
https://github.com/Icinga/icingaweb2-module-graphite.git
synced 2026-02-18 18:25:09 -05:00
Allow GitHub Actions to run for every pull request instead of only main-based pull requests
18 lines
322 B
YAML
18 lines
322 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- support/*
|
|
pull_request:
|
|
|
|
jobs:
|
|
php:
|
|
name: PHP
|
|
uses: Icinga/github-actions/.github/workflows/php.yml@main
|
|
with:
|
|
dependencies: |
|
|
{
|
|
"./vendor/icingaweb2-modules/icingadb" : "https://github.com/Icinga/icingadb-web.git"
|
|
}
|