Skip to content

Commit

Permalink
Merge pull request #629 from dev-hato/develop
Browse files Browse the repository at this point in the history
v2.2 リリース
  • Loading branch information
nakkaa authored Feb 10, 2022
2 parents 39ce569 + c511aa0 commit cda79ea
Show file tree
Hide file tree
Showing 41 changed files with 1,636 additions and 1,259 deletions.
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DATABASE_URL=postgres://postgres:password@postgres:5432/
SLACK_API_TOKEN=xoxb-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
SLACK_SIGNING_SECRET=xxxxxxxxxxxxxxxxxxxxx
YAHOO_API_TOKEN=xxxxxxxxx
SLACK_API_TOKEN=
SLACK_SIGNING_SECRET=
YAHOO_API_TOKEN=
51 changes: 26 additions & 25 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
---
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 1
- package-ecosystem: docker
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 1
- package-ecosystem: docker
directory: "/setup/pgsql"
schedule:
interval: "monthly"
open-pull-requests-limit: 1
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 1
- package-ecosystem: npm
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 1
- package-ecosystem: pip
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 1
- package-ecosystem: docker
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 1
- package-ecosystem: docker
directory: "/setup/pgsql"
schedule:
interval: "daily"
open-pull-requests-limit: 1
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 1
- package-ecosystem: npm
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 1
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
ignored:
- DL3018
1 change: 1 addition & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
no-duplicate-header:
siblings_only: true
File renamed without changes.
File renamed without changes.
81 changes: 42 additions & 39 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
---
name: "CodeQL"

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

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}

# Autobuild attempts to build any compiled languages
# (C/C++, C#, or Java).
# If this step fails,
# then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above,
# remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
Loading

0 comments on commit cda79ea

Please sign in to comment.