Update native headers #13
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
name: Update native headers | |
on: | |
repository_dispatch: | |
types: [update_headers] | |
workflow_dispatch: | |
inputs: | |
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.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: | | |
native headers source: | |
${{ inputs.url }} | |
add-paths: headers/* |