Skip to content

Commit cda79ea

Browse files
authored
Merge pull request #629 from dev-hato/develop
v2.2 リリース
2 parents 39ce569 + c511aa0 commit cda79ea

41 files changed

Lines changed: 1636 additions & 1259 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
DATABASE_URL=postgres://postgres:password@postgres:5432/
2-
SLACK_API_TOKEN=xoxb-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
3-
SLACK_SIGNING_SECRET=xxxxxxxxxxxxxxxxxxxxx
4-
YAHOO_API_TOKEN=xxxxxxxxx
2+
SLACK_API_TOKEN=
3+
SLACK_SIGNING_SECRET=
4+
YAHOO_API_TOKEN=

.github/dependabot.yml

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
1+
---
12
version: 2
23
updates:
3-
- package-ecosystem: pip
4-
directory: "/"
5-
schedule:
6-
interval: "monthly"
7-
open-pull-requests-limit: 1
8-
- package-ecosystem: docker
9-
directory: "/"
10-
schedule:
11-
interval: "monthly"
12-
open-pull-requests-limit: 1
13-
- package-ecosystem: docker
14-
directory: "/setup/pgsql"
15-
schedule:
16-
interval: "monthly"
17-
open-pull-requests-limit: 1
18-
- package-ecosystem: github-actions
19-
directory: "/"
20-
schedule:
21-
interval: "monthly"
22-
open-pull-requests-limit: 1
23-
- package-ecosystem: npm
24-
directory: "/"
25-
schedule:
26-
interval: "monthly"
27-
open-pull-requests-limit: 1
4+
- package-ecosystem: pip
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
open-pull-requests-limit: 1
9+
- package-ecosystem: docker
10+
directory: "/"
11+
schedule:
12+
interval: "daily"
13+
open-pull-requests-limit: 1
14+
- package-ecosystem: docker
15+
directory: "/setup/pgsql"
16+
schedule:
17+
interval: "daily"
18+
open-pull-requests-limit: 1
19+
- package-ecosystem: github-actions
20+
directory: "/"
21+
schedule:
22+
interval: "daily"
23+
open-pull-requests-limit: 1
24+
- package-ecosystem: npm
25+
directory: "/"
26+
schedule:
27+
interval: "daily"
28+
open-pull-requests-limit: 1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
---
12
ignored:
23
- DL3018

.github/linters/.markdown-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
---
12
no-duplicate-header:
23
siblings_only: true
File renamed without changes.
File renamed without changes.
Lines changed: 42 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1+
---
12
name: "CodeQL"
23

34
on:
4-
push:
5-
branches: [develop, master]
65
pull_request:
76
# The branches below must be a subset of the branches above
87
branches: [develop, master]
@@ -18,45 +17,49 @@ jobs:
1817
fail-fast: false
1918
matrix:
2019
# Override automatic language detection by changing the below list
21-
# Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
20+
# Supported options are
21+
# ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
2222
language: ['python']
2323
# Learn more...
2424
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
2525

2626
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v2
29-
with:
30-
# We must fetch at least the immediate parents so that if this is
31-
# a pull request then we can checkout the head.
32-
fetch-depth: 2
33-
34-
# If this run was triggered by a pull request event, then checkout
35-
# the head of the pull request instead of the merge commit.
36-
- run: git checkout HEAD^2
37-
if: ${{ github.event_name == 'pull_request' }}
38-
39-
# Initializes the CodeQL tools for scanning.
40-
- name: Initialize CodeQL
41-
uses: github/codeql-action/init@v1
42-
with:
43-
languages: ${{ matrix.language }}
44-
45-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
46-
# If this step fails, then you should remove it and run the build manually (see below)
47-
- name: Autobuild
48-
uses: github/codeql-action/autobuild@v1
49-
50-
# ℹ️ Command-line programs to run using the OS shell.
51-
# 📚 https://git.io/JvXDl
52-
53-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
54-
# and modify them (or add more) to build your code if your project
55-
# uses a compiled language
56-
57-
#- run: |
58-
# make bootstrap
59-
# make release
60-
61-
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@v1
27+
- name: Checkout repository
28+
uses: actions/checkout@v2
29+
with:
30+
# We must fetch at least the immediate parents so that if this is
31+
# a pull request then we can checkout the head.
32+
fetch-depth: 2
33+
34+
# If this run was triggered by a pull request event, then checkout
35+
# the head of the pull request instead of the merge commit.
36+
- run: git checkout HEAD^2
37+
if: ${{ github.event_name == 'pull_request' }}
38+
39+
# Initializes the CodeQL tools for scanning.
40+
- name: Initialize CodeQL
41+
uses: github/codeql-action/init@v1
42+
with:
43+
languages: ${{ matrix.language }}
44+
45+
# Autobuild attempts to build any compiled languages
46+
# (C/C++, C#, or Java).
47+
# If this step fails,
48+
# then you should remove it and run the build manually (see below)
49+
- name: Autobuild
50+
uses: github/codeql-action/autobuild@v1
51+
52+
# ℹ️ Command-line programs to run using the OS shell.
53+
# 📚 https://git.io/JvXDl
54+
55+
# ✏️ If the Autobuild fails above,
56+
# remove it and uncomment the following three lines
57+
# and modify them (or add more) to build your code if your project
58+
# uses a compiled language
59+
60+
#- run: |
61+
# make bootstrap
62+
# make release
63+
64+
- name: Perform CodeQL Analysis
65+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)