drop block contribution do app (#14010)

This commit is contained in:
Jirka Borovec 2022-08-04 14:40:19 +02:00 committed by GitHub
parent e78bf2044b
commit 8cd6c3cf9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
name: Block app edits
on: ["pull_request"]
jobs:
block:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "2" # To retrieve the preceding commit.
- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v24
- name: List all added files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_and_modified_files }}; do
echo "$file"
done