Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 119aa4c

Browse files
authored
Merge pull request #8 from brokenpip3/ci-more-events
fix: more events for ci
2 parents 9d292e5 + d875133 commit 119aa4c

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

.github/workflows/test-local-action-with-conditionals.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
on: [push]
1+
name: "Test local with conditionals"
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
release:
6+
types: [published]
7+
push:
8+
branches: ["main"]
9+
tags: ["*"]
210

311
jobs:
412
local_test_options:

.github/workflows/test-local-action.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
on: [push]
1+
name: "Test local action"
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
release:
6+
types: [published]
7+
push:
8+
branches: ["main"]
9+
tags: ["*"]
210

311
jobs:
412
local_test:

.github/workflows/test-public-action.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
on: [push]
1+
name: "Test public from main"
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
release:
6+
types: [published]
7+
push:
8+
branches: ["main"]
9+
tags: ["*"]
210

311
jobs:
412
public_test:

0 commit comments

Comments
 (0)