talentio-notifier 0.3.3 → 0.3.4
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/Dockerfile +1 -1
- data/Gemfile.lock +2 -2
- data/Makefile +1 -1
- data/lib/talentio/notifier/slack/selection_result.rb +1 -1
- data/lib/talentio/notifier/version.rb +1 -1
- data/manifests/cron.yml +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f30d9a8f384d1d345598e8d7831b4526ea4e9b3ea5d42217ea850390e8b38dad
|
|
4
|
+
data.tar.gz: d8d4fd396e155e9dd7500900468da46ffe9370e40f2e524ffeadda1deeeabd5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f59830071ac545289692c18c0e89d7fbfa7029fcb070b90651b847d0a810f9cf6835b354992646812a18e051cc2a155a7563970cad4497985ed80956ae179816
|
|
7
|
+
data.tar.gz: 130720ccb4b081849fefec2a658673ffcb8b7416158fe777e55ce018f6f12cdd63a08b664f54f84c12377c3ace4ae06d4cdab4b4555a22b4d25d95175160360e
|
data/Dockerfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
talentio-notifier (0.3.
|
|
4
|
+
talentio-notifier (0.3.4)
|
|
5
5
|
activesupport
|
|
6
6
|
faraday
|
|
7
7
|
holiday_jp
|
|
@@ -12,7 +12,7 @@ PATH
|
|
|
12
12
|
GEM
|
|
13
13
|
remote: https://rubygems.org/
|
|
14
14
|
specs:
|
|
15
|
-
activesupport (6.0.3.
|
|
15
|
+
activesupport (6.0.3.4)
|
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
17
|
i18n (>= 0.7, < 2)
|
|
18
18
|
minitest (~> 5.1)
|
data/Makefile
CHANGED
|
@@ -17,7 +17,7 @@ module Talentio
|
|
|
17
17
|
|
|
18
18
|
# 登録当日はスキップする
|
|
19
19
|
base_time = Time.parse(data[param[:limit_key]])
|
|
20
|
-
return if base_time >= Date.today
|
|
20
|
+
return if base_time >= Date.today.to_time
|
|
21
21
|
|
|
22
22
|
slack_mentions = client.mention_id_from_evaluations(data[:evaluations])
|
|
23
23
|
slack_mentions.each do |m|
|
data/manifests/cron.yml
CHANGED
|
@@ -3,14 +3,14 @@ kind: CronJob
|
|
|
3
3
|
metadata:
|
|
4
4
|
name: talentio-notifier-result
|
|
5
5
|
spec:
|
|
6
|
-
schedule: "
|
|
6
|
+
schedule: "38 11,15 * * 1-5"
|
|
7
7
|
jobTemplate:
|
|
8
8
|
spec:
|
|
9
9
|
template:
|
|
10
10
|
spec:
|
|
11
11
|
containers:
|
|
12
12
|
- name: talentio-notifier
|
|
13
|
-
image: pyama/talentio-notifier:0.3.
|
|
13
|
+
image: pyama/talentio-notifier:0.3.4
|
|
14
14
|
imagePullPolicy: Always
|
|
15
15
|
env:
|
|
16
16
|
- name: LANG
|
|
@@ -45,7 +45,7 @@ spec:
|
|
|
45
45
|
spec:
|
|
46
46
|
containers:
|
|
47
47
|
- name: talentio-notifier
|
|
48
|
-
image: pyama/talentio-notifier:0.3.
|
|
48
|
+
image: pyama/talentio-notifier:0.3.4
|
|
49
49
|
env:
|
|
50
50
|
- name: TALENTIO_SKIP_STAGE
|
|
51
51
|
value: "3"
|