chore/add-git-modules add git modules folder #17
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
# File: .github/workflows/call-github-update-submodule.yml | |
name: call-github-update-submodule | |
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: Read patterns from file | |
id: read_patterns | |
uses: opencepk/opencepk-module-ghactions-common/read-and-stringify-json-action@fix/update-gitmodules-action | |
with: | |
file: '.github/META-REPO-PATTERNS' | |
file_type: 'file' | |
separator: '\n' | |
output_format: ',' | |
- name: Log patterns | |
run: | | |
echo "Patterns: ${{ steps.read_patterns.outputs.properties }}" | |
- name: Trigger reusable workflow via API | |
uses: opencepk/opencepk-module-ghactions-common/trigger-workflow-action@fix/update-gitmodules-action | |
with: | |
token: ${{ steps.get_workflow_token.outputs.token }} | |
repo: 'opencepk/opencepk-projects-hub' | |
workflow_id: 'github-update-gitmodules.yml' | |
ref: 'main' | |
inputs: '{"repo":"${{ github.repository }}", "patterns":"${{ steps.read_patterns.outputs.properties }}"}' | |
# - 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 |