Skip to content

Commit 28b479f

Browse files
author
Lando Calrissian
committed
Replace actions trigger with on: [push]
1 parent dc776e0 commit 28b479f

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
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
@@ -27,7 +21,6 @@ jobs:
2721
with:
2822
name: artifact
2923
path: dist/*
30-
3124
release:
3225
name: Publish package
3326
if: startsWith(github.ref, 'refs/tags/')

.github/workflows/ci.yml

+1-7
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
@@ -23,7 +18,6 @@ jobs:
2318
environments: default lint
2419
- name: pre-commit
2520
run: pixi run pre-commit-run --color=always --show-diff-on-failure
26-
2721
pytest:
2822
timeout-minutes: 30
2923
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)