feat: client option to use invasion rewards as marker #570
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: Main CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/lint.yml | |
| config: | |
| uses: ./.github/workflows/config.yml | |
| locales: | |
| uses: ./.github/workflows/locales.yml | |
| secrets: | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| release: | |
| needs: [config, locales, lint] | |
| if: needs.locales.outputs.made_commit != 'true' && needs.config.outputs.made_commit != 'true' && always() | |
| uses: ./.github/workflows/release.yml | |
| docker: | |
| needs: [config, locales, lint] | |
| if: needs.locales.outputs.made_commit != 'true' && needs.config.outputs.made_commit != 'true' && always() | |
| uses: ./.github/workflows/docker.yml |