This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
Bump aiohttp from 3.9.1 to 3.9.2 in /packages/openassistants-fastapi #291
Workflow file for this run
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
##################################### | |
# DO NOT EDIT DIRECTLY. # | |
# This file is managed by Terraform # | |
##################################### | |
on: [push] | |
jobs: | |
gitleaks: | |
runs-on: ubuntu-latest | |
name: Detect Secrets | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Checkout full history to make .gitleaksignore work like it does locally | |
- name: GitLeaks | |
uses: gacts/gitleaks@v1 # Action page: <https://github.com/gacts/gitleaks> | |
- name: Email [email protected] | |
if: ${{ failure() && github.event.number == 0 }} # Only run for push events | |
uses: licenseware/send-email-notification@v1 # Action page: <https://github.com/licenseware/send-email-notification> | |
with: | |
api-key: ${{ secrets.SENDGRID_API_KEY }} | |
subject: Secret detected in GitHub repository '${{ github.event.repository.name }}' | |
from-email: GitLeaks GitHub Action <[email protected]> | |
to-email: [email protected] | |
markdown-body: | | |
Secret detected in ${{ github.event.repository.url }}. See details below: | |
* action: ${{ github.event.repository.url }}/actions/runs/${{ github.run_id }} | |
* commit: ${{ github.event.head_commit.url }} |