fix(import): correctly import from stdin #2
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: Commit Conformance | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
signoff: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup main branch without switching current branch | |
run: git fetch origin main:main | |
- name: Conform Action | |
uses: siderolabs/conform@v0.1.0-alpha.29 | |
with: | |
args: "enforce --base-branch=main" |