Skip to content

image size metadata #42

image size metadata

image size metadata #42

Workflow file for this run

name: Send Slack message

Check failure on line 1 in .github/workflows/post-to-slack.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/post-to-slack.yml

Invalid workflow file

`workflow-call` is not a valid event name
on:
workflow-call:
inputs:
repo_name:
required: true
type: string
secrets:
SLACK_CHANNEL_TESTER:
required: true
SLACK_TOKEN:
required: true
jobs:
slack:
runs-on: ubuntu-latest
steps:
- name: post slack
uses: slackapi/[email protected]
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_TOKEN }}
with:
slack-message: |
"new issue: https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }} created."
channel-id: ${{ secrets.SLACK_CHANNEL_TESTER }}