gitea-action-test/.github/workflows/B.yml

24 lines
519 B
YAML
Raw Normal View History

2024-10-27 11:33:49 +00:00
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