Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
riprasad committed Jan 5, 2025
1 parent 0c75ff4 commit 7b08f8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/trigger-auto-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ jobs:
mapping: ${{ fromJSON(needs.setup.outputs.matrix) }}
steps:
- name: Print matrix config
run: echo ${{ fromJSON(needs.setup.outputs.matrix) }}
run: |
echo ${{ matrix.mapping.ignore_files }}
echo ${{ join(matrix.mapping.ignore_files, ',') }}
echo ${{ fromJSON(needs.setup.outputs.matrix) }} | jq -r '.[]'
- name: Checkout repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -116,7 +119,7 @@ jobs:
UPSTREAM_BRANCH: "${{ matrix.mapping.src.branch }}"
DOWNSTREAM_REPO: "${{ matrix.mapping.dest.url }}"
DOWNSTREAM_BRANCH: "${{ matrix.mapping.dest.branch }}"
IGNORE_FILES: "${{ matrix.mapping.ignore_files }}"
IGNORE_FILES: "${{ join(matrix.mapping.ignore_files, ',') }}"
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
MERGE_ARGS: "--no-edit"
PUSH_ARGS: ""
Expand Down
1 change: 1 addition & 0 deletions executions/Dashboard/040125170845344397/test-report.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@
test
test
test
test
test

0 comments on commit 7b08f8e

Please sign in to comment.