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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e841c1e0efed6bd5d6dae5a67029e7eaffea87eb261df02fa3dd36dc100483f
4
- data.tar.gz: 1f7568eaf0aa9545951bdb79c9f35004789b7cfe26b6fd105518315a2b7fb0a1
3
+ metadata.gz: c5363783d5911ef5e95d9cdcff9fd5df3bdd7860b202bc47c3778eb786fc0e73
4
+ data.tar.gz: 9da48e0d0bdefc930a6575c909e005ea320497a27aab8e45e6ddbeae0bae244e
5
5
  SHA512:
6
- metadata.gz: acd79e1bf36e228819df145fb01d8fca05b59226c330297c0c8c8cee4a44fa798eb14f323aebcddd18e811849980584bfbc5e9210e2fe676b20e5d8d48d814b0
7
- data.tar.gz: fd2b14445a986ccc47e8b4491e48fa272baf9aec830e7a89e81afd19b7b9ed0e6bfc7648fb659d437d9c7daca88acae3bfa0066526fbcb52e279ad2bacbb61e1
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
+ ###########################################################
@@ -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
@@ -23,16 +23,15 @@ jobs:
23
23
  ruby:
24
24
  - "2.3"
25
25
  image:
26
- - centos:7
27
26
  - centos:8
28
- - debian:jessie
29
- - debian:stretch
30
- - debian:buster
27
+ - debian:bullseye
28
+ - debian:bookworm
29
+ - debian:trixie
31
30
 
32
31
  steps:
33
- - uses: actions/checkout@v3
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: lazy-actions/slatify@master
57
+ uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
59
58
  if: "! success()"
60
59
  continue-on-error: true
61
60
  with:
62
- job_name: ${{ format('*build* ({0}, {1})', matrix.ruby, matrix.image) }}
63
- type: ${{ job.status }}
64
- icon_emoji: ":octocat:"
65
- url: ${{ secrets.SLACK_WEBHOOK }}
66
- token: ${{ secrets.GITHUB_TOKEN }}
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-latest
71
+ runs-on: ubuntu-slim
73
72
 
74
73
  steps:
75
- - name: Slack Notification (success)
76
- uses: lazy-actions/slatify@master
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
- job_name: '*build*'
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.0...master)
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
  [![Gem Version](https://badge.fury.io/rb/itamae-plugin-recipe-git_now.svg)](https://badge.fury.io/rb/itamae-plugin-recipe-git_now)
6
- [![Build Status](https://github.com/sue445/itamae-plugin-recipe-git_now/workflows/test/badge.svg?branch=master)](https://github.com/sue445/itamae-plugin-recipe-git_now/actions?query=workflow%3Atest)
6
+ [![test](https://github.com/sue445/itamae-plugin-recipe-git_now/actions/workflows/test.yml/badge.svg)](https://github.com/sue445/itamae-plugin-recipe-git_now/actions/workflows/test.yml)
7
7
 
8
8
  ## Installation
9
9
 
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module GitNow
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.2"
6
6
  end
7
7
  end
8
8
  end
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.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: 2022-11-05 00:00:00.000000000 Z
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: 3.3.7
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: []