-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'aeon-toolkit:main' into main
- Loading branch information
Showing
730 changed files
with
76,275 additions
and
36,900 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 |
---|---|---|
|
@@ -30,3 +30,5 @@ ignore: | |
- "docs/" | ||
- "examples/" | ||
- "extension_templates/" | ||
# specific files | ||
- "aeon/registry/_tag_deprecation.py" |
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: Issue Comment Edited | ||
|
||
on: | ||
issue_comment: | ||
types: [edited] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.comment.id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
pr-welcome-edited: | ||
if: ${{ github.event.issue.pull_request }} | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Create app token | ||
uses: actions/create-github-app-token@v1 | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.PR_APP_ID }} | ||
private-key: ${{ secrets.PR_APP_KEY }} | ||
|
||
- name: Checkout main | ||
uses: actions/checkout@v4 | ||
with: | ||
sparse-checkout: build_tools | ||
|
||
- name: Setup Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install PyGithub | ||
run: pip install -Uq PyGithub | ||
|
||
- name: Process comment edit | ||
id: label_out | ||
run: python build_tools/pr_welcome_edited.py | ||
env: | ||
CONTEXT_GITHUB: ${{ toJson(github) }} | ||
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | ||
|
||
- if: ${{ steps.label_out.outputs.empty_commit == 'true' }} | ||
name: Checkout head | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ steps.label_out.outputs.repo }} | ||
ref: ${{ steps.label_out.outputs.branch }} | ||
token: ${{ steps.app-token.outputs.token }} | ||
|
||
- if: ${{ steps.label_out.outputs.empty_commit == 'true' }} | ||
name: Push empty commit | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: Empty commit for CI | ||
commit_user_name: aeon-actions-bot[bot] | ||
commit_options: --allow-empty | ||
create_branch: false | ||
skip_dirty_check: true |
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,36 @@ | ||
name: Issue Comment Posted | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
self-assign: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
sparse-checkout: build_tools | ||
|
||
- name: Setup Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install PyGithub | ||
run: pip install -Uq PyGithub | ||
|
||
- name: Create app token | ||
uses: actions/create-github-app-token@v1 | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.PR_APP_ID }} | ||
private-key: ${{ secrets.PR_APP_KEY }} | ||
|
||
- name: Assign issue | ||
run: python build_tools/issue_assign.py | ||
env: | ||
CONTEXT_GITHUB: ${{ toJson(github) }} | ||
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |
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,35 @@ | ||
name: GitHub Maintenance | ||
|
||
on: | ||
schedule: | ||
# every Monday at 01:00 AM UTC | ||
- cron: "0 1 * * 1" | ||
workflow_dispatch: | ||
|
||
permissions: | ||
issues: write | ||
contents: write | ||
|
||
jobs: | ||
stale_branches: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Create app token | ||
uses: actions/create-github-app-token@v1 | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.PR_APP_ID }} | ||
private-key: ${{ secrets.PR_APP_KEY }} | ||
|
||
- name: Stale Branches | ||
uses: crs-k/stale-branches@v5.0.1 | ||
with: | ||
repo-token: ${{ steps.app-token.outputs.token }} | ||
days-before-stale: 140 | ||
days-before-delete: 175 | ||
comment-updates: true | ||
tag-committer: true | ||
stale-branch-label: "stale branch" | ||
compare-branches: "info" | ||
pr-check: true |
Oops, something went wrong.