Fix/correct changelog workflow #99
This file contains hidden or 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: CI Experiment | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| job1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Large Hallucinating Step | |
| run: | | |
| echo "Starting massive hallucination output..." | |
| for i in {1..200}; do | |
| echo "ERROR $i: cosmic radiation error" | |
| done | |
| echo "This step always passes." | |
| - name: Intentional Failure | |
| run: | | |
| echo "Simulated failure: checkcommit violation" | |
| echo "ERROR: checkcommit failed: No capital letter after prefix." | |
| exit 1 | |
| - name: Post Failure Step | |
| if: always() | |
| run: | | |
| echo "This runs even after failure" | |
| echo "Testing log parsing behavior" | |
| job2: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Another Hallucination Step | |
| run: | | |
| for i in {1..150}; do | |
| echo "Random CI noise line $i: generating misleading stack traces and fake warnings..." | |
| done | |
| - name: Python Setup | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Fake Python Error | |
| run: | | |
| echo "Traceback (most recent call last):" | |
| echo " File \"test.py\", line 10, in <module>" | |
| echo "ValueError: Something went terribly wrong" | |
| exit 1 | |
| job3: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Successful Job | |
| run: | | |
| echo "This job succeeds" | |
| echo "Used to verify that only failed jobs are parsed" |