jekyll_test_plugin 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/release-please-config.json +17 -0
- data/.github/release-please-manifest.json +3 -0
- data/.github/workflows/conventional_commits.yml +34 -0
- data/.github/workflows/release-please.yml +43 -0
- data/History.markdown +22 -0
- data/README.md +1 -1
- data/lib/jekyll_test_plugin/version.rb +1 -1
- metadata +10 -7
- data/.github/workflows/gem.yml +0 -33
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27eafd4e0a07a2b40f61a00ff4d03d0297ac754f536ae18f867420cbc2960713
|
|
4
|
+
data.tar.gz: 38a5b8ce8fbb3513ced5fa579ab6dd7b34aa32ecfbe12729c3e5359026d26626
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e82333482c2736b249732b575f91a5cfec1d9d0f27b6be138890747c5e408206a7fbcc6e10963a4e3a1d70aceab8f12a3745b6383e08bf8d8fa86b095f3126f8
|
|
7
|
+
data.tar.gz: 26a4582592b68a8b69e1c6e5acf04f2c06cf9c726ed09ef624df7d468dcded4b0ed72657fe78cee8761818d5895bd84074a64d75c9cc1e4457171468b9f6ccd7
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pull-request-title-pattern": "chore: release 💎 ${version}",
|
|
3
|
+
"packages": {
|
|
4
|
+
".": {
|
|
5
|
+
"changelog-path": "History.markdown",
|
|
6
|
+
"release-type": "ruby",
|
|
7
|
+
"bump-minor-pre-major": false,
|
|
8
|
+
"bump-patch-for-minor-pre-major": false,
|
|
9
|
+
"draft": false,
|
|
10
|
+
"prerelease": false,
|
|
11
|
+
"include-component-in-tag": false,
|
|
12
|
+
"include-v-in-tag": true,
|
|
13
|
+
"version-file": "lib/jekyll_test_plugin/version.rb"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
|
17
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Conventional Commit Check
|
|
2
|
+
|
|
3
|
+
permissions:
|
|
4
|
+
pull-requests: read
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
pull_request_target:
|
|
8
|
+
types: [opened, edited, synchronize, reopened, ready_for_review]
|
|
9
|
+
branches:
|
|
10
|
+
- master
|
|
11
|
+
- main
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
commit_lint:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- name: Lint Conventional Commit Usage
|
|
18
|
+
uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017
|
|
19
|
+
env:
|
|
20
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
21
|
+
with:
|
|
22
|
+
types: |
|
|
23
|
+
build
|
|
24
|
+
chore
|
|
25
|
+
ci
|
|
26
|
+
docs
|
|
27
|
+
feat
|
|
28
|
+
fix
|
|
29
|
+
perf
|
|
30
|
+
refactor
|
|
31
|
+
revert
|
|
32
|
+
style
|
|
33
|
+
test
|
|
34
|
+
requireScope: false
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: "Release, please!"
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
pull-requests: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
release-please:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
outputs:
|
|
16
|
+
release_created: ${{ steps.release.outputs.release_created }}
|
|
17
|
+
tag_name: ${{ steps.release.outputs.tag_name }}
|
|
18
|
+
steps:
|
|
19
|
+
- name: Run Release Please
|
|
20
|
+
id: release
|
|
21
|
+
uses: googleapis/release-please-action@v4
|
|
22
|
+
with:
|
|
23
|
+
config-file: .github/release-please-config.json
|
|
24
|
+
manifest-file: .github/release-please-manifest.json
|
|
25
|
+
token: ${{ secrets.JEKYLLBOT_TOKEN }}
|
|
26
|
+
|
|
27
|
+
publish-gem:
|
|
28
|
+
needs: release-please
|
|
29
|
+
if: ${{ needs.release-please.outputs.release_created == 'true' }}
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
permissions:
|
|
32
|
+
id-token: write
|
|
33
|
+
contents: write
|
|
34
|
+
steps:
|
|
35
|
+
- name: Checkout Repository
|
|
36
|
+
uses: actions/checkout@v6
|
|
37
|
+
- name: Set up Ruby
|
|
38
|
+
uses: ruby/setup-ruby@v1
|
|
39
|
+
with:
|
|
40
|
+
ruby-version: '3.3'
|
|
41
|
+
bundler-cache: true
|
|
42
|
+
- name: Build and Publish Gem
|
|
43
|
+
uses: rubygems/release-gem@v1
|
data/History.markdown
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.3.1](https://github.com/jekyll/jekyll-test-gem-plugin/compare/v0.3.0...v0.3.1) (2026-03-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update release workflow name ([#10](https://github.com/jekyll/jekyll-test-gem-plugin/issues/10)) ([f120f78](https://github.com/jekyll/jekyll-test-gem-plugin/commit/f120f78b043bfb655b599903582b9a374300ddea))
|
|
9
|
+
* update workflow names ([#9](https://github.com/jekyll/jekyll-test-gem-plugin/issues/9)) ([b19352b](https://github.com/jekyll/jekyll-test-gem-plugin/commit/b19352b29833855bc67f50ff03943539d347fa80))
|
|
10
|
+
|
|
11
|
+
## [0.3.0](https://github.com/jekyll/jekyll-test-gem-plugin/compare/v0.2.0...v0.3.0) (2025-02-05)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* use an emoji in the readme ([#6](https://github.com/jekyll/jekyll-test-gem-plugin/issues/6)) ([4c0dc9c](https://github.com/jekyll/jekyll-test-gem-plugin/commit/4c0dc9c8623d38b851f582ee87a79135c2baa0a2))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* use the correct default branch name ([#7](https://github.com/jekyll/jekyll-test-gem-plugin/issues/7)) ([b84410d](https://github.com/jekyll/jekyll-test-gem-plugin/commit/b84410dab61c3f4145c953a6d778ebc2764a2ab4))
|
|
22
|
+
|
|
1
23
|
## 0.1.1 / 2021-10-07
|
|
2
24
|
|
|
3
25
|
### Development Fixes
|
data/README.md
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll_test_plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Parker Moore
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -59,7 +59,10 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
-
- ".github/
|
|
62
|
+
- ".github/release-please-config.json"
|
|
63
|
+
- ".github/release-please-manifest.json"
|
|
64
|
+
- ".github/workflows/conventional_commits.yml"
|
|
65
|
+
- ".github/workflows/release-please.yml"
|
|
63
66
|
- ".gitignore"
|
|
64
67
|
- Gemfile
|
|
65
68
|
- History.markdown
|
|
@@ -73,7 +76,7 @@ homepage: https://github.com/parkr/jekyll-test-gem-plugin
|
|
|
73
76
|
licenses:
|
|
74
77
|
- MIT
|
|
75
78
|
metadata: {}
|
|
76
|
-
post_install_message:
|
|
79
|
+
post_install_message:
|
|
77
80
|
rdoc_options: []
|
|
78
81
|
require_paths:
|
|
79
82
|
- lib
|
|
@@ -88,8 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
91
|
- !ruby/object:Gem::Version
|
|
89
92
|
version: '0'
|
|
90
93
|
requirements: []
|
|
91
|
-
rubygems_version: 3.
|
|
92
|
-
signing_key:
|
|
94
|
+
rubygems_version: 3.5.22
|
|
95
|
+
signing_key:
|
|
93
96
|
specification_version: 4
|
|
94
97
|
summary: A test Jekyll plugin as a gem
|
|
95
98
|
test_files: []
|
data/.github/workflows/gem.yml
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
name: Release Gem
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- master
|
|
7
|
-
paths:
|
|
8
|
-
- "lib/**/version.rb"
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
release:
|
|
12
|
-
if: "github.repository_owner == 'jekyll'"
|
|
13
|
-
name: "Release Gem (Ruby ${{ matrix.ruby_version }})"
|
|
14
|
-
runs-on: "ubuntu-latest"
|
|
15
|
-
strategy:
|
|
16
|
-
fail-fast: true
|
|
17
|
-
matrix:
|
|
18
|
-
ruby_version:
|
|
19
|
-
- 2.7
|
|
20
|
-
steps:
|
|
21
|
-
- name: Checkout Repository
|
|
22
|
-
uses: actions/checkout@v2
|
|
23
|
-
- name: "Set up Ruby ${{ matrix.ruby_version }}"
|
|
24
|
-
uses: ruby/setup-ruby@v1
|
|
25
|
-
with:
|
|
26
|
-
ruby-version: ${{ matrix.ruby_version }}
|
|
27
|
-
bundler-cache: true
|
|
28
|
-
- name: Build and Publish Gem
|
|
29
|
-
uses: ashmaroli/release-gem@dist
|
|
30
|
-
with:
|
|
31
|
-
gemspec_name: jekyll_test_plugin
|
|
32
|
-
env:
|
|
33
|
-
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_GEM_PUSH_API_KEY }}
|