-
-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #443 from joke2k/develop
Release v0.10.0
- Loading branch information
Showing
31 changed files
with
501 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Make sure new PRs are sent to develop | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, edited] | ||
|
||
jobs: | ||
check-branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Vankka/pr-target-branch-action@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
target: main | ||
exclude: develop # Don't prevent going from develop -> main | ||
change-to: develop | ||
comment: | | ||
Your PR was set to target `main`, PRs should be target `develop` | ||
The base branch of this PR has been automatically changed to `develop`, please check that there are no merge conflicts. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: CodeQL | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
|
||
# The branches below must be a subset of the branches above | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
|
||
schedule: | ||
- cron: '40 22 * * 5' | ||
# | | | | | | ||
# | | | | |____ day of the week (0 - 6 or SUN-SAT) | ||
# | | | |____ month (1 - 12 or JAN-DEC) | ||
# | | |____ day of the month (1 - 31) | ||
# | |____ hour (0 - 23) | ||
# |____ minute (0 - 59) | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
# The maximum number of minutes to let a workflow run | ||
# before GitHub automatically cancels it. Default: 360 | ||
timeout-minutes: 30 | ||
|
||
strategy: | ||
# When set to true, GitHub cancels | ||
# all in-progress jobs if any matrix job fails. | ||
fail-fast: false | ||
|
||
matrix: | ||
language: | ||
- python | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
|
||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.