conjur-api 6.0.1.pre.499 → 6.0.1.pre.503
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/workflows/close-stale.yml +23 -0
- data/VERSION +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6871eb523731ab9788f67268fd547474182bc5edcd3524262f769b75d3a8adae
|
4
|
+
data.tar.gz: 3279ac6c634fd75211c3adc63e2a9a770cc6cd05af02e92797370a3d71a15940
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c21503744459a2a109d20518787b20023afb8e75b78ba8dcacf8f554fb4ce7b458250aae7c2239449ce635a74890384dc7a31be75926bfa432aefcf19ca5ecc
|
7
|
+
data.tar.gz: 5f91f278b74992b3e8fdde97a82de715142d13235e2ee11ddfd7073720f44e3107cae92bd0a8f4b062f75e789424add8fb398812c6d55be99ede84809c798168
|
@@ -0,0 +1,23 @@
|
|
1
|
+
name: Close inactive issues
|
2
|
+
on:
|
3
|
+
schedule:
|
4
|
+
- cron: "30 1 * * *"
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
close-issues:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
permissions:
|
10
|
+
actions: write # For the Actions cache
|
11
|
+
issues: write
|
12
|
+
pull-requests: write
|
13
|
+
steps:
|
14
|
+
- uses: actions/stale@v9
|
15
|
+
with:
|
16
|
+
days-before-issue-stale: 30
|
17
|
+
days-before-issue-close: 14
|
18
|
+
stale-issue-label: "stale"
|
19
|
+
stale-issue-message: "This issue is stale because it has been inactive for 30 days. Please comment to keep it open. Otherwise, it will be automatically closed in 14 days."
|
20
|
+
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale. Please feel free to reopen it or create a new issue if you think it should still be addressed."
|
21
|
+
days-before-pr-stale: -1
|
22
|
+
days-before-pr-close: -1
|
23
|
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
6.0.1-
|
1
|
+
6.0.1-503
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conjur-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.1.pre.
|
4
|
+
version: 6.0.1.pre.503
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- CyberArk Maintainers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -278,6 +278,7 @@ files:
|
|
278
278
|
- ".codeclimate.yml"
|
279
279
|
- ".dockerignore"
|
280
280
|
- ".github/CODEOWNERS"
|
281
|
+
- ".github/workflows/close-stale.yml"
|
281
282
|
- ".gitignore"
|
282
283
|
- ".oldgitleaks.toml"
|
283
284
|
- ".overcommit.yml"
|