π Restructure automated integration and regression testing flow #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for π€π° | |
on: | |
pull_request_target: | |
jobs: | |
check-for-changes: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
steps: | |
- name: Initiate GitHub Check | |
uses: LouisBrunner/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: "π«π€π°" | |
status: in_progress | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
.github/workflows/match_target_repository.yaml | |
.github/workflows/π«π€π°.yaml | |
- name: Check for workflow changes | |
id: workflow-changes | |
env: | |
CHANGED_FILES: ${{ steps.changed-files.outputs.any_changed }} | |
run: | | |
if [ "${CHANGED_FILES}" = "true" ]; then | |
echo "conclusion=failure" >> "$GITHUB_OUTPUT" | |
else | |
echo "conclusion=success" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Finalize GitHub Check | |
uses: LouisBrunner/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: "π«π€π°" | |
status: completed | |
conclusion: ${{ steps.workflow-changes.outputs.conclusion }} |