Skip to content

Commit acbcdd8

Browse files
chore(org): standardize-to-LizardByte (#1)
1 parent 476d4a4 commit acbcdd8

File tree

14 files changed

+664
-868
lines changed

14 files changed

+664
-868
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/issue_template.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/_codeql.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
# This workflow is centrally managed in https://github.com/LizardByte/.github/
3+
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
4+
# the above-mentioned repo.
5+
6+
name: CodeQL
7+
permissions:
8+
actions: read
9+
contents: read
10+
security-events: write
11+
12+
on:
13+
push:
14+
branches:
15+
- master
16+
pull_request:
17+
branches:
18+
- master
19+
schedule:
20+
- cron: '00 12 * * 0' # every Sunday at 12:00 UTC
21+
22+
concurrency:
23+
group: "${{ github.workflow }}-${{ github.ref }}"
24+
cancel-in-progress: true
25+
26+
jobs:
27+
call-codeql:
28+
name: CodeQL
29+
uses: LizardByte/.github/.github/workflows/__call-codeql.yml@master
30+
if: ${{ github.repository != 'LizardByte/.github' }}

.github/workflows/_common-lint.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
# This workflow is centrally managed in https://github.com/LizardByte/.github/
3+
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
4+
# the above-mentioned repo.
5+
6+
name: common lint
7+
permissions:
8+
contents: read
9+
10+
on:
11+
pull_request:
12+
branches:
13+
- master
14+
types:
15+
- opened
16+
- synchronize
17+
- reopened
18+
19+
concurrency:
20+
group: "${{ github.workflow }}-${{ github.ref }}"
21+
cancel-in-progress: true
22+
23+
jobs:
24+
lint:
25+
name: Common Lint
26+
uses: LizardByte/.github/.github/workflows/__call-common-lint.yml@master
27+
if: ${{ github.repository != 'LizardByte/.github' }}

.github/workflows/ci.yml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,53 @@
1-
name: Beautiful Jekyll CI
2-
on: [push, pull_request]
1+
---
2+
name: CI
3+
permissions:
4+
contents: read
5+
6+
on:
7+
pull_request:
8+
branches:
9+
- master
10+
types:
11+
- opened
12+
- synchronize
13+
- reopened
14+
push:
15+
branches:
16+
- master
17+
18+
concurrency:
19+
group: "${{ github.workflow }}-${{ github.ref }}"
20+
cancel-in-progress: true
21+
322
jobs:
423
build:
524
name: Build Jekyll
625
runs-on: ubuntu-latest
726
steps:
8-
- uses: actions/checkout@v4
9-
- uses: ruby/setup-ruby@v1
27+
- name: Checkout
28+
uses: actions/checkout@v5
29+
30+
- name: Setup Ruby
31+
uses: ruby/setup-ruby@v1
1032
with:
1133
ruby-version: '3.3'
34+
1235
- name: Install dependencies
1336
run: bundle install && bundle exec appraisal install
37+
1438
- name: Setup Pages
1539
id: configure-pages
1640
uses: actions/configure-pages@v5
41+
1742
- name: Setup CI config
1843
run: |
1944
echo "---" > _config_ci.yml
2045
echo "baseurl: ${{ steps.configure-pages.outputs.base_path }}" >> _config_ci.yml
46+
2147
- name: Build site
2248
env:
2349
JEKYLL_ENV: production
2450
run: bundle exec appraisal jekyll build --future --config _config_ci.yml,_config.yml
51+
2552
- name: Upload artifact
26-
uses: actions/upload-pages-artifact@v3
53+
uses: actions/upload-pages-artifact@v4

.gitignore

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1+
# ignore JetBrains project
2+
.idea/
3+
14
# project
25
_site
36
.sass-cache
47
.vagrant
58

6-
# general
7-
.DS_Store
8-
Thumbs.db
9-
ehthumbs.db
10-
119
Gemfile.lock
1210

13-
beautiful-jekyll-theme-*.gem
11+
beautiful-jekyll-next-theme-*.gem

0 commit comments

Comments
 (0)