gitea-action-test/.github/workflows/B.yml
LIRUI 4ff121f32c
Some checks failed
Workflow A / job_a (push) Has been cancelled
Sequential Workflows / job_a (push) Successful in 3s
Sequential Workflows / job_b (push) Successful in 3s
Sequential Workflows / job_c (push) Successful in 2s
1027
2024-10-27 19:33:49 +08:00

24 lines
519 B
YAML

name: Workflow B
on:
push:
paths:
- marker_a
jobs:
job_b:
runs-on: ubuntu-latest
steps:
- name: Step 1 in Workflow B
run: echo "Running Workflow B"
- name: Create completion marker for Workflow B
run: echo "done" > marker_b
- name: Commit marker
run: |
git config user.name "Gitea CI"
git config user.email "ci@example.com"
git add marker_b
git commit -m "Add completion marker for B"
git push