Skip to content

Commit 0b4a8d7

Browse files
committed
.github/workflows: tune action triggers to run on push/PR
Run on branch pushes or PRs, but ignore tags.
1 parent 6234cfc commit 0b4a8d7

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

Diff for: .github/workflows/build-image.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Build and test latest supported Perls
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
410

511
jobs:
612
build-image:

Diff for: .github/workflows/generate-dockerfiles-patches.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Generate Dockerfiles/patches
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
410

511
jobs:
612
generate:

0 commit comments

Comments
 (0)