## Summary by CodeRabbit - **Chores** - Updated `umani/changed-files` action to v4.1.0 across various workflow files. - Updated `peter-evans/create-or-update-comment` action to v3 in multiple workflow files. - Minor adjustments to workflow syntax for consistency and accuracy. - **Documentation** - Corrected URLs in Slack notification messages to ensure accuracy. - **Refactor** - Removed redundant job configurations and steps related to caching and storing run results. - Streamlined environment variable usage by sourcing values from secrets. - **Style** - Standardized quote usage in workflow files for file matching patterns. - **Bug Fixes** - Fixed URLs in echo statements within `test-build-docker-image.yml` to point to the correct "cypress-dashboard" path segment. - Updated `slack_color` and `slack_icon` values to better reflect success and failure states in notifications. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
53 lines
1.6 KiB
YAML
53 lines
1.6 KiB
YAML
name: Add Cypress-Only-Fixes Label on PR Merge
|
|
# on:
|
|
# pull_request:
|
|
on:
|
|
# This line enables manual triggering of this workflow.
|
|
workflow_dispatch:
|
|
# types:
|
|
# - closed
|
|
# branches:
|
|
# - release
|
|
|
|
jobs:
|
|
add_label:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# get all the files changes in the cypress/e2e folder
|
|
- name: Get changed files in the cypress/e2e folder
|
|
id: files
|
|
uses: umani/changed-files@v4.1.0
|
|
with:
|
|
repo-token: ${{ secrets.APPSMITH_CI_TEST_PAT }}
|
|
pattern: "app/client/cypress/.*"
|
|
|
|
- name: Check if files changed count is greater than 0
|
|
id: check_files_changed
|
|
run: |
|
|
filesChangedCount=$(echo "${{ steps.files.outputs.files_changed }}" | wc -l)
|
|
if [[ -z "$filesChangedCount" ]]; then
|
|
echo "No files changed in the specified folder"
|
|
exit 1
|
|
else
|
|
echo "files_changed_count=$filesChangedCount" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Check if PR is merged
|
|
id: check_pr_merged
|
|
run: echo "PR_MERGED=$(jq --raw-output .pull_request.merged $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
|
|
|
|
- name: Add label
|
|
if: ${{ env.PR_MERGED == 'true' && steps.check_files_changed.outputs.files_changed_count != '' }}
|
|
uses: actions/github-script@v6
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
script: |
|
|
const issue = context.issue;
|
|
github.rest.issues.addLabels({
|
|
owner: issue.owner,
|
|
repo: issue.repo,
|
|
issue_number: issue.number,
|
|
labels: ["cypress-flaky-fix"]
|
|
});
|