safety-schemas 0.0.7 requires outdated pydantic version that fails install on Python 3.13 #13
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
name: Issue Responder | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
respond: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install GitHub CLI | |
run: sudo apt-get install gh | |
- name: Respond to new issues | |
run: gh issue comment ${{ github.event.issue.number }} --body "$BODY" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BODY: | | |
Hi @${{ github.event.issue.user.login }}, thank you for opening this issue! | |
We appreciate your effort in reporting this. Our team will review it and get back to you soon. | |
If you have any additional details or updates, feel free to add them to this issue. | |
**Note:** If this is a serious security issue that could impact the security of Safety CLI users, please email [email protected] immediately. | |
Thank you for contributing to Safety CLI! |