File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # yamllint disable rule:truthy
3+ name : Submodule and dependabot Update
4+
5+ on :
6+ release :
7+ types :
8+ - published
9+
10+ jobs :
11+ trigger-submodule :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Checkout code
15+ uses : actions/checkout@v4
16+
17+ - name : Trigger update
18+ env :
19+ RELEASE_TAG : " ${{ github.event.release.tag_name }}"
20+ run : |
21+ echo "${{ github.event.release.tag_name }}"
22+ curl -X POST \
23+ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
24+ -H "Accept: application/vnd.github.v3+json" \
25+ https://api.github.com/repos/opsmill/infrahub-demo-dc-fabric-develop/dispatches \
26+ -d "{\"event_type\":\"trigger-dependabot-update\", \"client_payload\": {\"version\": \"${{ github.event.release.tag_name }}\"}}"
Original file line number Diff line number Diff line change 1414 # See https://github.com/prettier/prettier/pull/10926 or https://github.com/redhat-developer/vscode-yaml/issues/433
1515 min-spaces-from-content : 1
1616 line-length :
17- max : 120
17+ max : 140
1818 allow-non-breakable-words : true
1919 allow-non-breakable-inline-mappings : false
You can’t perform that action at this time.
0 commit comments