itamae-plugin-recipe-git_now 1.0.1 → 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 +11 -3
- data/.github/release.yml +31 -0
- data/.github/workflows/dependabot-manager.yml +28 -0
- data/.github/workflows/release_gem.yml +4 -31
- data/.github/workflows/test.yml +10 -11
- data/CHANGELOG.md +7 -1
- data/lib/itamae/plugin/recipe/git_now/version.rb +1 -1
- metadata +4 -2
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
|
data/.github/dependabot.yml
CHANGED
|
@@ -2,11 +2,19 @@
|
|
|
2
2
|
version: 2
|
|
3
3
|
|
|
4
4
|
updates:
|
|
5
|
+
###########################################################
|
|
6
|
+
# NOTE: following sections are auto generated. DO NOT EDIT!
|
|
7
|
+
###########################################################
|
|
5
8
|
- package-ecosystem: github-actions
|
|
6
9
|
directory: /
|
|
7
10
|
schedule:
|
|
8
|
-
interval:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
11
14
|
assignees:
|
|
12
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 }}
|
|
@@ -5,37 +5,10 @@ on:
|
|
|
5
5
|
|
|
6
6
|
jobs:
|
|
7
7
|
release:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
name: rubygems.org
|
|
13
|
-
url: https://rubygems.org/gems/itamae-plugin-recipe-git_now
|
|
14
|
-
|
|
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
|
|
15
12
|
permissions:
|
|
16
13
|
contents: write
|
|
17
14
|
id-token: write
|
|
18
|
-
|
|
19
|
-
steps:
|
|
20
|
-
- name: Harden Runner
|
|
21
|
-
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
|
|
22
|
-
with:
|
|
23
|
-
egress-policy: audit
|
|
24
|
-
|
|
25
|
-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
26
|
-
|
|
27
|
-
- name: Set up Ruby
|
|
28
|
-
uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
|
|
29
|
-
with:
|
|
30
|
-
bundler-cache: true
|
|
31
|
-
ruby-version: ruby
|
|
32
|
-
|
|
33
|
-
- name: Publish to RubyGems
|
|
34
|
-
uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
|
|
35
|
-
|
|
36
|
-
- name: Create GitHub release
|
|
37
|
-
run: |
|
|
38
|
-
tag_name="$(git describe --tags --abbrev=0)"
|
|
39
|
-
gh release create "${tag_name}" --verify-tag --generate-notes
|
|
40
|
-
env:
|
|
41
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -29,9 +29,9 @@ jobs:
|
|
|
29
29
|
- debian:trixie
|
|
30
30
|
|
|
31
31
|
steps:
|
|
32
|
-
- uses: actions/checkout@
|
|
32
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
33
33
|
|
|
34
|
-
- uses: ruby/setup-ruby@
|
|
34
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
35
35
|
with:
|
|
36
36
|
ruby-version: ${{ matrix.ruby }}
|
|
37
37
|
bundler-cache: true
|
|
@@ -54,7 +54,7 @@ jobs:
|
|
|
54
54
|
DOCKER_IMAGE: itamae-plugin:latest
|
|
55
55
|
|
|
56
56
|
- name: Slack Notification (not success)
|
|
57
|
-
uses: act10ns/slack@
|
|
57
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
58
58
|
if: "! success()"
|
|
59
59
|
continue-on-error: true
|
|
60
60
|
with:
|
|
@@ -62,17 +62,16 @@ jobs:
|
|
|
62
62
|
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
63
63
|
matrix: ${{ toJson(matrix) }}
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
all-pass:
|
|
66
|
+
if: always()
|
|
67
|
+
|
|
66
68
|
needs:
|
|
67
69
|
- test
|
|
68
70
|
|
|
69
|
-
runs-on: ubuntu-
|
|
71
|
+
runs-on: ubuntu-slim
|
|
70
72
|
|
|
71
73
|
steps:
|
|
72
|
-
- name:
|
|
73
|
-
uses:
|
|
74
|
-
if: always()
|
|
75
|
-
continue-on-error: true
|
|
74
|
+
- name: check dependent jobs
|
|
75
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
76
76
|
with:
|
|
77
|
-
|
|
78
|
-
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
77
|
+
jobs: ${{ toJSON(needs) }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
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
|
|
5
11
|
|
|
6
12
|
## [v1.0.1](https://github.com/sue445/itamae-plugin-recipe-git_now/releases/tag/v1.0.1) (2025/11/29)
|
|
7
13
|
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v1.0.0...v1.0.1)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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
|
|
@@ -87,6 +87,8 @@ extensions: []
|
|
|
87
87
|
extra_rdoc_files: []
|
|
88
88
|
files:
|
|
89
89
|
- ".github/dependabot.yml"
|
|
90
|
+
- ".github/release.yml"
|
|
91
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
90
92
|
- ".github/workflows/release_gem.yml"
|
|
91
93
|
- ".github/workflows/test.yml"
|
|
92
94
|
- ".github_changelog_generator"
|
|
@@ -125,7 +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:
|
|
130
|
+
rubygems_version: 4.0.16
|
|
129
131
|
specification_version: 4
|
|
130
132
|
summary: Itamae plugin to install git-now
|
|
131
133
|
test_files: []
|