# # # @type github workflow # @desc pings the developer # @author Aetherinox # @url https://github.com/Aetherinox # # name: "⚙️ Ping › Developer" run-name: "⚙️ Ping › Developer" # # # triggers # # on: issue_comment: types: [created] # # # environment variables # # env: BOT_NAME_1: AdminServ BOT_NAME_2: AdminServX BOT_NAME_3: EuropaServ BOT_NAME_DEPENDABOT: dependabot[bot] # # # jobs # # env not available for job.if # # jobs: deploy: runs-on: ubuntu-latest if: | contains(github.event.comment.body, '/ping') steps: # # # Job > Complete > Get publish timestamp # # - name: "🕛 Get Timestamp" id: task_complete_timestamp_get run: | echo "NOW=$(date +'%m-%d-%Y %H:%M:%S')" >> $GITHUB_ENV # # # Add Label to accepted PR # # port 465 # server_port: 465 # secure: true # ignore_cert: false # # port 587 # server_port: 587 # secure: false # # - name: Send mail uses: dawidd6/action-send-mail@v3 with: server_address: ${{secrets.EMAIL_SMTP}} server_port: 465 secure: true username: ${{secrets.EMAIL_FROM}} password: ${{secrets.EMAIL_KEY}} subject: "Github: Ping notification from ${{ github.repository }}" to: ${{secrets.EMAIL_TO}} from: ${{secrets.EMAIL_FROM}} html_body: | Title

[Github] Dear ${{github.repository_owner}},


You have received a ping notification from ${{ github.repository }} by ${{ github.event.comment.user.login }}.



Repository ${{ github.repository }}
Date ${{ env.NOW }}
Commenter ${{ github.event.comment.user.login }}
Issue # ${{ github.event.issue.number }}
Action Notification


 


~ Github



Copyright © 2024 - Betelgeuse
ignore_cert: true convert_markdown: true priority: normal