Skip to content

Bump cryptography from 39.0.1 to 41.0.4 #5

Bump cryptography from 39.0.1 to 41.0.4

Bump cryptography from 39.0.1 to 41.0.4 #5

Workflow file for this run

name: Greetings
on: [pull_request_target, issues]
env:
SLACK_NOTIFY: false
jobs:
greeting:
name: Handle Greetings
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Handle greetings
uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Thank you for raising your first issue - all contributions to this project are welcome!"
pr-message: "Thank you for raising your first pull request - all contributions to this project are welcome!"
slack-workflow-status:
if: always()
name: Slack Post Workflow Notification
needs:
- greeting
runs-on: ubuntu-latest
steps:
- name: Slack Workflow Notifications
if: ${{ env.SLACK_NOTIFY == 'true' && github.event_name == 'push' }}
uses: Gamesight/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
include_jobs: on-failure
include_commit_message: true