Skip to content

Commit

Permalink
fix: change workflows for proper execution
Browse files Browse the repository at this point in the history
  • Loading branch information
dbhart committed Oct 1, 2024
1 parent 9f7d215 commit c4ea2f4
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 36 deletions.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Bug report
about: Report incorrect behavior
title: ''
labels: ''
assignees: ''

---

**Summary**
Describe the issue and expected behavior.

**Example**
Include an example to reproduce the issue. Please use an example file and **NOT** any proprietary information.

**Environment**
Provide information on your computing environment.
- Operating system:
- Python version:
- Sansmic version:

**Additional context**
[Optional] Add additional context about the issue, including screenshot or figure.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Feature request
about: Suggest a new feature
title: ''
labels: ''
assignees: ''

---

**Summary**
Describe the feature request, including motivation and potential use cases.

**Additional context**
[Optional] Add additional context or screenshots about the feature request.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: General question
about: Ask a question
title: ''
labels: ''
assignees: ''

---

**Summary**
Describe your question.

**Example**
[Optional] Include an example. Do **NOT** include proprietary information.


**Environment**
[Optional] Provide information on your computing environment.
- Operating system:
- Python version:
- Sansmic version:
33 changes: 0 additions & 33 deletions .github/workflows/build-wheels.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ name: Deploy Sphinx documentation
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
branches:
- 'main'
tags:
- '*'
release:
workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@97a0fba1372883ab732affbe8f94b823f91727db # v3.pre.node20
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: SARIF file
path: results.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Semantic Release
on:
push:
branches:
- main
- release

permissions:
contents: read
Expand Down

0 comments on commit c4ea2f4

Please sign in to comment.