Skip to content

chore(deps): update peter-evans/create-pull-request action to v7 #28

chore(deps): update peter-evans/create-pull-request action to v7

chore(deps): update peter-evans/create-pull-request action to v7 #28

Workflow file for this run

name: Checks for push
on: push
jobs:
path-filter:
outputs:
markdown: ${{steps.changes.outputs.markdown}}
actions: ${{steps.changes.outputs.actions}}
ts: ${{steps.changes.outputs.ts}}
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
markdown:
- ./**/*.md
actions:
- .github/workflows/*.yml
- .github/workflows/*.yaml
- aqua.yaml
ts:
- .github/workflows/push.yml
- .github/workflows/_check-deno.yml
- ./**/*.ts
- deno.jsonc
check-markdown:
needs: path-filter
if: needs.path-filter.outputs.markdown == 'true'
uses: ./.github/workflows/_check-markdown.yml
permissions: {}
with:
globs: "./**/*.md"
check-actions:
needs: path-filter
if: needs.path-filter.outputs.actions == 'true'
uses: ./.github/workflows/_check-actions.yml
permissions:
contents: read
check-deno:
needs: path-filter
if: needs.path-filter.outputs.ts == 'true'
uses: ./.github/workflows/_check-deno.yml
permissions:
contents: read