Bump dnspython from 2.2.1 to 2.6.1 in /Script #85
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
name: CICD Pipeline (Custom) | |
# | |
# This is a repository specific custom workflow - only the template is auto-generated | |
# | |
# | |
# Start of Template (part 1) | |
# | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
slack-notify: | |
name: Slack notify? | |
runs-on: ubuntu-latest | |
outputs: | |
notify: ${{ steps.slack-notify.outputs.notify }} | |
steps: | |
- name: Set slack notify | |
id: slack-notify | |
run: echo "::set-output name=notify::false" | |
build: | |
name: Build pipeline | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
# | |
# End of Template (part 1) | |
# | |
# | |
# Start of Template (part 2) | |
# | |
slack-workflow-status: | |
if: always() | |
name: Slack Post Workflow Notification | |
needs: | |
- slack-notify | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack Workflow Notifications | |
if: ${{ needs.slack-notify.outputs.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 | |
# | |
# End of Template (part 2) | |
# |