File tree Expand file tree Collapse file tree 2 files changed +34
-5
lines changed Expand file tree Collapse file tree 2 files changed +34
-5
lines changed Original file line number Diff line number Diff line change 22name : Changelog Pipeline
33
44on :
5- push :
6- branches : ["develop"]
7- pull_request :
8- branches : ["develop"]
9-
105 workflow_dispatch :
6+ workflow_call :
117
128jobs :
139 update-changelog2 :
Original file line number Diff line number Diff line change 1+ name : Trigger Changelog Pipeline
2+
3+ on :
4+ push :
5+ branches : ["develop"]
6+ pull_request :
7+ branches : ["develop"]
8+
9+ workflow_dispatch :
10+
11+ jobs :
12+ trigger-changelog-pipeline :
13+ runs-on : ubuntu-latest
14+ permissions :
15+ contents : write
16+ steps :
17+ - name : Checkout
18+ uses : actions/checkout@v3
19+
20+ - name : Print head commit
21+ id : print_head_commit
22+ run : |
23+ echo "Head commit: ${{ github.sha }}"
24+
25+ actual-trigger-changelog-pipeline :
26+ runs-on : ubuntu-latest
27+ permissions :
28+ contents : write
29+ steps :
30+ - name : Trigger Changelog Pipeline
31+ id : trigger-changelog-pipeline
32+ uses : dfm88/fastapi-two-factor-authentication/.github/workflows/cl.yaml@develop
33+
You can’t perform that action at this time.
0 commit comments