Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into ci-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Dec 24, 2024
2 parents ab01d67 + 68df8fc commit 8f4e8cf
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Pull request"
name: Pull request

on:
pull_request_target:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-codeql.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: "CodeQL"
name: CodeQL

on:
push:
branches: [ "main", "v3" ]
branches: ["main"]

pull_request:
branches: [ "main", "v3" ]
branches: ["*"]

schedule:
- cron: '37 14 * * 3'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:
- docs/examples/**

pull_request:
branches: ["main","v3"]
branches: ["*"]
paths:
- docs/examples/**
- ".github/workflows/test-examples.yml"

jobs:
build:
name: build only
name: build
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-indicators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: ["main","v3"]

pull_request:
types: [opened, synchronize, reopened]
branches: ["*"]

jobs:
test:
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/test-website-a11y.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Website
name: Website a11y

on:
push:
branches: ["v3"]
pull_request:
branches: ["main"]
branches: ["*"]
paths:
- 'docs/**'
- ".github/workflows/test-website-a11y.yml"
Expand All @@ -14,9 +14,12 @@ env:

jobs:
test:
name: test a11y
name: test
runs-on: ubuntu-latest

env:
BUNDLE_GEMFILE: ${{github.workspace}}/docs/GemFile

steps:
- name: Checkout source
uses: actions/checkout@v4
Expand All @@ -29,22 +32,16 @@ jobs:

- name: Install GEMs
working-directory: docs
env:
BUNDLE_GEMFILE: ${{github.workspace}}/docs/GemFile
run: |
pwd
bundle install
- name: Build site
working-directory: docs
env:
BUNDLE_GEMFILE: ${{github.workspace}}/docs/GemFile
run: bundle exec jekyll build

- name: Serve site
working-directory: docs
env:
BUNDLE_GEMFILE: ${{github.workspace}}/docs/GemFile
run: bundle exec jekyll serve --detach

- name: Show environment
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-website-links.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Website
name: Website URLs

on:
push:
branches: ["v3"]
pull_request:
branches: ["main"]
branches: ["*"]
paths:
- 'docs/**'
- ".github/workflows/test-website-links.yml"
Expand All @@ -14,7 +14,7 @@ env:

jobs:
test:
name: test URLs
name: test
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 8f4e8cf

Please sign in to comment.