Skip to content

Commit

Permalink
chore: limit test workflow trigger for commits against main branch only
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh-2711 committed Dec 21, 2023
1 parent 5ae10f2 commit 5a41d6f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/test-module.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Lint & Test

on: [push, pull_request]
on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
- 'website/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
- 'website/**'

jobs:
lint-module:
Expand Down

0 comments on commit 5a41d6f

Please sign in to comment.