✏️ fix typo in default_2022Q4.json
(#27)
#233
This file contains hidden or 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
--- | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
schedule: | |
- cron: '0 0 * * 1,2,3,4,5' | |
workflow_dispatch: | |
name: docker | |
jobs: | |
docker: | |
name: Docker actions | |
uses: RMI-PACTA/actions/.github/workflows/docker.yml@main | |
with: | |
build-platform: | | |
[ | |
"linux/amd64" | |
] | |
test: | |
name: Test | |
uses: ./.github/workflows/test.yml | |
needs: [docker] | |
secrets: inherit | |
strategy: | |
fail-fast: false | |
matrix: | |
config-name: | |
- default_2022Q4 | |
- default_2023Q4 | |
- full_params_2022Q4 | |
- full_params_2023Q4 | |
with: | |
full-image-name: ${{ needs.docker.outputs.full-image-name }} | |
config-name: ${{ matrix.config-name }} | |
add-comment: | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: RMI-PACTA/actions/.github/workflows/add-comment-table.yml@main | |
needs: [test] | |
with: | |
header: "Report Links" | |
artifact-prefix: report-comment-json |