Skip to content

Add diff_headers.yml action #1

Add diff_headers.yml action

Add diff_headers.yml action #1

Workflow file for this run

name: Diff headers
on:
pull_request:
workflow_dispatch:
inputs:
base-version:
description: 'e.g., rtc_4.3.0'
type: 'string'
required: true
target-version:
description: 'e.g., rtc_4.3.1'
type: 'string'
required: true
jobs:
diff-headers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update headers
run: |
bash scripts/diff.sh ${{ inputs.base-version }} ${{ inputs.target-version }}
shell: bash