Skip to content

Commit

Permalink
shiftjisに直してみる
Browse files Browse the repository at this point in the history
  • Loading branch information
UnagiDohn committed Oct 13, 2024
1 parent 425525f commit e83f72b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
# This workflow contains a single job called "greet"
greet:
# The type of runner that the job will run on
# ジョブを、仮想マシン上で行う.
# ジョブを、仮想マシン上で行う.
# runs-on: ubuntu-latest
# ジョブを、セルフホステッドランナー(自分で用意したPC)で実行する.
# ジョブを、セルフホステッドランナー(自分で用意したPC)で実行する.
runs-on: self-hosted

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# 終了後に discordのwebhookで通知を行う
# 終了後に discordのwebhookで通知を行う
- name: pwdcheck
run: |
pwd
Expand All @@ -33,7 +33,7 @@ jobs:
run: |
echo ${{ secrets.DISCORD_WEBHOOK_URL }}
- name: Notify Discord
# cmd.exe /c 'curl -H "Content-Type: application/json" -X POST -d "{\"username\": \"ここに名前を入れる\", \"content\": \"メッセージを送る!\"}" https://discord.com/api/webhooks/1294410759958298665/NsinS1PTNjGS8J8GFl_m37V36xB-1GzZNSfnoaTEF_LnwnUIqWqoMcWA_Gv3L15iFcxL'
# cmd.exe /c 'curl -H "Content-Type: application/json" -X POST -d "{\"username\": \"ここに名前を入れる\", \"content\": \"メッセージを送る!\"}" https://discord.com/api/webhooks/1294410759958298665/NsinS1PTNjGS8J8GFl_m37V36xB-1GzZNSfnoaTEF_LnwnUIqWqoMcWA_Gv3L15iFcxL'
# Invoke-WebRequest -Headers @{"Content-Type"="application/json"} -Method Post -Body "{`"username`": `"namename`", `"content`": `"messagemessage`"}" https://discord.com/api/webhooks/1294410759958298665/NsinS1PTNjGS8J8GFl_m37V36xB-1GzZNSfnoaTEF_LnwnUIqWqoMcWA_Gv3L15iFcxL
run: |
Invoke-WebRequest -Headers @{"Content-Type"="application/json"} -Method Post -Body "{`"username`": `"なまえ`", `"content`": `"めっせーじ`"}" ${{ secrets.DISCORD_WEBHOOK_URL }}
Invoke-WebRequest -Headers @{"Content-Type"="application/json"} -Method Post -Body "{`"username`": `"なまえ`", `"content`": `"めっせーじ`"}" ${{ secrets.DISCORD_WEBHOOK_URL }}

0 comments on commit e83f72b

Please sign in to comment.