Skip to content

Commit

Permalink
Merge branch 'master' into mps
Browse files Browse the repository at this point in the history
  • Loading branch information
vfdev-5 committed Nov 21, 2023
2 parents cb59e6f + 4dc4e04 commit ff9a2cd
Show file tree
Hide file tree
Showing 94 changed files with 2,302 additions and 1,417 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/binaries-nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
python-version: 3.8
python-version: "3.10"

- name: Setup nightly version
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
chmod +x ./conda.recipe/build_and_upload.sh
./conda.recipe/build_and_upload.sh
- name: Build and Publish PyPi binaries
- name: Build and Publish PyPI binaries
shell: bash -l {0}
run: |
# workaround to fix https://github.com/pytorch/ignite/issues/2373
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- if: github.event_name == 'push'
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.8"
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/discord_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
issues:
types:
- labeled
pull_request:
types:
- labeled
workflow_dispatch:
inputs:
issue_number:
Expand All @@ -15,7 +12,6 @@ on:

permissions:
issues: write
pull-requests: write

jobs:
discord:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/discord_pull_requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
inputs:
pull_request_number:
description: 'Pull request number'
required: true

permissions:
pull-requests: write
Expand All @@ -24,5 +25,5 @@ jobs:
destination: ${{ secrets.DISCORD_BOT_DESTINATION }}
issue_number: ${{ github.event.inputs.pull_request_number || github.event.pull_request.number }}
issue_comment: Hey 👋, I've just created a [thread]($THREAD_LINK$) for this pull request on [PyTorch-Ignite Discord](https://pytorch-ignite.ai/chat) where you can quickly talk to the community on the topic.
discord_message: New PR created in `${{ github.repository }}`:<https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}>
discord_message: New PR created in `${{ github.repository }}`:<https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request_number || github.event.pull_request.number }}>

Loading

0 comments on commit ff9a2cd

Please sign in to comment.