Skip to content

chore(deps): update googleapis/release-please-action action to v4.1.3 #9

chore(deps): update googleapis/release-please-action action to v4.1.3

chore(deps): update googleapis/release-please-action action to v4.1.3 #9

Workflow file for this run

name: Checks for pull request
on:
pull_request:
branches:
- main
jobs:
path-filter:
outputs:
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: |
actions:
- .github/workflows/*.yml
- .github/workflows/*.yaml
- aqua.yaml
ts:
- .github/workflows/push.yml
- .github/workflows/_check-deno.yml
- ./**/*.ts
- deno.jsonc
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
status-check:
runs-on: ubuntu-latest
needs:
- check-actions
- check-deno
permissions: {}
if: failure()
steps:
- run: exit 1