Update dependency software.amazon.awssdk:cloudwatchlogs to v2.29.31 #923
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: dependabot-pagerduty-alert | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
create-alert: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: 'main' | |
- name: Send PagerDuty alert if PR created by dependabot | |
if: github.base_ref == 'main' && github.actor == 'dependabot[bot]' | |
run: | | |
./scripts/post-pagerduty-alert.sh trigger ludos-github-action-dependabot "Dependabot created a new PR to ${{ github.repository }}" | |
env: | |
PAGERDUTY_ROUTING_KEY: ${{ secrets.PAGERDUTY_ROUTING_KEY }} |