Scheduled weekly run #50
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
| name: Scheduled weekly run | |
| on: | |
| workflow_dispatch: {} | |
| schedule: | |
| # This cron job runs at 1:16 AM every 7th day of the month, every month of the year. | |
| - cron: '16 1 */7 * *' | |
| jobs: | |
| matrix_75x_weekly: | |
| uses: oxid-eSales/github-actions/.github/workflows/universal_workflow_light.yaml@v5 | |
| with: | |
| testplan: '~/defaults/7.5.x.yaml,~/defaults/scheduled.yaml,~/examples-module.yaml,~/_custom.yaml' | |
| runs_on: '"ubuntu-latest"' | |
| defaults: 'v5' | |
| plan_folder: '.github/oxid-esales' | |
| custom_testplan_yaml: | | |
| finish: | |
| slack_title: 'Matrix-75x-Weekly-{{ .Github.EventName }}-{{ .Github.RefName }}' | |
| secrets: | |
| DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }} | |
| DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | |
| CACHE_ENDPOINT: ${{ secrets.CACHE_ENDPOINT }} | |
| CACHE_ACCESS_KEY: ${{ secrets.CACHE_ACCESS_KEY }} | |
| CACHE_SECRET_KEY: ${{ secrets.CACHE_SECRET_KEY }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |