[Bug]: step does not retry with at_most_once_per_retry config #1
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: Notify Slack - Issues | |
| on: | |
| issues: | |
| types: [opened, reopened] | |
| permissions: {} | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send issue notification to Slack | |
| uses: slackapi/slack-github-action@45a88b9581bfab2566dc881e2cd66d334e621e2c # v3.0.3 | |
| with: | |
| webhook: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }} | |
| webhook-type: incoming-webhook | |
| payload: | | |
| { | |
| "action": "${{ github.event.action }}", | |
| "issue_url": "${{ github.event.issue.html_url }}", | |
| "package_name": "${{ github.repository }}" | |
| } |