-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into implement-example-process
- Loading branch information
Showing
84 changed files
with
4,737 additions
and
707 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,29 @@ | ||
# reference: https://github.com/github/issue-labeler | ||
|
||
# FIXME: find a way to avoid the label to remove tags... | ||
#name: "Issue Labeler" | ||
#on: | ||
# issues: | ||
# types: [opened, edited] | ||
# | ||
#jobs: | ||
# triage: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: github/[email protected] | ||
# with: | ||
# repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
# configuration-path: .github/labeler-words.yml | ||
# enable-versioned-regex: 0 | ||
name: "Issue Labeler" | ||
on: | ||
issues: | ||
types: [opened, edited] | ||
|
||
# cancel the current workflow if another commit was pushed on the same PR or reference | ||
# uses the GitHub workflow name to avoid collision with other workflows running on the same PR/reference | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
issues: write | ||
contents: read | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: github/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler-words.yml | ||
enable-versioned-regex: 0 | ||
include-title: 1 | ||
include-body: 1 | ||
sync-labels: 0 |
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
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# configuration to setup readthedocs | ||
version: 2 | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.10" | ||
sphinx: | ||
configuration: docs/source/conf.py | ||
#formats: all | ||
formats: | ||
- htmlzip | ||
python: | ||
version: "3.7" | ||
install: | ||
- requirements: requirements-sys.txt | ||
- requirements: requirements-doc.txt | ||
system_packages: false |
Oops, something went wrong.