diff --git a/.github/workflows/clickup-issue.yml b/.github/workflows/clickup-issue.yml new file mode 100644 index 000000000..58c452fbd --- /dev/null +++ b/.github/workflows/clickup-issue.yml @@ -0,0 +1,24 @@ +on: + issues: + types: [ opened ] + + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Send mail + uses: dawidd6/action-send-mail@v3 + with: + server_address: smtp.gmail.com + server_port: 465 + secure: true + + username: ${{secrets.EMAIL}} + password: ${{secrets.EMAIL_PASSWORD}} + + subject: ${{ github.event.issue.title }} + to: ${{secrets.CLICKUP_EMAIL}} + from: Openbrush CI + body: ${{ github.event.issue.body }}