Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed May 22, 2024
1 parent 78179d6 commit 6ffc04b
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/python-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,18 +215,18 @@ jobs:
packages_dir: dist
verbose: true

# TEMP DO NOT COMMIT -- DEBUG ONLY
# # File a bug report if anything fails
# create_issue_on_fail:
# runs-on: ubuntu-latest
# needs: [smoke-test, publish-to-test-pypi, publish-to-pypi]
# if: failure() || cancelled()
# steps:
# - name: Checkout TileDB-SOMA `main`
# uses: actions/checkout@v2
# - name: Create Issue if Build Fails
# uses: JasonEtco/create-an-issue@v2
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# filename: .github/workflows/daily-test-build-issue-template.md
# File a bug report if anything fails.
# Don't file tickets for manual runs -- only for scheduled ones.
create_issue_on_fail:
runs-on: ubuntu-latest
needs: [smoke-test, publish-to-test-pypi, publish-to-pypi]
if: (failure() || cancelled()) && github.event_name != 'workflow_dispatch'
steps:
- name: Checkout TileDB-SOMA `main`
uses: actions/checkout@v2
- name: Create Issue if Build Fails
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/workflows/daily-test-build-issue-template.md

0 comments on commit 6ffc04b

Please sign in to comment.