Skip to content

Commit 7bc8121

Browse files
authored
Merge pull request #76 from lightninglabs/workflow-updates
GitHub Workflows: run on PRs from external contributors
2 parents 4cfce2d + 732516b commit 7bc8121

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Build
2-
on: [push]
2+
on:
3+
push:
4+
branches:
5+
- "main"
6+
pull_request:
7+
branches:
8+
- "*"
39
jobs:
410
build:
511
runs-on: ubuntu-latest

.github/workflows/lint.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Lint
2-
on: [push]
2+
on:
3+
push:
4+
branches:
5+
- "main"
6+
pull_request:
7+
branches:
8+
- "*"
39
jobs:
410
lint:
511
runs-on: ubuntu-latest

.github/workflows/prettier.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Prettier
2-
on: [push]
2+
on:
3+
push:
4+
branches:
5+
- "main"
6+
pull_request:
7+
branches:
8+
- "*"
39
jobs:
410
prettier:
511
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)