CRT reaise AWS_ERROR_S3_REQUEST_HAS_COMPLETED when upload Llama 70b checkpoints. #29
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: Issue Slack Notifier | |
on: | |
issues: | |
types: [opened, reopened, edited] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send notification to Slack | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"action": "${{ github.event.action }}", | |
"issue_url": "${{ github.event.issue.html_url }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }} | |
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK |