diff --git a/.github/workflows/gh-issue-open.yml b/.github/workflows/gh-issue-open.yml new file mode 100644 index 0000000..685ad49 --- /dev/null +++ b/.github/workflows/gh-issue-open.yml @@ -0,0 +1,14 @@ +name: Send GitHub new issues to Slack + +on: + issues: + types: [opened] + +jobs: + issue-opened: + runs-on: ubuntu-latest + steps: + - name: Send issue to solution slack + uses: slackapi/slack-github-action@v1.19.0 + env: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} \ No newline at end of file