Skip to content

fix "get PR" step in auto-merge-pr.yaml #130

fix "get PR" step in auto-merge-pr.yaml

fix "get PR" step in auto-merge-pr.yaml #130

Workflow file for this run

name: "Lint GitHub Actions Workflows"
on:
pull_request:
push:
branches: [main]
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: "Download actionlint"
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
shell: bash
- name: "Check Workflow Files"
run: ${{ steps.get_actionlint.outputs.executable }} -color -ignore "SC2086"
shell: bash