.github/workflows: tune action triggers to run on push/PR
Run on branch pushes or PRs, but ignore tags.
This commit is contained in:
parent
6234cfc650
commit
0b4a8d7145
2 changed files with 14 additions and 2 deletions
8
.github/workflows/build-image.yml
vendored
8
.github/workflows/build-image.yml
vendored
|
@ -1,6 +1,12 @@
|
|||
name: Build and test latest supported Perls
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
tags-ignore:
|
||||
- '*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build-image:
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
name: Generate Dockerfiles/patches
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
tags-ignore:
|
||||
- '*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
generate:
|
||||
|
|
Loading…
Add table
Reference in a new issue