Skip to content

Commit 6976ea3

Browse files
committed
Update CI trigger and move robots.txt to docs/
Changed the CI workflow to trigger only on workflow_dispatch instead of push or pull_request. Moved robots.txt into the docs/ directory for better organization.
1 parent 3eefe7e commit 6976ea3

File tree

2 files changed

+24
-23
lines changed

2 files changed

+24
-23
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
permissions:
2-
contents: read
3-
name: CI
4-
5-
on:
6-
push:
7-
branches: ["main"]
8-
pull_request:
9-
10-
jobs:
11-
# Build job
12-
build:
13-
runs-on: ubuntu-latest
14-
steps:
15-
- name: Checkout
16-
uses: actions/checkout@v4
17-
- name: Setup Ruby
18-
uses: ruby/setup-ruby@v1
19-
with:
20-
ruby-version: '3.3' # Not needed with a .ruby-version file
21-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
22-
cache-version: 0 # Increment this number if you need to re-download cached gems
23-
- name: Build with Jekyll
1+
permissions:
2+
contents: read
3+
name: CI
4+
5+
on:
6+
workflow_dispatch:
7+
#push:
8+
#branches: ["main"]
9+
#pull_request:
10+
11+
jobs:
12+
# Build job
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
- name: Setup Ruby
19+
uses: ruby/setup-ruby@v1
20+
with:
21+
ruby-version: '3.3' # Not needed with a .ruby-version file
22+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
23+
cache-version: 0 # Increment this number if you need to re-download cached gems
24+
- name: Build with Jekyll
2425
run: bundle exec jekyll build
File renamed without changes.

0 commit comments

Comments
 (0)