Skip to content

Update native headers #5

Update native headers

Update native headers #5

Workflow file for this run

name: Update native headers
on:
workflow_dispatch:
inputs:
type:
description: 'rtc or rtm'
type: 'string'
default: 'rtc'
required: true
version:
description: 'version of the native headers'
type: 'string'
required: true
url:
description: 'URL of the native headers'
type: 'string'
required: true
jobs:
update-headers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Update headers
run: |
sh scripts/update_headers.sh ${{ inputs.type }} ${{ inputs.version }} ${{ inputs.url }}
shell: bash
- name: Create pull request
uses: AgoraIO-Extensions/actions/.github/actions/pr@main
with:
github-token: ${{ secrets.GH_TOKEN }}
target-repo: ${{ github.workspace }}
target-branch: ${{ github.ref_name }}
target-branch-name-surffix: headers-update
pull-request-title: |
[AUTO] Update native headers
pull-request-body: |
sdk:
${{ inputs.type }}${{ inputs.version }}
native source:
${{ inputs.url }}
add-paths: headers/${{ input.type }}_${{ inputs.version }}

Check failure on line 47 in .github/workflows/update_headers.yml

View workflow run for this annotation

GitHub Actions / Update native headers

Invalid workflow file

The workflow is not valid. .github/workflows/update_headers.yml (Line: 47, Col: 22): Unrecognized named-value: 'input'. Located at position 1 within expression: input.type