Skip to content

feat: new def convert #7

feat: new def convert

feat: new def convert #7

Workflow file for this run

---
name: pr check
permissions:
contents: read
pull-requests: write
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
pr-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- name: Get list of changed files
id: files
run: |
git diff --name-only --diff-filter=d origin/${{ github.base_ref }}...
shell: bash
- name: Print changed files
run: |
echo "Changed files in PR: ${{ steps.files.outputs.list }}"