build: set interop to auto for output config #2129
Workflow file for this run
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: Lint PR commit | |
# Triggers on pull requests with specific types | |
on: | |
pull_request: | |
types: | |
- reopened | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
main: | |
runs-on: ubuntu-latest # Use the latest version of the Ubuntu runner environment | |
steps: | |
# Step 1: Use the 'amannn/action-semantic-pull-request' action to validate the PR commit | |
- uses: amannn/[email protected] | |
with: | |
validateSingleCommit: true # Specify to validate a single commit | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Authenticate using the GitHub token |