2021-03-05 02:36:52 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
2021-04-23 10:14:21 +00:00
|
|
|
push:
|
|
|
|
branches:
|
2022-05-14 18:43:09 +00:00
|
|
|
- "**"
|
2023-01-01 18:39:47 +00:00
|
|
|
pull_request_review:
|
2023-06-07 23:13:00 +00:00
|
|
|
types: [edited, dismissed, submitted]
|
2023-06-05 02:09:02 +00:00
|
|
|
pull_request_target:
|
|
|
|
pull_request:
|
2023-06-07 23:13:00 +00:00
|
|
|
types:
|
|
|
|
- assigned
|
|
|
|
- unassigned
|
|
|
|
- labeled
|
|
|
|
- unlabeled
|
|
|
|
- opened
|
|
|
|
- edited
|
|
|
|
- closed
|
|
|
|
- reopened
|
|
|
|
- synchronize
|
|
|
|
- converted_to_draft
|
|
|
|
- ready_for_review
|
|
|
|
- locked
|
|
|
|
- unlocked
|
|
|
|
- review_requested
|
|
|
|
- review_request_removed
|
|
|
|
- auto_merge_enabled
|
|
|
|
- auto_merge_disabled
|
2023-01-01 18:39:47 +00:00
|
|
|
branches:
|
|
|
|
- main
|
2021-03-05 02:36:52 +00:00
|
|
|
|
2023-06-07 23:13:00 +00:00
|
|
|
|
2021-03-05 02:36:52 +00:00
|
|
|
jobs:
|
2021-06-18 14:19:28 +00:00
|
|
|
shellcheck:
|
|
|
|
name: Run shellcheck
|
2021-05-25 04:30:19 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-18 14:19:28 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2022-03-01 19:50:35 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-06-18 14:19:28 +00:00
|
|
|
- name: shellcheck
|
2023-06-19 16:47:52 +00:00
|
|
|
uses: reviewdog/action-shellcheck@v1.18
|
2022-05-14 18:43:09 +00:00
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
fetch-depth: 0
|
2023-06-08 11:11:10 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2023-05-25 18:22:24 +00:00
|
|
|
|
|
|
|
- name: Use Node.js 16.x
|
|
|
|
uses: actions/setup-node@v3.6.0
|
|
|
|
with:
|
|
|
|
cache: 'yarn'
|
|
|
|
node-version: '16.x'
|
|
|
|
|
|
|
|
- name: Create coverage directory and clover.xml
|
|
|
|
run: |
|
|
|
|
mkdir -p coverage
|
|
|
|
touch coverage/clover.xml
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
- name: Run eslint on changed files
|
2023-05-26 20:12:13 +00:00
|
|
|
uses: tj-actions/eslint-changed-files@v19
|
2023-06-15 18:33:00 +00:00
|
|
|
if: github.event_name == 'pull_request'
|
2023-05-25 18:22:24 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.PAT_TOKEN }}
|
|
|
|
config_path: ".eslintrc.json"
|
|
|
|
ignore_path: ".eslintignore"
|
|
|
|
|
|
|
|
- name: Run build and test
|
|
|
|
run: |
|
|
|
|
yarn all
|
|
|
|
|
|
|
|
- name: Verify Changed files
|
2023-06-22 09:55:39 +00:00
|
|
|
uses: tj-actions/verify-changed-files@v16
|
2023-05-25 18:22:24 +00:00
|
|
|
id: changed_files
|
2023-06-15 18:33:00 +00:00
|
|
|
if: github.event_name == 'pull_request'
|
2023-05-25 18:22:24 +00:00
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
src
|
|
|
|
dist
|
|
|
|
|
|
|
|
- name: Commit files
|
2023-06-15 18:33:00 +00:00
|
|
|
if: steps.changed_files.outputs.files_changed == 'true' && github.event_name == 'pull_request'
|
2023-05-25 18:22:24 +00:00
|
|
|
run: |
|
|
|
|
git config --local user.email "action@github.com"
|
|
|
|
git config --local user.name "GitHub Action"
|
|
|
|
git add src dist
|
|
|
|
git commit -m "Added missing changes and modified dist assets."
|
|
|
|
|
|
|
|
- name: Push changes
|
2023-05-25 23:39:26 +00:00
|
|
|
if: steps.changed_files.outputs.files_changed == 'true' && github.event_name == 'pull_request'
|
2023-06-08 01:05:54 +00:00
|
|
|
continue-on-error: true
|
2023-05-25 18:22:24 +00:00
|
|
|
uses: ad-m/github-push-action@master
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.PAT_TOKEN }}
|
|
|
|
branch: ${{ github.head_ref }}
|
|
|
|
|
|
|
|
- name: Upload build assets
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
path: dist
|
|
|
|
|
|
|
|
- name: Run codacy-coverage-reporter
|
|
|
|
uses: codacy/codacy-coverage-reporter-action@v1
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
|
|
|
coverage-reports: coverage/lcov.info
|
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
test-multiple-repositories:
|
|
|
|
name: Test with multiple repositories
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2021-08-28 01:53:03 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout into dir1
|
2022-03-01 19:50:35 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-08-28 01:53:03 +00:00
|
|
|
with:
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-02-23 08:39:20 +00:00
|
|
|
submodules: true
|
2021-08-28 01:53:03 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
path: dir1
|
2023-05-25 18:22:24 +00:00
|
|
|
|
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
2023-06-23 17:20:13 +00:00
|
|
|
path: dir1/dist
|
2023-05-25 18:22:24 +00:00
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
- name: Run changed-files with defaults on the dir1
|
|
|
|
id: changed-files-dir1
|
|
|
|
uses: ./dir1
|
|
|
|
with:
|
|
|
|
path: dir1
|
2023-05-25 18:22:24 +00:00
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-dir1.outputs) }}'
|
2021-08-28 01:53:03 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2023-05-25 18:22:24 +00:00
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
- name: List all modified files
|
|
|
|
run: |
|
2021-10-12 13:47:12 +00:00
|
|
|
for file in ${{ steps.changed-files-dir1.outputs.modified_files }}; do
|
2021-09-04 13:08:20 +00:00
|
|
|
echo "$file"
|
2021-08-28 01:53:03 +00:00
|
|
|
done
|
|
|
|
shell:
|
|
|
|
bash
|
2023-05-25 18:22:24 +00:00
|
|
|
|
2023-06-23 17:20:13 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
path: dir2/dist
|
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
- name: Checkout into dir2
|
2022-03-01 19:50:35 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-08-28 01:53:03 +00:00
|
|
|
with:
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-02-23 08:39:20 +00:00
|
|
|
submodules: true
|
2021-08-28 01:53:03 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
path: dir2
|
2023-05-25 18:22:24 +00:00
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
- name: Run changed-files with defaults on the dir2
|
|
|
|
id: changed-files-dir2
|
|
|
|
uses: ./dir2
|
|
|
|
with:
|
|
|
|
path: dir2
|
2023-05-25 18:22:24 +00:00
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-dir2.outputs) }}'
|
2021-08-28 01:53:03 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2023-05-25 18:22:24 +00:00
|
|
|
|
2021-08-28 01:53:03 +00:00
|
|
|
- name: List all modified files
|
|
|
|
run: |
|
2021-10-12 13:47:12 +00:00
|
|
|
for file in ${{ steps.changed-files-dir2.outputs.modified_files }}; do
|
2021-09-04 13:08:20 +00:00
|
|
|
echo "$file"
|
2021-08-28 01:53:03 +00:00
|
|
|
done
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2022-10-15 18:34:47 +00:00
|
|
|
test-using-since-and-until:
|
|
|
|
name: Test changed-files using since and until
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-10-15 18:48:13 +00:00
|
|
|
if: github.event_name == 'push'
|
2022-10-15 18:34:47 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2022-10-15 18:34:47 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-10-15 18:34:47 +00:00
|
|
|
fetch-depth: 0
|
2022-10-25 20:12:36 +00:00
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
2022-10-15 18:34:47 +00:00
|
|
|
- name: Run changed-files since 2022-08-19
|
|
|
|
id: changed-files-since
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
since: "2022-08-19"
|
2022-10-16 04:13:00 +00:00
|
|
|
|
|
|
|
- name: Check output
|
|
|
|
if: "!contains(steps.changed-files-since.outputs.all_changed_files, '.github/workflows/sync-release-version.yml')"
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected to include (.github/workflows/sync-release-version.yml) got (${{ steps.changed-files-since.outputs.all_changed_files }})"
|
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2022-10-25 20:12:36 +00:00
|
|
|
|
2022-10-15 18:34:47 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-since.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-10-25 20:12:36 +00:00
|
|
|
|
2022-10-15 18:34:47 +00:00
|
|
|
- name: Run changed-files until 2022-08-20
|
|
|
|
id: changed-files-until
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
until: "2022-08-20"
|
|
|
|
|
2022-10-16 04:13:00 +00:00
|
|
|
- name: Check output
|
2022-11-08 16:31:21 +00:00
|
|
|
if: "!contains(steps.changed-files-until.outputs.all_changed_files, 'README.md')"
|
2022-10-16 04:13:00 +00:00
|
|
|
run: |
|
2022-11-08 16:31:21 +00:00
|
|
|
echo "Invalid output: Expected to include (README.md) got (${{ steps.changed-files-until.outputs.all_changed_files }})"
|
2022-10-16 04:13:00 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2022-10-15 18:34:47 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-until.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2022-07-18 20:34:41 +00:00
|
|
|
test-similar-base-and-commit-sha:
|
|
|
|
name: Test changed-files similar base and commit sha
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2022-07-18 20:34:41 +00:00
|
|
|
|
2022-09-03 00:32:08 +00:00
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2022-09-03 00:32:08 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-09-03 00:32:08 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
2022-09-03 00:55:23 +00:00
|
|
|
- name: Run changed-files with similar base and commit sha
|
2022-09-03 00:32:08 +00:00
|
|
|
id: changed-files
|
2022-09-03 00:50:38 +00:00
|
|
|
continue-on-error: true
|
2022-09-03 00:32:08 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: d1c0ee4
|
|
|
|
sha: d1c0ee4
|
|
|
|
|
2022-09-03 00:50:38 +00:00
|
|
|
- name: Exit with 1 if no error is raised
|
|
|
|
if: steps.changed-files.outcome != 'failure'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (failure) got ${{ steps.changed-files.outcome }}"
|
|
|
|
exit 1
|
|
|
|
|
2022-09-03 00:32:08 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2022-10-14 19:04:29 +00:00
|
|
|
test-unset-github-output-env:
|
|
|
|
name: Test unset GITHUB_OUTPUT env
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2022-10-14 19:04:29 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2022-10-14 19:04:29 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-10-14 19:04:29 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
2022-10-14 19:04:29 +00:00
|
|
|
- name: Run changed-files with unset GITHUB_OUTPUT env
|
|
|
|
id: changed-files
|
|
|
|
continue-on-error: true
|
|
|
|
uses: ./
|
|
|
|
env:
|
|
|
|
GITHUB_OUTPUT: ""
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2022-10-25 21:00:08 +00:00
|
|
|
test-limited-commit-history:
|
2022-10-25 21:00:32 +00:00
|
|
|
name: Test changed-files with limited commit history
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2022-09-03 00:32:08 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2022-11-03 15:54:28 +00:00
|
|
|
fetch-depth: [1, 2]
|
2023-02-07 01:25:06 +00:00
|
|
|
input-fetch_depth: [1, 50]
|
2022-09-03 00:32:08 +00:00
|
|
|
|
2022-07-18 20:34:41 +00:00
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2022-07-18 20:34:41 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-11-03 12:26:40 +00:00
|
|
|
with:
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-11-03 15:54:28 +00:00
|
|
|
fetch-depth: ${{ matrix.fetch-depth }}
|
2022-07-18 20:34:41 +00:00
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
2022-11-03 12:26:40 +00:00
|
|
|
- name: Run changed-files
|
2022-07-18 20:34:41 +00:00
|
|
|
id: changed-files
|
|
|
|
uses: ./
|
2023-02-07 01:25:06 +00:00
|
|
|
with:
|
|
|
|
fetch_depth: ${{ matrix.input-fetch_depth }}
|
2022-10-12 18:57:13 +00:00
|
|
|
|
2022-07-18 20:34:41 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2023-05-31 21:26:08 +00:00
|
|
|
test-pull-request-head-ref:
|
|
|
|
name: Test changed-files with pull request head ref
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
if: github.event_name != 'push'
|
|
|
|
|
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2023-05-31 21:26:08 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
|
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
|
|
|
- name: Run changed-files
|
|
|
|
id: changed-files
|
|
|
|
uses: ./
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2023-06-01 16:03:09 +00:00
|
|
|
test-pull-request-without-persist-credentials:
|
|
|
|
name: Test changed-files with pull request without persist credentials
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
if: github.event_name != 'push'
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
|
|
|
fetch-depth: [1, 2, 0]
|
|
|
|
|
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2023-06-01 16:03:09 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: ${{ matrix.fetch-depth }}
|
|
|
|
persist-credentials: false
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2023-06-01 16:03:09 +00:00
|
|
|
|
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
|
|
|
- name: Run changed-files
|
|
|
|
id: changed-files
|
|
|
|
uses: ./
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2021-12-04 11:11:27 +00:00
|
|
|
test-non-existent-base-sha:
|
|
|
|
name: Test changed-files non existent base sha
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2021-06-18 14:19:28 +00:00
|
|
|
|
2021-05-25 04:30:19 +00:00
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2022-03-01 19:50:35 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-08-28 01:53:03 +00:00
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
2021-12-04 11:11:27 +00:00
|
|
|
- name: Run changed-files with non existent base sha
|
2021-05-25 04:30:19 +00:00
|
|
|
id: changed-files
|
2021-12-04 11:11:27 +00:00
|
|
|
uses: ./
|
2021-05-25 04:30:19 +00:00
|
|
|
continue-on-error: true
|
2021-12-04 11:11:27 +00:00
|
|
|
with:
|
|
|
|
base_sha: "4554456"
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
2022-08-21 02:41:36 +00:00
|
|
|
|
2022-06-30 02:42:32 +00:00
|
|
|
- name: Exit with 1 if no error is raised
|
|
|
|
if: steps.changed-files.outcome != 'failure'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (failure) got ${{ steps.changed-files.outcome }}"
|
|
|
|
exit 1
|
2022-05-14 18:43:09 +00:00
|
|
|
|
2021-12-04 11:11:27 +00:00
|
|
|
- name: Run changed-files-specific with non existent base sha
|
|
|
|
id: changed-files-specific
|
2021-05-25 04:30:19 +00:00
|
|
|
uses: ./
|
2021-12-04 11:11:27 +00:00
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
files: action.yml
|
|
|
|
base_sha: "4554456"
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files-specific.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
2022-08-21 02:41:36 +00:00
|
|
|
|
2022-06-30 02:42:32 +00:00
|
|
|
- name: Exit with 1 if no error is raised
|
|
|
|
if: steps.changed-files-specific.outcome != 'failure'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (failure) got ${{ steps.changed-files-specific.outcome }}"
|
|
|
|
exit 1
|
2021-12-04 11:11:27 +00:00
|
|
|
|
|
|
|
test-non-existent-sha:
|
|
|
|
name: Test changed-files non existent sha
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2021-12-04 11:11:27 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2022-03-01 19:50:35 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-12-04 11:11:27 +00:00
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
2021-12-04 11:11:27 +00:00
|
|
|
- name: Run changed-files with non existent sha
|
|
|
|
id: changed-files
|
|
|
|
uses: ./
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
2022-11-11 15:21:05 +00:00
|
|
|
sha: "4774456"
|
2021-08-28 01:53:03 +00:00
|
|
|
|
2021-05-25 04:30:19 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files.outputs) }}"
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-08-21 02:41:36 +00:00
|
|
|
|
2022-06-30 02:42:32 +00:00
|
|
|
- name: Exit with 1 if no error is raised
|
|
|
|
if: steps.changed-files.outcome != 'failure'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (failure) got ${{ steps.changed-files.outcome }}"
|
|
|
|
exit 1
|
2022-05-14 18:43:09 +00:00
|
|
|
|
2021-12-04 11:11:27 +00:00
|
|
|
- name: Run changed-files-specific with non existent sha
|
|
|
|
id: changed-files-specific
|
|
|
|
uses: ./
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
files: action.yml
|
2022-11-11 15:21:05 +00:00
|
|
|
sha: "4774456"
|
2021-12-04 11:11:27 +00:00
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files-specific.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
2022-08-21 02:41:36 +00:00
|
|
|
|
2022-06-30 02:42:32 +00:00
|
|
|
- name: Exit with 1 if no error is raised
|
|
|
|
if: steps.changed-files-specific.outcome != 'failure'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (failure) got ${{ steps.changed-files-specific.outcome }}"
|
|
|
|
exit 1
|
2021-05-25 04:30:19 +00:00
|
|
|
|
2023-06-23 17:20:13 +00:00
|
|
|
test-rest-api:
|
|
|
|
name: Test changed-files with REST API
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
if: github.event_name != 'push'
|
|
|
|
permissions:
|
|
|
|
pull-requests: read
|
|
|
|
steps:
|
|
|
|
- name: Checkout into dir1
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
|
|
submodules: true
|
|
|
|
fetch-depth: 0
|
|
|
|
path: dir1
|
|
|
|
|
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
path: dir1/dist
|
|
|
|
|
|
|
|
- name: Run changed-files with REST API
|
|
|
|
id: changed-files
|
|
|
|
uses: ./dir1
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
2023-02-16 04:42:55 +00:00
|
|
|
test-submodules:
|
|
|
|
name: Test changed-files with submodule
|
2023-03-10 04:01:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2023-02-16 04:42:55 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2023-03-10 04:01:01 +00:00
|
|
|
fetch-depth: [0, 1, 2]
|
2023-02-16 04:42:55 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-16 06:17:13 +00:00
|
|
|
- name: Checkout branch
|
2023-02-16 04:42:55 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2023-02-28 19:47:37 +00:00
|
|
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
2023-02-16 04:42:55 +00:00
|
|
|
submodules: recursive
|
2023-02-28 19:47:37 +00:00
|
|
|
fetch-depth: ${{ matrix.fetch-depth }}
|
2023-02-16 04:42:55 +00:00
|
|
|
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
2023-02-16 04:42:55 +00:00
|
|
|
- name: Run changed-files with submodule
|
|
|
|
id: changed-files
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: "85bd869"
|
|
|
|
sha: "adde7bb"
|
|
|
|
fetch_depth: 60000
|
|
|
|
|
|
|
|
- name: Verify added files
|
|
|
|
if: steps.changed-files.outputs.added_files != 'test/demo/test/test.txt'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (test/demo/test/test.txt) got ${{ steps.changed-files.outputs.added_files }}"
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
2023-06-16 06:17:13 +00:00
|
|
|
test-yaml:
|
|
|
|
name: Test changed-files with yaml
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
|
|
|
fetch-depth: [0, 1, 2]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout branch
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
|
|
submodules: recursive
|
|
|
|
fetch-depth: ${{ matrix.fetch-depth }}
|
|
|
|
|
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
|
|
|
- name: Run changed-files with files_yaml
|
|
|
|
id: changed-files
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files_yaml: |
|
|
|
|
test:
|
|
|
|
- test/**.txt
|
|
|
|
- test/**.md
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
|
|
|
- name: Run changed-files with files_yaml_from_source_file
|
|
|
|
id: changed-files-from-source-file
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files_yaml_from_source_file: |
|
|
|
|
test/changed-files.yml
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files-from-source-file.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
2023-02-16 04:42:55 +00:00
|
|
|
|
2023-06-17 00:57:12 +00:00
|
|
|
test_recover_deleted_file:
|
|
|
|
name: Test changed-files recover deleted file
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
|
|
|
fetch-depth: [0, 1, 2]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout branch
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
|
|
submodules: recursive
|
|
|
|
fetch-depth: ${{ matrix.fetch-depth }}
|
|
|
|
|
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
|
|
|
|
|
|
|
- name: Run changed-files with recover_deleted_files
|
|
|
|
id: changed-files-recover-deleted-files
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: "fcdeb5b3d797752d95f6dbe98552a95c29dad338"
|
|
|
|
sha: "432e0c810c60ef1332850a971c5ec39022034b4c"
|
|
|
|
recover_deleted_files: true
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files-recover-deleted-files.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
|
|
|
- name: Verify deleted files
|
|
|
|
if: steps.changed-files-recover-deleted-files.outputs.deleted_files != 'test/test deleted.txt'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (test/test deleted.txt) got ${{ steps.changed-files-recover-deleted-files.outputs.deleted_files }}"
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
- name: Verify that test/test deleted.txt is restored
|
|
|
|
run: |
|
|
|
|
if [ ! -f "test/test deleted.txt" ]; then
|
|
|
|
echo "Expected: (test/test deleted.txt) to exist"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
cat "test/test deleted.txt"
|
2023-06-17 02:33:42 +00:00
|
|
|
rm "test/test deleted.txt"
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Run changed-files with recover_deleted_files and files input
|
|
|
|
id: changed-files-recover-deleted-files-with-files
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: "fcdeb5b3d797752d95f6dbe98552a95c29dad338"
|
|
|
|
sha: "432e0c810c60ef1332850a971c5ec39022034b4c"
|
|
|
|
files: |
|
|
|
|
test
|
|
|
|
recover_deleted_files: true
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files-recover-deleted-files-with-files.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
|
|
|
- name: Verify deleted files
|
|
|
|
if: steps.changed-files-recover-deleted-files-with-files.outputs.deleted_files != 'test/test deleted.txt'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (test/test deleted.txt) got ${{ steps.changed-files-recover-deleted-files-with-files.outputs.deleted_files }}"
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
- name: Verify that test/test deleted.txt is restored
|
|
|
|
run: |
|
|
|
|
if [ ! -f "test/test deleted.txt" ]; then
|
|
|
|
echo "Expected: (test/test deleted.txt) to exist"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
cat "test/test deleted.txt"
|
|
|
|
rm "test/test deleted.txt"
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Run changed-files with recover_deleted_files and files_yaml input
|
|
|
|
id: changed-files-recover-deleted-files-with-files-yaml
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: "fcdeb5b3d797752d95f6dbe98552a95c29dad338"
|
|
|
|
sha: "432e0c810c60ef1332850a971c5ec39022034b4c"
|
|
|
|
files_yaml: |
|
|
|
|
test:
|
|
|
|
- test/**.txt
|
|
|
|
- test/**.md
|
|
|
|
recover_deleted_files: true
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files-recover-deleted-files-with-files-yaml.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
|
|
|
- name: Verify deleted files
|
|
|
|
if: steps.changed-files-recover-deleted-files-with-files-yaml.outputs.test_deleted_files != 'test/test deleted.txt'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (test/test deleted.txt) got ${{ steps.changed-files-recover-deleted-files-with-files-yaml.outputs.test_deleted_files }}"
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
- name: Verify that test/test deleted.txt is restored
|
|
|
|
run: |
|
|
|
|
if [ ! -f "test/test deleted.txt" ]; then
|
|
|
|
echo "Expected: (test/test deleted.txt) to exist"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
cat "test/test deleted.txt"
|
|
|
|
rm "test/test deleted.txt"
|
2023-06-17 00:57:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Run changed-files with recover_deleted_files and recover_deleted_files_to_destination
|
|
|
|
id: changed-files-recover-deleted-files-to-destination
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: "fcdeb5b3d797752d95f6dbe98552a95c29dad338"
|
|
|
|
sha: "432e0c810c60ef1332850a971c5ec39022034b4c"
|
|
|
|
recover_deleted_files: true
|
|
|
|
recover_deleted_files_to_destination: "deleted_files"
|
|
|
|
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo "${{ toJSON(steps.changed-files-recover-deleted-files-to-destination.outputs) }}"
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
|
|
|
|
- name: Verify deleted files
|
|
|
|
if: steps.changed-files-recover-deleted-files-to-destination.outputs.deleted_files != 'test/test deleted.txt'
|
|
|
|
run: |
|
|
|
|
echo "Expected: (test/test deleted.txt) got ${{ steps.changed-files-recover-deleted-files-to-destination.outputs.deleted_files }}"
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
- name: Verify that test/test deleted.txt is restored
|
|
|
|
run: |
|
|
|
|
if [ ! -f "deleted_files/test/test deleted.txt" ]; then
|
|
|
|
echo "Expected: (deleted_files/test/test deleted.txt) to exist"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
cat "deleted_files/test/test deleted.txt"
|
|
|
|
fi
|
|
|
|
|
2021-03-05 02:36:52 +00:00
|
|
|
test:
|
|
|
|
name: Test changed-files
|
2021-06-18 14:19:28 +00:00
|
|
|
runs-on: ${{ matrix.platform }}
|
2023-05-25 18:22:24 +00:00
|
|
|
needs: build
|
2021-06-18 14:19:28 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
2022-03-16 05:38:55 +00:00
|
|
|
max-parallel: 4
|
2021-06-18 14:19:28 +00:00
|
|
|
matrix:
|
2022-12-15 23:50:00 +00:00
|
|
|
platform: [ubuntu-latest, ubuntu-22.04, windows-latest, macos-latest, macos-11, windows-2022]
|
2023-03-10 04:01:01 +00:00
|
|
|
fetch-depth: [0, 1, 2]
|
2021-06-18 14:19:28 +00:00
|
|
|
|
2021-03-05 02:36:52 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-01 19:50:35 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-04-23 10:17:20 +00:00
|
|
|
with:
|
2022-02-23 08:39:20 +00:00
|
|
|
submodules: true
|
2023-06-08 12:25:07 +00:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-11-02 21:09:50 +00:00
|
|
|
fetch-depth: ${{ matrix.fetch-depth }}
|
2023-05-25 18:22:24 +00:00
|
|
|
- name: Download build assets
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-assets
|
2022-10-02 12:07:58 +00:00
|
|
|
- name: Dump GitHub context
|
|
|
|
env:
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
run: echo "$GITHUB_CONTEXT"
|
2021-03-05 12:28:53 +00:00
|
|
|
- name: Run changed-files with defaults
|
2021-03-05 03:36:52 +00:00
|
|
|
id: changed-files
|
2021-03-05 02:36:52 +00:00
|
|
|
uses: ./
|
2021-03-05 03:36:52 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files.outputs) }}'
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-11-07 03:50:36 +00:00
|
|
|
- name: Run changed-files with since_last_remote_commit
|
|
|
|
id: changed-files-since-last-remote-commit
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
since_last_remote_commit: true
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-since-last-remote-commit.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2023-05-29 16:12:36 +00:00
|
|
|
- name: Run changed-files with dir name
|
|
|
|
id: changed-files-dir-name
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: .github/workflows
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-dir-name.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-12-19 17:51:22 +00:00
|
|
|
- name: Run changed-files with write_output_files
|
|
|
|
id: changed-files-write-output-files
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
json: true
|
|
|
|
write_output_files: true
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-write-output-files.outputs.all_changed_files) }}'
|
|
|
|
cat .github/outputs/all_changed_files.json
|
|
|
|
shell:
|
|
|
|
bash
|
2022-11-03 14:33:45 +00:00
|
|
|
- name: Run changed-files with include_all_old_new_renamed_files
|
2022-11-03 14:41:37 +00:00
|
|
|
id: changed-files-all-old-new-renamed-files
|
2022-11-03 14:33:45 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
include_all_old_new_renamed_files: true
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
2022-11-03 14:41:37 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-all-old-new-renamed-files.outputs) }}'
|
2022-11-03 14:33:45 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2021-03-25 23:23:19 +00:00
|
|
|
- name: List all modified files
|
2021-03-20 12:09:58 +00:00
|
|
|
run: |
|
2021-10-12 13:47:12 +00:00
|
|
|
for file in ${{ steps.changed-files.outputs.modified_files }}; do
|
2021-03-20 12:09:58 +00:00
|
|
|
echo $file
|
|
|
|
done
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2021-04-02 12:27:48 +00:00
|
|
|
- name: Run step when README.md changes
|
2021-04-02 13:00:06 +00:00
|
|
|
if: contains(steps.changed-files.outputs.modified_files, 'README.md')
|
2021-04-02 12:27:48 +00:00
|
|
|
run: |
|
2021-04-02 13:12:33 +00:00
|
|
|
echo "Your README.md has been modified ${{ steps.changed-files.outputs.modified_files }}."
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-09-29 18:11:21 +00:00
|
|
|
- name: Run changed-files with quotepath disabled for single path
|
|
|
|
id: changed-files-quotepath-specific
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: test/test-è.txt
|
|
|
|
quotepath: "false"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-quotepath-specific.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-04-28 06:08:15 +00:00
|
|
|
- name: Run changed-files with quotepath disabled
|
|
|
|
id: changed-files-quotepath
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
quotepath: "false"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-quotepath.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-11-24 00:32:14 +00:00
|
|
|
- name: Run changed-files with dir_names and dir_names_max_depth
|
|
|
|
id: changed-files-dir-names-max-depth
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: ba788ed
|
|
|
|
sha: 0a5b7c6
|
|
|
|
fetch_depth: 60000
|
|
|
|
dir_names: "true"
|
|
|
|
dir_names_max_depth: 3
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-dir-names-max-depth.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Check dir_names output
|
|
|
|
if: "!contains(steps.changed-files-dir-names-max-depth.outputs.all_changed_files, 'test/test2/test3')"
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected to include (test/test2/test3) got (${{ steps.changed-files-dir-names-max-depth.outputs.all_changed_files }})"
|
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2023-06-23 18:06:47 +00:00
|
|
|
- name: Run changed-files with dir_names and dir_names_exclude_current_dir
|
2023-02-01 00:38:55 +00:00
|
|
|
id: changed-files-dir-names-exclude-root
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: dddfbd69
|
|
|
|
sha: ce8c1983
|
|
|
|
fetch_depth: 60000
|
|
|
|
dir_names: "true"
|
2023-06-23 18:06:47 +00:00
|
|
|
dir_names_exclude_current_dir: "true"
|
2023-02-01 00:38:55 +00:00
|
|
|
dir_names_max_depth: "1"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-dir-names-exclude-root.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Check dir_names output
|
|
|
|
if: steps.changed-files-dir-names-exclude-root.outputs.all_changed_files != '.github'
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected (.github) got (${{ steps.changed-files-dir-names-exclude-root.outputs.all_changed_files }})"
|
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2022-06-12 14:08:13 +00:00
|
|
|
- name: Run changed-files with dir_names
|
2022-06-12 14:11:04 +00:00
|
|
|
id: changed-files-dir-names
|
2022-06-12 14:08:13 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2022-08-26 03:46:41 +00:00
|
|
|
base_sha: d1c0ee4
|
|
|
|
sha: 4d04215
|
2022-11-03 17:31:52 +00:00
|
|
|
fetch_depth: 60000
|
2022-06-12 14:08:13 +00:00
|
|
|
dir_names: "true"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
2022-06-12 14:11:04 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-dir-names.outputs) }}'
|
2022-06-12 14:08:13 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-08-26 03:46:41 +00:00
|
|
|
- name: Check dir_names output
|
2023-01-05 01:13:54 +00:00
|
|
|
if: steps.changed-files-dir-names.outputs.all_changed_files != 'test'
|
2022-08-26 03:46:41 +00:00
|
|
|
run: |
|
2023-01-05 01:13:54 +00:00
|
|
|
echo "Invalid output: Expected (test) got (${{ steps.changed-files-dir-names.outputs.all_changed_files }})"
|
2022-08-26 03:46:41 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2022-11-04 17:40:18 +00:00
|
|
|
- name: Run changed-files with dir_names specific
|
2022-11-04 17:08:33 +00:00
|
|
|
id: changed-files-dir-names-specific
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: d1c0ee4
|
|
|
|
sha: 4d04215
|
|
|
|
fetch_depth: 60000
|
|
|
|
dir_names: "true"
|
|
|
|
files: test/**
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-dir-names-specific.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Check dir_names output
|
2023-01-05 01:13:54 +00:00
|
|
|
if: steps.changed-files-dir-names.outputs.all_changed_files != 'test'
|
2022-11-04 17:08:33 +00:00
|
|
|
run: |
|
2023-01-05 01:13:54 +00:00
|
|
|
echo "Invalid output: Expected (test) got (${{ steps.changed-files-dir-names-specific.outputs.all_changed_files }})"
|
2022-11-04 17:08:33 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-04 13:08:20 +00:00
|
|
|
- name: Run changed-files with forward slash separator
|
|
|
|
id: changed-files-forward-slash
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
separator: "/"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-forward-slash.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-03-08 11:59:26 +00:00
|
|
|
- name: Run changed-files with newline separator
|
|
|
|
id: changed-files-newline
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
separator: "\n"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-newline.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-04 13:08:20 +00:00
|
|
|
- name: Run changed-files with pipe separator
|
|
|
|
id: changed-files-pipe
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
separator: "|"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-pipe.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-08-03 20:01:40 +00:00
|
|
|
- name: Run changed-files with json output
|
|
|
|
id: changed-files-json
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
json: true
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-json.outputs) }}'
|
|
|
|
echo '${{ toJSON(steps.changed-files-json.outputs.all_changed_files) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2023-05-26 03:14:24 +00:00
|
|
|
- name: Run changed-files with json unescaped format
|
|
|
|
id: changed-files-json-unescaped
|
2022-12-30 05:27:08 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
json: true
|
2023-05-26 03:14:24 +00:00
|
|
|
escape_json: false
|
2022-12-30 05:27:08 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2023-05-26 03:14:24 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-json-unescaped.outputs) }}'
|
|
|
|
echo '${{ toJSON(steps.changed-files-json-unescaped.outputs.all_changed_files) }}'
|
2022-12-30 05:27:08 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2021-03-05 12:28:53 +00:00
|
|
|
- name: Run changed-files with comma separator
|
|
|
|
id: changed-files-comma
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
separator: ","
|
2022-09-05 04:28:32 +00:00
|
|
|
- name: List all modified files
|
|
|
|
run: |
|
2022-09-05 05:34:23 +00:00
|
|
|
IFS=$',' read -a MODIFIED_FILES_ARRAY <<< "${{ steps.changed-files-comma.outputs.modified_files }}"
|
|
|
|
for file in "${MODIFIED_FILES_ARRAY[@]}"; do
|
2022-09-05 04:28:32 +00:00
|
|
|
echo $file
|
|
|
|
done
|
|
|
|
unset IFS
|
|
|
|
shell:
|
|
|
|
bash
|
2021-03-05 12:28:53 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-comma.outputs) }}'
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-03-08 11:59:26 +00:00
|
|
|
- name: Run changed-files with specific files from a source file using a newline separator
|
|
|
|
id: changed-files-specific-newline-source-file
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files_from_source_file: |
|
|
|
|
test/changed-files-list.txt
|
|
|
|
separator: "\n"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-specific-newline-source-file.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-05-14 21:05:44 +00:00
|
|
|
- name: Run changed-files for old new filenames test rename 1
|
2022-05-14 21:54:38 +00:00
|
|
|
id: changed-files-all-old-new-renamed-files-1
|
2022-05-14 21:05:44 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: d1c0ee4
|
|
|
|
sha: 4d04215
|
2022-11-03 17:31:52 +00:00
|
|
|
fetch_depth: 60000
|
2022-05-25 21:47:58 +00:00
|
|
|
include_all_old_new_renamed_files: true
|
2022-08-21 02:41:36 +00:00
|
|
|
- name: Show output
|
2022-05-14 21:05:44 +00:00
|
|
|
run: |
|
2022-05-14 21:54:38 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-all-old-new-renamed-files-1.outputs) }}'
|
2022-05-14 21:05:44 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-05-14 21:54:38 +00:00
|
|
|
- name: Check all_old_new_renamed_files output
|
2022-08-19 06:04:56 +00:00
|
|
|
if: "!contains(steps.changed-files-all-old-new-renamed-files-1.outputs.all_old_new_renamed_files, 'test/test rename 1.txt,test/test rename-1.txt')"
|
2022-05-14 21:05:44 +00:00
|
|
|
run: |
|
2022-05-14 21:56:47 +00:00
|
|
|
echo "Invalid output: Expected to include (test/test rename 1.txt,test/test rename-1.txt) got (${{ steps.changed-files-all-old-new-renamed-files-1.outputs.all_old_new_renamed_files }})"
|
2022-05-14 21:05:44 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2023-06-19 21:34:12 +00:00
|
|
|
- name: Check the renamed_files output
|
|
|
|
if: "!contains(steps.changed-files-all-old-new-renamed-files-1.outputs.renamed_files, 'test/test rename-1.txt')"
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected to include (test/test rename-1.txt) got (${{ steps.changed-files-all-old-new-renamed-files-1.outputs.renamed_files }})"
|
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2022-05-14 21:05:44 +00:00
|
|
|
- name: Run changed-files for old new filenames test rename 2
|
2022-05-14 21:54:38 +00:00
|
|
|
id: changed-files-all-old-new-renamed-files-2
|
2022-05-14 21:05:44 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: 4d04215
|
|
|
|
sha: fe238e6
|
2022-11-03 17:31:52 +00:00
|
|
|
fetch_depth: 60000
|
2022-05-25 21:47:58 +00:00
|
|
|
include_all_old_new_renamed_files: true
|
2022-05-14 21:05:44 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2022-05-14 21:54:38 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-all-old-new-renamed-files-2.outputs) }}'
|
2022-05-14 21:05:44 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-05-14 21:54:38 +00:00
|
|
|
- name: Check all_old_new_renamed_files output
|
2022-08-19 06:04:56 +00:00
|
|
|
if: "!contains(steps.changed-files-all-old-new-renamed-files-2.outputs.all_old_new_renamed_files, 'test/test rename 2.txt,test/test rename-2.txt')"
|
2022-05-14 21:05:44 +00:00
|
|
|
run: |
|
2022-05-14 21:56:47 +00:00
|
|
|
echo "Invalid output: Expected to include (test/test rename 2.txt test/test rename-2.txt) got (${{ steps.changed-files-all-old-new-renamed-files-2.outputs.all_old_new_renamed_files }})"
|
2023-06-14 19:59:31 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2023-06-19 21:34:12 +00:00
|
|
|
- name: Check the renamed_files output
|
|
|
|
if: "!contains(steps.changed-files-all-old-new-renamed-files-2.outputs.renamed_files, 'test/test rename-2.txt')"
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected to include (test/test rename-2.txt) got (${{ steps.changed-files-all-old-new-renamed-files-2.outputs.renamed_files }})"
|
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2023-06-14 19:59:31 +00:00
|
|
|
- name: Run changed-files for old new filenames test rename 2 output as deleted and added
|
|
|
|
id: changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: 4d04215
|
|
|
|
sha: fe238e6
|
|
|
|
fetch_depth: 60000
|
|
|
|
include_all_old_new_renamed_files: true
|
|
|
|
output_renamed_files_as_deleted_and_added: true
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Check all_old_new_renamed_files output
|
|
|
|
if: "!contains(steps.changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added.outputs.all_old_new_renamed_files, 'test/test rename 2.txt,test/test rename-2.txt')"
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected to include (test/test rename 2.txt test/test rename-2.txt) got (${{ steps.changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added.outputs.all_old_new_renamed_files }})"
|
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Check deleted_files output
|
|
|
|
if: "!contains(steps.changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added.outputs.deleted_files, 'test/test rename 2.txt')"
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected to include (test/test rename 2.txt) got (${{ steps.changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added.outputs.deleted_files }})"
|
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Check added_files output
|
|
|
|
if: "!contains(steps.changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added.outputs.added_files, 'test/test rename-2.txt')"
|
|
|
|
run: |
|
|
|
|
echo "Invalid output: Expected to include (test/test rename-2.txt) got (${{ steps.changed-files-all-old-new-renamed-files-2-output-as-deleted-and-added.outputs.added_files }})"
|
2022-05-14 21:05:44 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-05-01 11:55:01 +00:00
|
|
|
- name: Run changed-files with specific files
|
|
|
|
id: changed-files-specific
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
.github/workflows/test.yml
|
2021-05-01 23:58:35 +00:00
|
|
|
action.yml
|
2022-01-26 03:41:38 +00:00
|
|
|
**/test.txt
|
2022-02-15 03:33:45 +00:00
|
|
|
files_ignore: |
|
|
|
|
test/test/test.txt
|
2021-09-04 13:08:20 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-specific.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-01-25 01:50:47 +00:00
|
|
|
- name: Check if a excluded file is not included in any_changed
|
2022-01-26 03:41:38 +00:00
|
|
|
if: "contains(steps.changed-files-specific.outputs.all_changed_files, 'test/test/test.txt')"
|
2022-01-25 01:50:47 +00:00
|
|
|
run: |
|
2022-01-26 03:41:38 +00:00
|
|
|
echo "Invalid output: Expected not to include (test/test/test.txt) got (${{ steps.changed-files-specific.outputs.all_changed_files }})"
|
2022-01-25 01:50:47 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify any_changed for specific files
|
2022-01-26 03:41:38 +00:00
|
|
|
if: "!contains(steps.changed-files-specific.outputs.all_changed_files, 'action.yml') && !contains(steps.changed-files-specific.outputs.all_changed_files, '.github/workflows/test.yml') && !contains(steps.changed-files-specific.outputs.all_changed_files, 'test/test.txt')"
|
2021-05-16 20:26:22 +00:00
|
|
|
run: |
|
2021-05-17 08:19:10 +00:00
|
|
|
if [[ "${{ steps.changed-files-specific.outputs.any_changed }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific.outputs.any_changed }})"
|
2021-05-16 20:26:22 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2022-01-25 01:50:47 +00:00
|
|
|
- name: Check if a excluded file is not included in any_modified
|
2022-01-26 03:41:38 +00:00
|
|
|
if: "contains(steps.changed-files-specific.outputs.all_modified_files, 'test/test/test.txt')"
|
2022-01-25 01:50:47 +00:00
|
|
|
run: |
|
2022-01-26 03:41:38 +00:00
|
|
|
echo "Invalid output: Expected not to include (test/test/test.txt) got (${{ steps.changed-files-specific.outputs.all_modified_files }})"
|
2022-01-25 01:50:47 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-12-14 07:01:31 +00:00
|
|
|
- name: Verify any_modified for specific files
|
2022-01-26 03:41:38 +00:00
|
|
|
if: "!contains(steps.changed-files-specific.outputs.all_modified_files, 'action.yml') && !contains(steps.changed-files-specific.outputs.all_modified_files, '.github/workflows/test.yml') && !contains(steps.changed-files-specific.outputs.all_modified_files, 'test/test.txt')"
|
2021-12-14 07:01:31 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific.outputs.any_modified }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific.outputs.any_modified }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2022-01-25 01:50:47 +00:00
|
|
|
- name: Check if a excluded file is not included in any_deleted
|
2022-01-26 03:41:38 +00:00
|
|
|
if: "contains(steps.changed-files-specific.outputs.deleted_files, 'test/test/test.txt')"
|
2022-01-25 01:50:47 +00:00
|
|
|
run: |
|
2022-01-26 03:41:38 +00:00
|
|
|
echo "Invalid output: Expected not to include (test/test/test.txt) got (${{ steps.changed-files-specific.outputs.deleted_files }})"
|
2022-01-25 01:50:47 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify any_deleted for specific files
|
2022-01-26 03:41:38 +00:00
|
|
|
if: "!contains(steps.changed-files-specific.outputs.deleted_files, 'action.yml') && !contains(steps.changed-files-specific.outputs.deleted_files, '.github/workflows/test.yml') && !contains(steps.changed-files-specific.outputs.deleted_files, 'test/test.txt')"
|
2021-09-05 12:22:47 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific.outputs.any_deleted }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific.outputs.any_deleted }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-08-06 10:14:50 +00:00
|
|
|
- name: Run changed-files with specific files comma check duplicates
|
|
|
|
id: changed-files-specific-duplicate-output
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: |
|
2022-09-25 00:30:52 +00:00
|
|
|
get-changed-paths.sh
|
2021-08-06 10:14:50 +00:00
|
|
|
*.sh
|
2021-12-14 07:01:31 +00:00
|
|
|
- name: Verify all_changed_files files has no duplicates
|
2022-09-25 00:30:52 +00:00
|
|
|
if: contains(steps.changed-files-specific-duplicate-output.outputs.all_changed_files, 'get-changed-paths.sh')
|
2021-08-06 10:14:50 +00:00
|
|
|
run: |
|
2021-12-14 07:01:31 +00:00
|
|
|
ALL_CHANGED_FILES=(${{ steps.changed-files-specific-duplicate-output.outputs.all_changed_files }})
|
|
|
|
UNIQUE_ALL_CHANGED_FILES=$(echo "$ALL_CHANGED_FILES" | tr ' ' '\n' | sort -u | xargs)
|
|
|
|
|
|
|
|
if [[ "$ALL_CHANGED_FILES[@]" != "$UNIQUE_ALL_CHANGED_FILES[@]" ]]; then
|
|
|
|
echo "Duplicate output: Expected "$UNIQUE_ALL_CHANGED_FILES" got $ALL_CHANGED_FILES"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Verify all_changed_and_modified_files files has no duplicates
|
2022-09-25 00:30:52 +00:00
|
|
|
if: contains(steps.changed-files-specific-duplicate-output.outputs.all_changed_and_modified_files, 'get-changed-paths.sh')
|
2021-12-14 07:01:31 +00:00
|
|
|
run: |
|
|
|
|
ALL_CHANGED_AND_MODIFIED_FILES=(${{ steps.changed-files-specific-duplicate-output.outputs.all_changed_and_modified_files }})
|
2021-09-04 13:42:11 +00:00
|
|
|
UNIQUE_ALL_CHANGED_AND_MODIFIED_FILES=$(echo "$ALL_CHANGED_AND_MODIFIED_FILES" | tr ' ' '\n' | sort -u | xargs)
|
2021-08-06 10:14:50 +00:00
|
|
|
|
2021-09-04 13:42:11 +00:00
|
|
|
if [[ "$ALL_CHANGED_AND_MODIFIED_FILES[@]" != "$UNIQUE_ALL_CHANGED_AND_MODIFIED_FILES[@]" ]]; then
|
|
|
|
echo "Duplicate output: Expected "$UNIQUE_ALL_CHANGED_AND_MODIFIED_FILES" got $ALL_CHANGED_AND_MODIFIED_FILES"
|
2021-08-06 10:14:50 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-12-14 07:01:31 +00:00
|
|
|
- name: Verify all_modified_files files has no duplicates
|
2022-09-25 00:30:52 +00:00
|
|
|
if: contains(steps.changed-files-specific-duplicate-output.outputs.all_modified_files, 'get-changed-paths.sh')
|
2021-12-14 07:01:31 +00:00
|
|
|
run: |
|
|
|
|
ALL_MODIFIED_FILES=(${{ steps.changed-files-specific-duplicate-output.outputs.all_modified_files }})
|
|
|
|
UNIQUE_ALL_MODIFIED_FILES=$(echo "$ALL_MODIFIED_FILES" | tr ' ' '\n' | sort -u | xargs)
|
|
|
|
|
|
|
|
if [[ "$ALL_MODIFIED_FILES[@]" != "$UNIQUE_ALL_MODIFIED_FILES[@]" ]]; then
|
|
|
|
echo "Duplicate output: Expected "$UNIQUE_ALL_MODIFIED_FILES" got $ALL_MODIFIED_FILES"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-05-01 12:59:18 +00:00
|
|
|
- name: Run changed-files with specific files comma separator
|
|
|
|
id: changed-files-specific-comma
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
.github/workflows/test.yml
|
2021-05-01 23:58:35 +00:00
|
|
|
action.yml
|
2021-05-01 12:59:18 +00:00
|
|
|
separator: ","
|
2021-09-04 13:08:20 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-specific-comma.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2021-07-17 14:51:08 +00:00
|
|
|
- name: Verify any_changed files comma separator
|
2021-12-14 05:21:49 +00:00
|
|
|
if: "!contains(steps.changed-files-specific-comma.outputs.all_changed_files, 'action.yml') && !contains(steps.changed-files-specific-comma.outputs.all_changed_files, '.github/workflows/test.yml')"
|
2021-09-04 13:08:20 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-comma.outputs.any_changed }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-comma.outputs.any_changed }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-12-14 07:01:31 +00:00
|
|
|
- name: Verify any_modified files comma separator
|
|
|
|
if: "!contains(steps.changed-files-specific-comma.outputs.all_modified_files, 'action.yml') && !contains(steps.changed-files-specific-comma.outputs.all_modified_files, '.github/workflows/test.yml')"
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-comma.outputs.any_modified }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-comma.outputs.any_modified }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify any_deleted files comma separator
|
|
|
|
if: "!contains(steps.changed-files-specific-comma.outputs.deleted_files, 'action.yml') && !contains(steps.changed-files-specific-comma.outputs.deleted_files, '.github/workflows/test.yml')"
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-comma.outputs.any_deleted }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-comma.outputs.any_deleted }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-04 13:08:20 +00:00
|
|
|
- name: Run changed-files with specific files pipe separator
|
|
|
|
id: changed-files-specific-pipe
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: |
|
2022-01-05 02:38:03 +00:00
|
|
|
**/test.yml
|
2021-09-04 13:08:20 +00:00
|
|
|
action.yml
|
|
|
|
separator: "|"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-specific-pipe.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Verify any_changed files comma separator
|
2021-12-14 05:21:49 +00:00
|
|
|
if: "!contains(steps.changed-files-specific-pipe.outputs.all_changed_files, 'action.yml') && !contains(steps.changed-files-specific-pipe.outputs.all_changed_files, '.github/workflows/test.yml')"
|
2021-09-04 13:08:20 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-pipe.outputs.any_changed }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-pipe.outputs.any_changed }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-12-14 07:01:31 +00:00
|
|
|
- name: Verify any_modified files comma separator
|
|
|
|
if: "!contains(steps.changed-files-specific-pipe.outputs.all_modified_files, 'action.yml') && !contains(steps.changed-files-specific-pipe.outputs.all_modified_files, '.github/workflows/test.yml')"
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-pipe.outputs.any_modified }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-pipe.outputs.any_modified }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify any_deleted files comma separator
|
|
|
|
if: "!contains(steps.changed-files-specific-pipe.outputs.deleted_files, 'action.yml') && !contains(steps.changed-files-specific-pipe.outputs.deleted_files, '.github/workflows/test.yml')"
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-pipe.outputs.any_deleted }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-pipe.outputs.any_deleted }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-04 13:08:20 +00:00
|
|
|
- name: Run changed-files with specific files forward slash separator
|
|
|
|
id: changed-files-specific-forward-slash
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
.github/workflows/test.yml
|
|
|
|
action.yml
|
|
|
|
separator: "/"
|
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-specific-forward-slash.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2022-02-17 07:35:49 +00:00
|
|
|
- name: Verify any_changed files forward slash separator
|
2021-12-14 05:21:49 +00:00
|
|
|
if: "!contains(steps.changed-files-specific-forward-slash.outputs.all_changed_files, 'action.yml') && !contains(steps.changed-files-specific-forward-slash.outputs.all_changed_files, '.github/workflows/test.yml')"
|
2021-07-17 14:51:08 +00:00
|
|
|
run: |
|
2022-02-17 07:35:49 +00:00
|
|
|
if [[ "${{ steps.changed-files-specific-forward-slash.outputs.any_changed }}" != "false" ]]; then
|
2021-09-04 13:08:20 +00:00
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-forward-slash.outputs.any_changed }})"
|
2021-07-17 14:51:08 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2022-02-17 07:35:49 +00:00
|
|
|
- name: Verify any_modified files forward slash separator
|
2021-12-14 07:01:31 +00:00
|
|
|
if: "!contains(steps.changed-files-specific-forward-slash.outputs.all_modified_files, 'action.yml') && !contains(steps.changed-files-specific-forward-slash.outputs.all_modified_files, '.github/workflows/test.yml')"
|
|
|
|
run: |
|
2022-02-17 07:35:49 +00:00
|
|
|
if [[ "${{ steps.changed-files-specific-forward-slash.outputs.any_modified }}" != "false" ]]; then
|
2021-12-14 07:01:31 +00:00
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-forward-slash.outputs.any_modified }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2022-02-17 07:35:49 +00:00
|
|
|
- name: Verify any_deleted files forward slash separator
|
2021-09-05 12:22:47 +00:00
|
|
|
if: "!contains(steps.changed-files-specific-forward-slash.outputs.deleted_files, 'action.yml') && !contains(steps.changed-files-specific-forward-slash.outputs.deleted_files, '.github/workflows/test.yml')"
|
|
|
|
run: |
|
2022-02-17 07:35:49 +00:00
|
|
|
if [[ "${{ steps.changed-files-specific-forward-slash.outputs.any_deleted }}" != "false" ]]; then
|
2021-09-05 12:22:47 +00:00
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-forward-slash.outputs.any_deleted }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-07-17 14:51:08 +00:00
|
|
|
- name: Run changed-files with specific files from a source file
|
|
|
|
id: changed-files-specific-source-file
|
|
|
|
uses: ./
|
|
|
|
with:
|
2021-07-17 15:46:59 +00:00
|
|
|
files_from_source_file: |
|
2021-07-17 14:51:08 +00:00
|
|
|
test/changed-files-list.txt
|
|
|
|
test/changed-files-list.txt
|
|
|
|
files: |
|
2022-03-29 18:18:12 +00:00
|
|
|
**/workflows/greetings.yml
|
2022-01-25 01:50:47 +00:00
|
|
|
- name: Check if a excluded file is not included in any_changed
|
2022-01-26 03:41:38 +00:00
|
|
|
if: contains(steps.changed-files-specific-source-file.outputs.all_changed_files, 'test/test/test.txt')
|
2022-01-25 01:50:47 +00:00
|
|
|
run: |
|
2022-01-26 03:41:38 +00:00
|
|
|
echo "Invalid output: Expected not to include (test/test/test.txt) got (${{ steps.changed-files-specific-source-file.outputs.all_changed_files }})"
|
2022-01-25 01:50:47 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify any_changed from source files
|
2021-10-15 17:36:09 +00:00
|
|
|
if: |
|
|
|
|
(
|
2021-12-14 05:21:49 +00:00
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_changed_files, 'action.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_changed_files, '.github/workflows/test.yml') &&
|
2023-01-18 23:35:50 +00:00
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_changed_files, 'test/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_changed_files, 'test/test2/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_changed_files, 'test/test2/test3/test4/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_changed_files, '[test new].txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_changed_files, '.github/workflows/greetings.yml')
|
2021-10-15 17:36:09 +00:00
|
|
|
)
|
2021-07-17 14:51:08 +00:00
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
if [[ "${{ steps.changed-files-specific-source-file.outputs.any_changed }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-source-file.outputs.any_changed }})"
|
2021-07-17 14:51:08 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2022-01-25 01:50:47 +00:00
|
|
|
- name: Check if a excluded file is not included in any_modified
|
2022-01-26 03:41:38 +00:00
|
|
|
if: contains(steps.changed-files-specific-source-file.outputs.all_modified_files, 'test/test/test.txt')
|
2022-01-25 01:50:47 +00:00
|
|
|
run: |
|
2022-01-26 03:41:38 +00:00
|
|
|
echo "Invalid output: Expected not to include (test/test/test.txt) got (${{ steps.changed-files-specific-source-file.outputs.all_modified_files }})"
|
2022-01-25 01:50:47 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-12-14 07:01:31 +00:00
|
|
|
- name: Verify any_modified from source files
|
|
|
|
if: |
|
|
|
|
(
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_modified_files, 'action.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_modified_files, '.github/workflows/test.yml') &&
|
2023-01-18 23:35:50 +00:00
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_modified_files, 'test/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_modified_files, 'test/test2/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_modified_files, 'test/test2/test3/test4/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_modified_files, '[test new].txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.all_modified_files, '.github/workflows/greetings.yml')
|
2021-12-14 07:01:31 +00:00
|
|
|
)
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-source-file.outputs.any_modified }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-source-file.outputs.any_modified }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2022-01-25 01:50:47 +00:00
|
|
|
- name: Check if a excluded file is not included in any_deleted
|
2022-01-26 03:41:38 +00:00
|
|
|
if: contains(steps.changed-files-specific-source-file.outputs.deleted_files, 'test/test/test.txt')
|
2022-01-25 01:50:47 +00:00
|
|
|
run: |
|
2022-01-26 03:41:38 +00:00
|
|
|
echo "Invalid output: Expected not to include (test/test/test.txt) got (${{ steps.changed-files-specific-source-file.outputs.deleted_files }})"
|
2022-01-25 01:50:47 +00:00
|
|
|
exit 1
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify any_deleted from source files
|
2023-01-18 23:35:50 +00:00
|
|
|
if: |
|
|
|
|
(
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.deleted_files, 'action.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.deleted_files, '.github/workflows/test.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.deleted_files, 'test/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.deleted_files, 'test/test2/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.deleted_files, 'test/test2/test3/test4/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.deleted_files, '[test new].txt') &&
|
|
|
|
!contains(steps.changed-files-specific-source-file.outputs.deleted_files, '.github/workflows/greetings.yml')
|
|
|
|
)
|
2021-09-05 12:22:47 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-source-file.outputs.any_deleted }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-source-file.outputs.any_deleted }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-07-17 14:51:08 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-specific-source-file.outputs) }}'
|
2021-07-17 14:51:08 +00:00
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Run changed-files with specific files from a source file using a comma separator
|
|
|
|
id: changed-files-specific-comma-source-file
|
|
|
|
uses: ./
|
|
|
|
with:
|
2021-07-17 15:46:59 +00:00
|
|
|
files_from_source_file: |
|
2021-07-17 14:51:08 +00:00
|
|
|
test/changed-files-list.txt
|
|
|
|
separator: ","
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-specific-comma-source-file.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2021-05-17 08:02:50 +00:00
|
|
|
- name: Verify any_changed files comma separator
|
2023-01-18 23:35:50 +00:00
|
|
|
if: |
|
|
|
|
(
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_changed_files, 'action.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_changed_files, '.github/workflows/test.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_changed_files, 'test/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_changed_files, 'test/test2/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_changed_files, 'test/test2/test3/test4/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_changed_files, '[test new].txt')
|
|
|
|
)
|
2021-05-17 08:02:50 +00:00
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
if [[ "${{ steps.changed-files-specific-comma-source-file.outputs.any_changed }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-comma-source-file.outputs.any_changed }})"
|
2021-05-17 08:02:50 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2021-12-14 07:01:31 +00:00
|
|
|
- name: Verify any_modified files comma separator
|
2023-01-18 23:35:50 +00:00
|
|
|
if: |
|
|
|
|
(
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_modified_files, 'action.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_modified_files, '.github/workflows/test.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_modified_files, 'test/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_modified_files, 'test/test2/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_modified_files, 'test/test2/test3/test4/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.all_modified_files, '[test new].txt')
|
|
|
|
)
|
2021-12-14 07:01:31 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-comma-source-file.outputs.any_modified }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-comma-source-file.outputs.any_modified }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify any_deleted files with comma separator
|
2023-01-18 23:35:50 +00:00
|
|
|
if: |
|
|
|
|
(
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.deleted_files, 'action.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.deleted_files, '.github/workflows/test.yml') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.deleted_files, 'test/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.deleted_files, 'test/test2/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.deleted_files, 'test/test2/test3/test4/test.txt') &&
|
|
|
|
!contains(steps.changed-files-specific-comma-source-file.outputs.deleted_files, '[test new].txt')
|
|
|
|
)
|
2021-05-01 12:59:18 +00:00
|
|
|
run: |
|
2021-09-05 12:22:47 +00:00
|
|
|
if [[ "${{ steps.changed-files-specific-comma-source-file.outputs.any_deleted }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-comma-source-file.outputs.any_deleted }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-06-18 14:19:28 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2021-12-04 12:00:44 +00:00
|
|
|
- name: Get branch name
|
|
|
|
id: branch-name
|
2023-05-15 21:42:10 +00:00
|
|
|
uses: tj-actions/branch-names@v7
|
2022-12-19 05:12:33 +00:00
|
|
|
if: github.event_name == 'pull_request' && matrix.fetch-depth == 0
|
2022-11-23 22:02:10 +00:00
|
|
|
- uses: nrwl/nx-set-shas@v3
|
2021-12-04 12:00:44 +00:00
|
|
|
id: last_successful_commit
|
2022-12-19 05:12:33 +00:00
|
|
|
if: github.event_name == 'pull_request' && github.event.action != 'closed' && matrix.fetch-depth == 0
|
2021-12-04 12:00:44 +00:00
|
|
|
with:
|
2022-11-23 22:02:10 +00:00
|
|
|
main-branch-name: ${{ steps.branch-name.outputs.base_ref_branch }}
|
|
|
|
workflow-id: 'test.yml'
|
2021-07-17 15:46:59 +00:00
|
|
|
- name: Run changed-files with a custom base sha
|
2023-06-08 12:56:26 +00:00
|
|
|
if: github.event_name != 'push' && github.event.action != 'closed' && matrix.fetch-depth == 0 && steps.last_successful_commit.outputs.base != steps.last_successful_commit.outputs.head
|
2021-07-17 15:46:59 +00:00
|
|
|
id: changed-files-custom-base-sha
|
|
|
|
uses: ./
|
|
|
|
with:
|
2022-11-23 22:02:10 +00:00
|
|
|
base_sha: ${{ steps.last_successful_commit.outputs.base }}
|
2021-07-17 15:46:59 +00:00
|
|
|
- name: Show output
|
2022-12-19 05:12:33 +00:00
|
|
|
if: github.event_name == 'pull_request' && github.event.action != 'closed' && matrix.fetch-depth == 0
|
2021-07-17 15:46:59 +00:00
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-custom-base-sha.outputs) }}'
|
2021-07-17 15:46:59 +00:00
|
|
|
shell:
|
|
|
|
bash
|
2023-01-11 20:58:50 +00:00
|
|
|
- name: Run changed-files with custom sha
|
|
|
|
id: changed-files-custom-sha
|
|
|
|
if: github.event_name == 'pull_request' && github.event.action != 'closed'
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
sha: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Show output
|
|
|
|
if: github.event.action != 'closed'
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-custom-sha.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
|
|
|
- name: Run changed-files with the pull request base sha and head sha
|
|
|
|
id: changed-files-pull-request-base-sha-head-sha
|
|
|
|
if: github.event_name == 'pull_request' && github.event.action != 'closed'
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
base_sha: ${{ github.event.pull_request.base.sha }}
|
|
|
|
sha: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Show output
|
|
|
|
if: github.event.action != 'closed'
|
|
|
|
run: |
|
|
|
|
echo '${{ toJSON(steps.changed-files-pull-request-base-sha-head-sha.outputs) }}'
|
|
|
|
shell:
|
|
|
|
bash
|
2021-07-17 19:13:26 +00:00
|
|
|
- name: Run changed-files with specific files (only-changed)
|
|
|
|
id: changed-files-specific-only-changed
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
files: |
|
2022-01-05 02:38:03 +00:00
|
|
|
.github/**/test.yml
|
2021-07-17 19:13:26 +00:00
|
|
|
- name: Verify only_changed files
|
|
|
|
if: steps.changed-files-specific-only-changed.outputs.other_changed_files != ''
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-only-changed.outputs.only_changed }}" != "false" ]]; then
|
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-only-changed.outputs.only_changed }})"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-09-05 12:22:47 +00:00
|
|
|
- name: Verify only_deleted files
|
|
|
|
if: steps.changed-files-specific-only-changed.outputs.other_deleted_files != ''
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.changed-files-specific-only-changed.outputs.only_deleted }}" != "false" ]]; then
|
2022-02-02 03:30:40 +00:00
|
|
|
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-only-changed.outputs.only_deleted }})."
|
2021-09-05 12:22:47 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shell:
|
|
|
|
bash
|
2021-07-17 19:13:26 +00:00
|
|
|
- name: Show output
|
|
|
|
run: |
|
2021-09-04 13:08:20 +00:00
|
|
|
echo '${{ toJSON(steps.changed-files-specific-only-changed.outputs) }}'
|
2021-07-17 19:13:26 +00:00
|
|
|
shell:
|
|
|
|
bash
|