itamae-plugin-recipe-tmux 0.1.5 → 0.1.6

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: e0015a5c3ac1eaa024dc1246f8b3d632f60a0a91f6272bdad0781c8fcc4f4d12
4
- data.tar.gz: c33f72a16607b980032802ad73b4fc52b40cd200bc653e3e43ccb6a7fac77f09
3
+ metadata.gz: 4a4acc636200224a260b7de302101ead9f0db4157a3955411a1c439a28f1529a
4
+ data.tar.gz: c7568ed50c9787023cdf31ded46336e12c81da623b35b786da50eeac6943dca1
5
5
  SHA512:
6
- metadata.gz: 7d44c69d72af29f20a4efc9254b93fb4410704d0d81a365e9f4809b3434f58316c2fd3b5852b67a53ff5eba2a29a5d7c15b234492af33ea8900b9061f74e37db
7
- data.tar.gz: 6dd9b0c2a6210884d5f62c32d6a0cf53b99fb4f76f6029c488e52d1fc2afff1bc4ccd7b41c4dd213375e6e0eadcadf7ce9ba07151009d6429357d47558526637
6
+ metadata.gz: a1ad6ca7c8c16fed01ae999f2eee141e2b566c3e221e4ae722a77ea33e94ebda61f6e334615bc07968a7f9cb270708f7df3423fe00a5380d2562daf4523900e9
7
+ data.tar.gz: ee72e3b6b143dd6f20aad002b6fff714f4e6273f83835ad392255c60c5178e8d6f6880f3cd5b28f52de6e323c5c7228166c72a42f5c9357d99ba01f9a1a551a9
@@ -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,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-tmux
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-tmux
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-tmux'
9
- runs-on: ubuntu-latest
10
-
11
- environment:
12
- name: rubygems.org
13
- url: https://rubygems.org/gems/itamae-plugin-recipe-tmux
14
-
8
+ uses: sue445/workflows/.github/workflows/release_gem.yml@main
9
+ with:
10
+ repo-name: sue445/itamae-plugin-recipe-tmux
11
+ gem-name: itamae-plugin-recipe-tmux
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@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
22
- with:
23
- egress-policy: audit
24
-
25
- - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
26
-
27
- - name: Set up Ruby
28
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
29
- with:
30
- bundler-cache: true
31
- ruby-version: ruby
32
-
33
- - name: Publish to RubyGems
34
- uses: rubygems/release-gem@1c162a739e8b4cb21a676e97b087e8268d8fc40b # v1.1.2
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/CHANGELOG.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # Changelog
2
2
 
3
3
  ## [Unreleased](https://github.com/sue445/itamae-plugin-recipe-tmux/tree/HEAD)
4
- [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.5...HEAD)
4
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.6...HEAD)
5
+
6
+ ## [v0.1.6](https://github.com/sue445/itamae-plugin-recipe-tmux/releases/tag/v0.1.6) (2026/08/23)
7
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.5...v0.1.6)
8
+
9
+ * Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
10
+ * https://github.com/sue445/itamae-plugin-recipe-tmux/pull/54
5
11
 
6
12
  ## [v0.1.5](https://github.com/sue445/itamae-plugin-recipe-tmux/releases/tag/v0.1.5) (2025/12/06)
7
13
  [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.4...v0.1.5)
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Tmux
5
- VERSION = "0.1.5"
5
+ VERSION = "0.1.6"
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-tmux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
@@ -87,7 +87,9 @@ extensions: []
87
87
  extra_rdoc_files: []
88
88
  files:
89
89
  - ".circleci/config.yml"
90
+ - ".github/dependabot.yml"
90
91
  - ".github/release.yml"
92
+ - ".github/workflows/dependabot-manager.yml"
91
93
  - ".github/workflows/release_gem.yml"
92
94
  - ".github_changelog_generator"
93
95
  - ".gitignore"
@@ -132,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
134
  - !ruby/object:Gem::Version
133
135
  version: '0'
134
136
  requirements: []
135
- rubygems_version: 3.6.9
137
+ rubygems_version: 4.0.16
136
138
  specification_version: 4
137
139
  summary: Itamae plugin to install tmux without any packages
138
140
  test_files: []