mirror of
https://github.com/django-components/django-components.git
synced 2025-11-13 20:25:20 +00:00
ci: fix discord integration (#1430)
This commit is contained in:
parent
f781a6d7fe
commit
3e837e20c6
3 changed files with 68 additions and 66 deletions
11
.github/workflows/discussion-discord.yml
vendored
11
.github/workflows/discussion-discord.yml
vendored
|
|
@ -18,17 +18,18 @@ jobs:
|
||||||
--arg user "${{ github.event.discussion.user.login }}" \
|
--arg user "${{ github.event.discussion.user.login }}" \
|
||||||
--arg repo "${{ github.repository }}" \
|
--arg repo "${{ github.repository }}" \
|
||||||
--arg number "#${{ github.event.discussion.number }}" \
|
--arg number "#${{ github.event.discussion.number }}" \
|
||||||
|
--arg timestamp "${{ github.event.discussion.created_at }}" \
|
||||||
'{
|
'{
|
||||||
"username": "GitHub Discussions",
|
"username": "GitHub Discussions",
|
||||||
"avatar_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
|
"avatar_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
|
||||||
"embeds": [
|
"embeds": [
|
||||||
{
|
{
|
||||||
"title": "New discussion: \($number) \($title)",
|
"title": ("New discussion: " + $number + " " + $title),
|
||||||
"url": \($url),
|
"url": $url,
|
||||||
"color": 16776960,
|
"color": 16776960,
|
||||||
"author": {"name": \($user)},
|
"author": {"name": $user},
|
||||||
"footer": {"text": \($repo)},
|
"footer": {"text": $repo},
|
||||||
"timestamp": "${{ github.event.discussion.created_at }}"
|
"timestamp": $timestamp
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}')
|
}')
|
||||||
|
|
|
||||||
11
.github/workflows/issue-discord.yml
vendored
11
.github/workflows/issue-discord.yml
vendored
|
|
@ -18,17 +18,18 @@ jobs:
|
||||||
--arg user "${{ github.event.issue.user.login }}" \
|
--arg user "${{ github.event.issue.user.login }}" \
|
||||||
--arg repo "${{ github.repository }}" \
|
--arg repo "${{ github.repository }}" \
|
||||||
--arg number "#${{ github.event.issue.number }}" \
|
--arg number "#${{ github.event.issue.number }}" \
|
||||||
|
--arg timestamp "${{ github.event.issue.created_at }}" \
|
||||||
'{
|
'{
|
||||||
"username": "GitHub Issues",
|
"username": "GitHub Issues",
|
||||||
"avatar_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
|
"avatar_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
|
||||||
"embeds": [
|
"embeds": [
|
||||||
{
|
{
|
||||||
"title": "New issue: \($number) \($title)",
|
"title": ("New issue: " + $number + " " + $title),
|
||||||
"url": \($url),
|
"url": $url,
|
||||||
"color": 3447003,
|
"color": 3447003,
|
||||||
"author": {"name": \($user)},
|
"author": {"name": $user},
|
||||||
"footer": {"text": \($repo)},
|
"footer": {"text": $repo},
|
||||||
"timestamp": "${{ github.event.issue.created_at }}"
|
"timestamp": $timestamp
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}')
|
}')
|
||||||
|
|
|
||||||
12
.github/workflows/pr-discord.yml
vendored
12
.github/workflows/pr-discord.yml
vendored
|
|
@ -18,19 +18,19 @@ jobs:
|
||||||
--arg user "${{ github.event.pull_request.user.login }}" \
|
--arg user "${{ github.event.pull_request.user.login }}" \
|
||||||
--arg repo "${{ github.repository }}" \
|
--arg repo "${{ github.repository }}" \
|
||||||
--arg number "#${{ github.event.pull_request.number }}" \
|
--arg number "#${{ github.event.pull_request.number }}" \
|
||||||
|
--arg timestamp "${{ github.event.pull_request.created_at }}" \
|
||||||
'{
|
'{
|
||||||
"username": "GitHub Pull Requests",
|
"username": "GitHub Pull Requests",
|
||||||
"avatar_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
|
"avatar_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
|
||||||
"embeds": [
|
"embeds": [
|
||||||
{
|
{
|
||||||
"title": "New pull request: \($number) \($title)",
|
"title": ("New pull request: " + $number + " " + $title),
|
||||||
"url": \($url),
|
"url": $url,
|
||||||
"color": 3066993,
|
"color": 3066993,
|
||||||
"author": {"name": \($user)},
|
"author": {"name": $user},
|
||||||
"footer": {"text": \($repo)},
|
"footer": {"text": $repo},
|
||||||
"timestamp": "${{ github.event.pull_request.created_at }}"
|
"timestamp": $timestamp
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}')
|
}')
|
||||||
curl -sS -X POST -H "Content-Type: application/json" -d "$payload" "$DISCORD_WEBHOOK_URL" | cat
|
curl -sS -X POST -H "Content-Type: application/json" -d "$payload" "$DISCORD_WEBHOOK_URL" | cat
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue