amazon-cloudwatch-observability: cluster-scraper emits repeated “Summary datapoints are not supported” OTLP partial-success warnings with no minimal chart-level way to suppress #80
This file contains hidden or 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: Slack Notifications | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send issue notification to Slack | |
| if: github.event_name == 'issues' | |
| uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1 | |
| with: | |
| webhook: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }} | |
| webhook-type: incoming-webhook | |
| payload: | | |
| { | |
| "action": "${{ github.event.action }}", | |
| "url": "${{ github.event.issue.html_url }}", | |
| "title": "${{ github.event.issue.title }}" | |
| } | |
| - name: Send pull request notification to Slack | |
| if: github.event_name == 'pull_request_target' | |
| uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1 | |
| with: | |
| webhook: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }} | |
| webhook-type: incoming-webhook | |
| payload: | | |
| { | |
| "action": "${{ github.event.action }}", | |
| "url": "${{ github.event.pull_request.html_url }}", | |
| "title": "${{ github.event.pull_request.title }}" | |
| } |