Skip to content

Commit

Permalink
(Build & Lint & Wiki).yaml: Make sure all CI scripts run on push for
Browse files Browse the repository at this point in the history
changes against respective folders and the CI scripts themselves
  • Loading branch information
balacij committed Jul 4, 2024
1 parent be8913a commit 82b61a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
on:
push:
paths: [code/**]
paths: [code/**, .github/workflows/Build.yaml]
pull_request:
branches: main
paths: [code/**]
paths: [code/**, .github/workflows/Build.yaml]
workflow_dispatch:
name: Build
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Lint.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
pull_request:
branches: main
paths: 'code/drasil-**'
paths: [code/drasil-**, .github/workflows/Lint.yaml]
name: Linter
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Wiki.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Wiki
on:
push:
branches: [main]
branches: main
paths: [wiki/**, .github/workflows/Wiki.yaml]
pull_request:
branches: [main]
branches: main
paths: [wiki/**, .github/workflows/Wiki.yaml]
permissions:
contents: write
Expand Down

0 comments on commit 82b61a3

Please sign in to comment.