forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,12 @@ jobs: | |
|
||
steps: | ||
- name: Notify Start of Build | ||
uses: appleboy/telegram-action@v0.2.0 | ||
uses: xinthink/action[email protected] | ||
with: | ||
token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
to: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
message: "Build Kernel job has started." | ||
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
chatId: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
jobStatus: "Build Kernel job has started." | ||
skipSuccess: false | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
@@ -83,11 +84,12 @@ jobs: | |
|
||
- name: Notify Build Completion | ||
if: always() | ||
uses: appleboy/telegram-action@v0.2.0 | ||
uses: xinthink/action[email protected] | ||
with: | ||
token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
to: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
message: "Build Kernel job completed with status ${{ job.status }}." | ||
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
chatId: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
jobStatus: "Build Kernel job completed with status ${{ job.status }}." | ||
skipSuccess: false | ||
|
||
release: | ||
name: Release Kernel & RootFS | ||
|
@@ -96,11 +98,12 @@ jobs: | |
|
||
steps: | ||
- name: Notify Start of Release | ||
uses: appleboy/telegram-action@v0.2.0 | ||
uses: xinthink/action[email protected] | ||
with: | ||
token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
to: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
message: "Release job has started." | ||
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
chatId: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
jobStatus: "Release job has started." | ||
skipSuccess: false | ||
|
||
- name: Download Kernel Artifact | ||
uses: actions/download-artifact@v3 | ||
|
@@ -145,8 +148,9 @@ jobs: | |
|
||
- name: Notify Release Completion | ||
if: always() | ||
uses: appleboy/telegram-action@v0.2.0 | ||
uses: xinthink/action[email protected] | ||
with: | ||
token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
to: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
message: "Release job completed with status ${{ job.status }}." | ||
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }} | ||
chatId: ${{ secrets.TELEGRAM_CHAT_ID }} | ||
jobStatus: "Release job completed with status ${{ job.status }}." | ||
skipSuccess: false |