itamae-plugin-recipe-tig 0.1.6 → 0.1.7

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: ee1d7cccbb864775a87b42713ec2be3a1340b36bf01e6a29c4f32f262edb36d7
4
- data.tar.gz: 4f1dbe41a19e85460775cee4adb58633d747da9f1248c2ac0bdfb89240eb7e37
3
+ metadata.gz: 0ce71432cc57178f528a57c895de7d1808156f1f3ff16599a1a7b3cd43e9e102
4
+ data.tar.gz: 228e65ab908862d667c8e5f2f4a7fe5ed5e3e79eeb3629a8659996054b7ae428
5
5
  SHA512:
6
- metadata.gz: 6a988d56a65591c7644998820758ff7cd0a3639ab00828530e2e6ab64905f82f9449932ee4d8707f2aa5bd4d8ec63f5cd1435ff47cfa2134dd8c33456450b250
7
- data.tar.gz: d9c46818eb0232ff170db8d91bbb83e70dfa17c887871ea03feefc315a4a6ec2fff6e88a89b92549ef7e8e22f8ed4fbb400d4ae31b850e3ca3ad3045d5842954
6
+ metadata.gz: 074a676257f11a531285aeff231902c0cf0ab6d19fd7010f5434c3559074cd76a0bcc725532531b1acf758fcbaaa77e3fa05ce856e120592e8019485668acb2c
7
+ data.tar.gz: 660e0c9f4e17c6b47b8a157008972b5f5b19a5f578c5c84ee20ac12841404d97df55caee8362ebbe8eed13d13f42b4485a6e8d85fdd32cf8ec4846a50552a153
@@ -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: weekly
9
- cooldown:
10
- default-days: 7
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
+ ###########################################################
@@ -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-tig
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-tig
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
- if: github.repository == 'sue445/itamae-plugin-recipe-tig'
9
- runs-on: ubuntu-latest
10
-
11
- environment:
12
- name: rubygems.org
13
- url: https://rubygems.org/gems/itamae-plugin-recipe-tig
14
-
8
+ uses: sue445/workflows/.github/workflows/release_gem.yml@main
9
+ with:
10
+ repo-name: sue445/itamae-plugin-recipe-tig
11
+ gem-name: itamae-plugin-recipe-tig
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 }}
@@ -29,9 +29,9 @@ jobs:
29
29
  - amazonlinux:2
30
30
 
31
31
  steps:
32
- - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
32
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
33
33
 
34
- - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
34
+ - uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
35
35
  with:
36
36
  ruby-version: ${{ matrix.ruby }}
37
37
  bundler-cache: true
@@ -53,7 +53,7 @@ jobs:
53
53
  DOCKER_IMAGE: itamae-plugin:latest
54
54
 
55
55
  - name: Slack Notification (not success)
56
- uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
56
+ uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
57
57
  if: "! success()"
58
58
  continue-on-error: true
59
59
  with:
@@ -61,17 +61,16 @@ jobs:
61
61
  webhook-url: ${{ secrets.SLACK_WEBHOOK }}
62
62
  matrix: ${{ toJson(matrix) }}
63
63
 
64
- notify:
64
+ all-pass:
65
+ if: always()
66
+
65
67
  needs:
66
68
  - test
67
69
 
68
- runs-on: ubuntu-latest
70
+ runs-on: ubuntu-slim
69
71
 
70
72
  steps:
71
- - name: Slack Notification (success)
72
- uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
73
- if: always()
74
- continue-on-error: true
73
+ - name: check dependent jobs
74
+ uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
75
75
  with:
76
- status: ${{ job.status }}
77
- webhook-url: ${{ secrets.SLACK_WEBHOOK }}
76
+ jobs: ${{ toJSON(needs) }}
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Change Log
2
2
  ## Unreleased
3
- [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tig/compare/v0.1.6...master)
3
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tig/compare/v0.1.7...master)
4
+
5
+ ## [v0.1.7](https://github.com/sue445/itamae-plugin-recipe-tig/releases/tag/v0.1.7) (2025/08/23)
6
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tig/compare/v0.1.6...v0.1.7)
7
+
8
+ * Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
9
+ * https://github.com/sue445/itamae-plugin-recipe-tig/pull/76
4
10
 
5
11
  ## [v0.1.6](https://github.com/sue445/itamae-plugin-recipe-tig/releases/tag/v0.1.6) (2025/11/29)
6
12
  [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tig/compare/v0.1.5...v0.1.6)
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Tig
5
- VERSION = "0.1.6"
5
+ VERSION = "0.1.7"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-tig
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
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: 3.6.7
130
+ rubygems_version: 4.0.16
129
131
  specification_version: 4
130
132
  summary: Itamae plugin to install tig
131
133
  test_files: []