itamae-plugin-recipe-git_now 1.0.0 → 1.0.2
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/dependabot.yml +20 -0
- data/.github/release.yml +31 -0
- data/.github/workflows/dependabot-manager.yml +28 -0
- data/.github/workflows/release_gem.yml +14 -0
- data/.github/workflows/test.yml +16 -23
- data/CHANGELOG.md +13 -1
- data/README.md +1 -1
- data/lib/itamae/plugin/recipe/git_now/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5363783d5911ef5e95d9cdcff9fd5df3bdd7860b202bc47c3778eb786fc0e73
|
|
4
|
+
data.tar.gz: 9da48e0d0bdefc930a6575c909e005ea320497a27aab8e45e6ddbeae0bae244e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ae6baee7fd1b1850d5a095a64a1987fd4ad98916320c4a0da07c2cf96ae48cd18666333d52e857aa115dff4b8497c827d6bb57e7f447bd1a1401ecf52d3517d
|
|
7
|
+
data.tar.gz: 6283fcfa0eac210f011c17ead0ef0e30a5e939128ce26e5dec3e1d2984c5a062e8493cc38d6924a0d74a989f3c138272cfbabf0984a356af76a1873adef50fe5
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
2
|
+
version: 2
|
|
3
|
+
|
|
4
|
+
updates:
|
|
5
|
+
###########################################################
|
|
6
|
+
# NOTE: following sections are auto generated. DO NOT EDIT!
|
|
7
|
+
###########################################################
|
|
8
|
+
- package-ecosystem: github-actions
|
|
9
|
+
directory: /
|
|
10
|
+
schedule:
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
14
|
+
assignees:
|
|
15
|
+
- sue445
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 7
|
|
18
|
+
exclude:
|
|
19
|
+
- ruby/setup-ruby
|
|
20
|
+
###########################################################
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
|
|
2
|
+
|
|
3
|
+
changelog:
|
|
4
|
+
exclude:
|
|
5
|
+
labels:
|
|
6
|
+
- chore
|
|
7
|
+
|
|
8
|
+
categories:
|
|
9
|
+
- title: ":bomb: Breaking Changes"
|
|
10
|
+
labels:
|
|
11
|
+
- breaking change
|
|
12
|
+
|
|
13
|
+
- title: ":lock: Security Fix"
|
|
14
|
+
labels:
|
|
15
|
+
- security
|
|
16
|
+
|
|
17
|
+
- title: ":rocket: Features"
|
|
18
|
+
labels:
|
|
19
|
+
- enhancement
|
|
20
|
+
|
|
21
|
+
- title: ":bug: Bug Fixes"
|
|
22
|
+
labels:
|
|
23
|
+
- bug
|
|
24
|
+
|
|
25
|
+
- title: ":dependabot: Dependency updates"
|
|
26
|
+
labels:
|
|
27
|
+
- dependencies
|
|
28
|
+
|
|
29
|
+
- title: ":pencil: Other Changes"
|
|
30
|
+
labels:
|
|
31
|
+
- "*"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: dependabot-manager
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- synchronize # PR branch is rebased
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
dependabot-auto-merge:
|
|
11
|
+
uses: sue445/workflows/.github/workflows/dependabot-auto-merge.yml@main
|
|
12
|
+
with:
|
|
13
|
+
repo-name: sue445/itamae-plugin-recipe-git_now
|
|
14
|
+
secrets:
|
|
15
|
+
# TODO: Set secrets to Dependabot secrets
|
|
16
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
17
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
19
|
+
|
|
20
|
+
dependabot-security-alert:
|
|
21
|
+
uses: sue445/workflows/.github/workflows/dependabot-security-alert.yml@main
|
|
22
|
+
with:
|
|
23
|
+
repo-name: sue445/itamae-plugin-recipe-git_now
|
|
24
|
+
secrets:
|
|
25
|
+
# TODO: Set secrets to Dependabot secrets
|
|
26
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
27
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
28
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
uses: sue445/workflows/.github/workflows/release_gem.yml@main
|
|
9
|
+
with:
|
|
10
|
+
repo-name: sue445/itamae-plugin-recipe-git_now
|
|
11
|
+
gem-name: itamae-plugin-recipe-git_now
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
data/.github/workflows/test.yml
CHANGED
|
@@ -23,16 +23,15 @@ jobs:
|
|
|
23
23
|
ruby:
|
|
24
24
|
- "2.3"
|
|
25
25
|
image:
|
|
26
|
-
- centos:7
|
|
27
26
|
- centos:8
|
|
28
|
-
- debian:
|
|
29
|
-
- debian:
|
|
30
|
-
- debian:
|
|
27
|
+
- debian:bullseye
|
|
28
|
+
- debian:bookworm
|
|
29
|
+
- debian:trixie
|
|
31
30
|
|
|
32
31
|
steps:
|
|
33
|
-
- uses: actions/checkout@
|
|
32
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
34
33
|
|
|
35
|
-
- uses: ruby/setup-ruby@v1
|
|
34
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
36
35
|
with:
|
|
37
36
|
ruby-version: ${{ matrix.ruby }}
|
|
38
37
|
bundler-cache: true
|
|
@@ -55,30 +54,24 @@ jobs:
|
|
|
55
54
|
DOCKER_IMAGE: itamae-plugin:latest
|
|
56
55
|
|
|
57
56
|
- name: Slack Notification (not success)
|
|
58
|
-
uses:
|
|
57
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
59
58
|
if: "! success()"
|
|
60
59
|
continue-on-error: true
|
|
61
60
|
with:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
61
|
+
status: ${{ job.status }}
|
|
62
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
63
|
+
matrix: ${{ toJson(matrix) }}
|
|
64
|
+
|
|
65
|
+
all-pass:
|
|
66
|
+
if: always()
|
|
67
67
|
|
|
68
|
-
notify:
|
|
69
68
|
needs:
|
|
70
69
|
- test
|
|
71
70
|
|
|
72
|
-
runs-on: ubuntu-
|
|
71
|
+
runs-on: ubuntu-slim
|
|
73
72
|
|
|
74
73
|
steps:
|
|
75
|
-
- name:
|
|
76
|
-
uses:
|
|
77
|
-
if: always()
|
|
78
|
-
continue-on-error: true
|
|
74
|
+
- name: check dependent jobs
|
|
75
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
79
76
|
with:
|
|
80
|
-
|
|
81
|
-
type: ${{ job.status }}
|
|
82
|
-
icon_emoji: ":octocat:"
|
|
83
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
84
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
77
|
+
jobs: ${{ toJSON(needs) }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
|
-
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v1.0.
|
|
4
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v1.0.2...master)
|
|
5
|
+
|
|
6
|
+
## [v1.0.2](https://github.com/sue445/itamae-plugin-recipe-git_now/releases/tag/v1.0.2) (2026/08/23)
|
|
7
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v1.0.1...v1.0.2)
|
|
8
|
+
|
|
9
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
10
|
+
* https://github.com/sue445/itamae-plugin-recipe-git_now/pull/72
|
|
11
|
+
|
|
12
|
+
## [v1.0.1](https://github.com/sue445/itamae-plugin-recipe-git_now/releases/tag/v1.0.1) (2025/11/29)
|
|
13
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v1.0.0...v1.0.1)
|
|
14
|
+
|
|
15
|
+
* Release gem from GitHub Actions
|
|
16
|
+
* https://github.com/sue445/itamae-plugin-recipe-git_now/pull/38
|
|
5
17
|
|
|
6
18
|
## [v1.0.0](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v1.0.0) (2022/11/05)
|
|
7
19
|
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v0.1.2...v1.0.0)
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[Itamae](https://github.com/itamae-kitchen/itamae) plugin to install [git-now](https://github.com/iwata/git-now)
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/rb/itamae-plugin-recipe-git_now)
|
|
6
|
-
[](https://github.com/sue445/itamae-plugin-recipe-git_now/actions/workflows/test.yml)
|
|
7
7
|
|
|
8
8
|
## Installation
|
|
9
9
|
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itamae-plugin-recipe-git_now
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: itamae
|
|
@@ -87,6 +86,10 @@ executables: []
|
|
|
87
86
|
extensions: []
|
|
88
87
|
extra_rdoc_files: []
|
|
89
88
|
files:
|
|
89
|
+
- ".github/dependabot.yml"
|
|
90
|
+
- ".github/release.yml"
|
|
91
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
92
|
+
- ".github/workflows/release_gem.yml"
|
|
90
93
|
- ".github/workflows/test.yml"
|
|
91
94
|
- ".github_changelog_generator"
|
|
92
95
|
- ".gitignore"
|
|
@@ -110,7 +113,6 @@ metadata:
|
|
|
110
113
|
source_code_uri: https://github.com/sue445/itamae-plugin-recipe-git_now
|
|
111
114
|
changelog_uri: https://github.com/sue445/itamae-plugin-recipe-git_now/blob/master/CHANGELOG.md
|
|
112
115
|
rubygems_mfa_required: 'true'
|
|
113
|
-
post_install_message:
|
|
114
116
|
rdoc_options: []
|
|
115
117
|
require_paths:
|
|
116
118
|
- lib
|
|
@@ -125,8 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
127
|
- !ruby/object:Gem::Version
|
|
126
128
|
version: '0'
|
|
127
129
|
requirements: []
|
|
128
|
-
rubygems_version:
|
|
129
|
-
signing_key:
|
|
130
|
+
rubygems_version: 4.0.16
|
|
130
131
|
specification_version: 4
|
|
131
132
|
summary: Itamae plugin to install git-now
|
|
132
133
|
test_files: []
|