Skip to content

Commit b42a23d

Browse files
author
Lando Calrissian
committed
Replace actions trigger with on: [push]
1 parent 67e8b64 commit b42a23d

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.github/workflows/build.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: Build
22
on:
3-
pull_request:
4-
push:
5-
branches:
6-
- main
7-
tags:
8-
- "*"
9-
3+
- push
104
jobs:
115
build:
126
runs-on: ubuntu-latest
@@ -26,7 +20,6 @@ jobs:
2620
with:
2721
name: artifact
2822
path: dist/*
29-
3023
release:
3124
name: Publish package
3225
if: startsWith(github.ref, 'refs/tags/')

.github/workflows/ci.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
name: CI
22
on:
3-
pull_request:
4-
push:
5-
branches:
6-
- main
7-
3+
- push
84
# Automatically stop old builds on the same branch/PR
95
concurrency:
106
group: ${{ github.workflow }}-${{ github.ref }}
117
cancel-in-progress: true
12-
138
jobs:
149
pre-commit:
1510
timeout-minutes: 30

0 commit comments

Comments
 (0)