We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ce16661 + 80df8fb commit 5b260d1Copy full SHA for 5b260d1
2 files changed
.github/workflows/main.yml
@@ -1,7 +1,8 @@
1
-name: CI
+name: Lint Test Build
2
3
on:
4
push:
5
+ branches-ignore: [main]
6
7
jobs:
8
check-lint-test-build:
.github/workflows/publish.yml
@@ -1,27 +1,23 @@
name: Publish
- workflow_run:
- workflows: [CI]
- types: [completed]
+ push:
branches: [main]
9
10
publish:
11
- if: github.event.workflow_run.conclusion == 'success'
12
runs-on: ubuntu-22.04
13
steps:
14
- name: Checkout repository
15
uses: actions/checkout@v6
16
with:
17
- ref: ${{ github.event.workflow_run.head_sha }}
18
fetch-depth: 0
19
20
- name: Detect changed packages
21
id: changes
22
uses: dorny/paths-filter@v3
23
24
- base: HEAD^
+ base: ${{ github.event.before || 'HEAD^' }}
25
filters: |
26
utils:
27
- 'packages/utils/**'
0 commit comments