Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/formalities.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"check_branch": true,
"check_merge_commits": true,
"check_noreply_email": true,
"check_signoff": true,
"check_signature": true,
"allow_autosquash": true,
"enable_comments": true,
"show_force_push_tip": true,
"max_subject_len_soft": 60,
"max_subject_len_hard": 80,
"max_body_line_len": 100,
"warn_duplicate_body": true,
"warn_generic_subjects": true,
"require_release_notes": true,
"require_body": true,
"check_openwrt_spelling": true,
"check_pkg_version": true,
"check_crlf": true,
"check_trailing_newline": true,
"add_package_label": true,
"drop_package_label": true,
"branch_labeling": true,
"check_openwrt_meta": true,
"check_conffiles": true,
"check_uci_config": true,
"check_space_after_assignment": true,
"check_missing_colon": true,
"check_makefile_indentation": true,
"check_pkg_name_reuse": true,
"check_patch_headers": true,
"check_pkg_release": "warning",
"require_linked_github_account": true,
"enable_stale_bot": false
}
18 changes: 0 additions & 18 deletions .github/workflows/formal.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/multi-arch-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,25 @@ name: Feeds Package Test Build
on:
pull_request:

permissions:
contents: read
checks: read

jobs:
wait-for-formalities:
name: Wait for FormalityCheck
runs-on: ubuntu-slim
steps:
- name: Wait for Check Run
uses: lewagon/wait-on-check-action@v1.8.1
with:
ref: ${{ github.event.pull_request.head.sha }}
check-name: 'FormalityCheck / Git & Commits'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 5

build:
name: Feeds Package Test Build
needs: wait-for-formalities
uses: openwrt/actions-shared-workflows/.github/workflows/multi-arch-test-build.yml@main