Skip to content

Commit

Permalink
ci: check for clean working tree
Browse files Browse the repository at this point in the history
chore: update deps
docs: add PR template
  • Loading branch information
Nicconike committed Aug 2, 2024
1 parent ed95bb3 commit 9623999
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## Purpose
<!-- Describe the problem or feature in addition to a link to the issues -->

## Approach
<!-- How does this change address the problem? -->

## Changes Made
<!-- List the specific changes you've made in bullet points -->

-
-
-

## Testing Done
<!-- Describe the testing you've done to validate your changes -->

## Screenshots (if appropriate)
<!-- Include screenshots of the changes if applicable -->

## Additional Notes
<!-- Any additional information that might be helpful to reviewers -->

## Checklist
<!-- Go over all the following points, and put an `x` in all the boxes that apply -->

- [ ] My code follows the code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.

## References
<!-- Link any related issues, pull requests, or documentation. -->

-
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
token: ${{ steps.app-token.outputs.token }}

- name: Set up Python
Expand All @@ -52,6 +53,11 @@ jobs:
python -m pip install --upgrade pip
pip install python-semantic-release
- name: Fetch and update
run: |
git fetch origin
git reset --hard origin/${{ github.ref_name }}
- name: Semantic Release
id: github-release
uses: python-semantic-release/python-semantic-release@v9.8.6
Expand Down
Binary file modified requirements.txt
Binary file not shown.

0 comments on commit 9623999

Please sign in to comment.