forked from flipperdevices/flipperzero-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into release-candidate
- Loading branch information
Showing
129 changed files
with
4,475 additions
and
413 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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: 'Check FL ticket in PR name' | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
env: | ||
FBT_TOOLCHAIN_PATH: /runner/_work | ||
|
||
jobs: | ||
merge_report: | ||
runs-on: [self-hosted,FlipperZeroShell] | ||
steps: | ||
- name: 'Decontaminate previous build leftovers' | ||
run: | | ||
if [ -d .git ]; then | ||
git submodule status || git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)" | ||
fi | ||
- name: 'Checkout code' | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: 'Get commit details' | ||
run: | | ||
if [[ ${{ github.event_name }} == 'pull_request' ]]; then | ||
TYPE="pull" | ||
elif [[ "${{ github.ref }}" == "refs/tags/"* ]]; then | ||
TYPE="tag" | ||
else | ||
TYPE="other" | ||
fi | ||
python3 scripts/get_env.py "--event_file=${{ github.event_path }}" "--type=$TYPE" | ||
- name: 'Check ticket and report' | ||
run: | | ||
source scripts/toolchain/fbtenv.sh | ||
python3 -m pip install slack_sdk | ||
python3 scripts/merge_report_qa.py \ | ||
${{ secrets.QA_REPORT_SLACK_TOKEN }} \ | ||
${{ secrets.QA_REPORT_SLACK_CHANNEL }} | ||
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
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
Oops, something went wrong.