forked from opencepk/opencepk-template-base
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05fb45f
commit a337024
Showing
2 changed files
with
36 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# File: .github/workflows/call-github-update-submodule.yml | ||
name: call-github-update-submodule | ||
Check warning on line 2 in .github/workflows/call-github-update-submodule.yml GitHub Actions / pre-commit
Check warning on line 2 in .github/workflows/call-github-update-submodule.yml GitHub Actions / pre-commit
Check warning on line 2 in .github/workflows/call-github-update-submodule.yml GitHub Actions / pre-commit
|
||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
call-github-update-submodule: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get Token | ||
id: get_workflow_token | ||
uses: peter-murray/workflow-application-token-action@v3 | ||
with: | ||
application_id: ${{ secrets.GH_APP_REPO_ACTION_RW_APPLICATION_ID }} | ||
application_private_key: ${{ secrets.GH_APP_REPO_ACTION_RW_PRIVATE_KEY }} | ||
revoke_token: true | ||
|
||
- name: Read patterns from file | ||
id: read_patterns | ||
run: | | ||
patterns=$(grep -v '^$' .github/META-REPO-PATTERNS | tr '\n' ',' | sed 's/,$//') | ||
echo "patterns=$patterns" >> $GITHUB_ENV | ||
- name: Trigger reusable workflow via API | ||
run: | | ||
curl -X POST \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
-H "Authorization: token ${{ steps.get_workflow_token.outputs.token }}" \ | ||
-d '{"ref":"main", "inputs":{"repo":"${{ github.repository }}", "patterns":"${{ env.patterns }}"}}' \ | ||
https://api.github.com/repos/opencepk/opencepk-projects-hub/actions/workflows/github-update-gitmodules.yml/dispatches |
This file was deleted.
Oops, something went wrong.