fix(ci): Secrets unavailable for deploy jobs #8642
Workflow file for this run
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
name: Platform Pull Requests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- docs/** | |
- infrastructure/** | |
branches-ignore: | |
- release-please-* | |
jobs: | |
validate-pr-title: | |
name: Validate Conventional Commit title | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check PR Conventional Commit title | |
uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
types: | # mirrors changelog-sections in the /release-please-config.json | |
feat | |
fix | |
infra | |
ci | |
docs | |
deps | |
perf | |
refactor | |
test | |
chore | |
add-labels: | |
name: Add labels based on Conventional Commit title | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Auto-label PR with Conventional Commit title | |
uses: bcoe/conventional-release-labels@v1 | |
with: | |
type_labels: | | |
{ | |
"feat": "feature", | |
"fix": "fix", | |
"infra": "infrastructure", | |
"ci": "ci-cd", | |
"docs": "docs", | |
"deps": "dependencies", | |
"perf": "performance", | |
"refactor": "refactor", | |
"test": "testing", | |
"chore": "chore" | |
} | |
ignored_types: '[]' | |
docker-build-unified: | |
if: github.event.pull_request.draft == false | |
name: Build Unified Image | |
uses: ./.github/workflows/.reusable-docker-build.yml | |
with: | |
target: oss-unified | |
image-name: flagsmith | |
docker-build-api: | |
if: github.event.pull_request.draft == false | |
name: Build API Image | |
uses: ./.github/workflows/.reusable-docker-build.yml | |
with: | |
target: oss-api | |
image-name: flagsmith-api | |
docker-build-frontend: | |
if: github.event.pull_request.draft == false | |
name: Build Frontend Image | |
uses: ./.github/workflows/.reusable-docker-build.yml | |
with: | |
target: oss-frontend | |
image-name: flagsmith-frontend | |
docker-build-e2e: | |
if: github.event.pull_request.draft == false | |
name: Build E2E Image | |
uses: ./.github/workflows/.reusable-docker-build.yml | |
with: | |
file: frontend/Dockerfile.e2e | |
image-name: flagsmith-e2e | |
scan: false | |
docker-build-private-cloud: | |
if: github.event.pull_request.draft == false | |
name: Build Private Cloud Image | |
uses: ./.github/workflows/.reusable-docker-build.yml | |
with: | |
target: private-cloud-unified | |
image-name: flagsmith-private-cloud | |
secrets: | |
secrets: | | |
github_private_cloud_token=${{ secrets.GH_PRIVATE_ACCESS_TOKEN }} | |
run-e2e-tests: | |
needs: [docker-build-api, docker-build-private-cloud, docker-build-e2e] | |
uses: ./.github/workflows/.reusable-docker-e2e-tests.yml | |
with: | |
e2e-image: ${{ needs.docker-build-e2e.outputs.image }} | |
api-image: ${{ matrix.api-image }} | |
concurrency: ${{ matrix.args.concurrency }} | |
tests: ${{ matrix.args.tests }} | |
strategy: | |
matrix: | |
api-image: | |
- ${{ needs.docker-build-api.outputs.image }} | |
- ${{ needs.docker-build-private-cloud.outputs.image }} | |
args: | |
- tests: segment-part-1 environment | |
concurrency: 1 | |
- tests: segment-part-2 | |
concurrency: 1 | |
- tests: segment-part-3 signup flag invite project | |
concurrency: 2 | |
- tests: versioning | |
concurrency: 1 |