Merge commit '23fa869d86' as 'einat-ebpf'
This commit is contained in:
commit
4449cad239
9 changed files with 794 additions and 0 deletions
27
einat-ebpf/.github/workflows/calculate.yml
vendored
Normal file
27
einat-ebpf/.github/workflows/calculate.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: Calculating PKG_MIRROR_HASH
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
target_version:
|
||||
description: 'Target OpenWrt version. if empty the simple mode will be used.'
|
||||
required: false
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
check:
|
||||
name: Calculating PKG_MIRROR_HASH of XX
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write # To push a branch
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.ref_name }}
|
||||
fetch-depth: 0
|
||||
|
||||
- uses: muink/openwrt-package-mirror-hash-calculator@main
|
||||
env:
|
||||
COMMIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
MAKEFILE: Makefile
|
||||
TARGET_VERSION: ${{ inputs.target_version }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue