Skip to content

Commit

Permalink
Required rules must always run (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
paddyroddy authored Sep 26, 2023
1 parent aa79650 commit 72f6f8a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
name: Link Checker

on:
push:
branches:
- main
- "renovate/**"
pull_request:
branches: [main]
workflow_dispatch:

jobs:
linkChecker:
link-checker:
timeout-minutes: 2
runs-on: ubuntu-latest

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- "renovate/**"
pull_request:

jobs:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ name: Deploy Jekyll site to Pages

on:
push:
branches: ["main"]
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -26,7 +27,7 @@ concurrency:

jobs:
# Build job
build:
website:
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/docs/Gemfile
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: Run template tests

on: [push]
on:
push:
branches:
- main
- "renovate/**"
pull_request:

jobs:
build:
test-template:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit 72f6f8a

Please sign in to comment.