-
-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lala Sabathil <lala@pycord.dev>
- Loading branch information
Showing
619 changed files
with
490,977 additions
and
446 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
Validating CODEOWNERS rules …
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,6 +1,12 @@ | ||
* @Pycord-Development/maintainers | ||
|
||
/tests/ @Pycord-Development/maintain-tests | ||
/discord/ext/testing/ @Pycord-Development/maintain-tests | ||
/discord/ext/bridge/ @Pycord-Development/maintain-ext-bridge | ||
/.github/ @Pycord-Development/project-leads | ||
/tests/ @Pycord-Development/maintain-tests @Pycord-Development/maintainers | ||
/discord/ext/testing/ @Pycord-Development/maintain-tests @Pycord-Development/maintainers | ||
/discord/ext/bridge/ @Pycord-Development/maintain-ext-bridge @Pycord-Development/maintainers | ||
/.github/ @Pycord-Development/maintainers @Lulalaby | ||
/docs/locales/ @Pycord-Development/maintain-translations | ||
/docs/build/locales/ @Pycord-Development/maintain-translations | ||
/.github/workflows/docs-localization-download.yml @Pycord-Development/maintain-translations | ||
/.github/workflows/docs-localization-upload.yml @Pycord-Development/maintain-translations | ||
/crowdin.yml @Pycord-Development/maintain-translations | ||
/requirements/_locale.txt @Pycord-Development/maintain-translations |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
analyze: | ||
name: "Analyze" | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: ["python"] | ||
steps: | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v4 | ||
- name: "Initialize CodeQL" | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
- name: "Autobuild" | ||
uses: github/codeql-action/autobuild@v3 | ||
- name: "Perform CodeQL Analysis" | ||
uses: github/codeql-action/analyze@v3 |
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,54 @@ | ||
name: "Documentation Checks" | ||
|
||
on: | ||
push: | ||
paths: | ||
- "discord/**" | ||
- "docs/**" | ||
- "requirements/**" | ||
- "*.toml" | ||
- "*.py" | ||
branches: [master] | ||
pull_request: | ||
paths: | ||
- "discord/**" | ||
- "docs/**" | ||
- "requirements/" | ||
- "*.toml" | ||
- "*.py" | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout Repository" | ||
uses: actions/checkout@v4 | ||
- name: "Setup Python" | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
cache: "pip" | ||
cache-dependency-path: "requirements/docs.txt" | ||
check-latest: true | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install -U pip | ||
pip install ".[docs]" | ||
- name: "Check Links" | ||
if: ${{ github.event_name == 'schedule' }} | ||
run: | | ||
cd docs | ||
make linkcheck | ||
- name: "Compile to html" | ||
run: | | ||
cd docs | ||
make -e SPHINXOPTS="-D language='en'" html |
Oops, something went wrong.